| Versionen | |
|---|---|
| drupal7 | _field_sort_items_helper($a, $b) |
Sort function for items order. (copied form element_sort(), which acts on #weight keys)
modules/
<?php
function _field_sort_items_helper($a, $b) {
$a_weight = (is_array($a) && isset($a['_weight'])) ? $a['_weight'] : 0;
$b_weight = (is_array($b) && isset($b['_weight'])) ? $b['_weight'] : 0;
if ($a_weight == $b_weight) {
return 0;
}
return ($a_weight < $b_weight) ? -1 : 1;
}
?>
Kommentare
Kommentar hinzufügen