function tripal_feature_sort_locations
2.x tripal_feature.theme.inc | tripal_feature_sort_locations($a, $b) |
3.x tripal_feature.theme.inc | tripal_feature_sort_locations($a, $b) |
1.x tripal_feature.module | tripal_feature_sort_locations($a, $b) |
used to sort the feature locs by start position
Related topics
1 string reference to 'tripal_feature_sort_locations'
- tripal_feature_load_featurelocs in tripal_feature/
tripal_feature.module
File
- tripal_feature/
tripal_feature.module, line 1140 - @todo Add file header description
Code
function tripal_feature_sort_locations($a, $b) {
return strnatcmp($a->fmin, $b->fmin);
}