function om_sort_by_weight in OM Maximenu 7
Same name and namespace in other branches
- 8 inc/om_maximenu.utils.inc \om_sort_by_weight()
- 6 inc/om_maximenu.utils.inc \om_sort_by_weight()
Sorting by weight
7 string references to 'om_sort_by_weight'
- om_maximenu_content_render in inc/
om_maximenu.render.inc - OM Maximenu content rendering engine
- om_maximenu_links_order in inc/
om_maximenu.admin.inc - OM Links
- template_preprocess_om_maximenu_accordion in inc/
om_maximenu.render.inc - Process variables for om_maximenu_accordion.tpl.php
- template_preprocess_om_maximenu_modal in inc/
om_maximenu.render.inc - Process variables for om_maximenu_modal.tpl.php
- template_preprocess_om_maximenu_roundabout in inc/
om_maximenu.render.inc - Process variables for om_maximenu_roundabout.tpl.php
File
- inc/
om_maximenu.utils.inc, line 17 - OM Maximenu Admin Utilities
Code
function om_sort_by_weight($a, $b) {
return $a['weight'] - $b['weight'];
}