1 field.module | _field_sort_items_helper($a, $b) |
Sort function for items order. (copied form element_sort(), which acts on #weight keys)
Related topics
File
- core/
modules/ field/ field.module, line 805 - Attach custom data fields to Backdrop entities.
Code
function _field_sort_items_helper($a, $b) {
$a_weight = (is_array($a) ? $a['_weight'] : 0);
$b_weight = (is_array($b) ? $b['_weight'] : 0);
return $a_weight - $b_weight;
}