function power_menu_handlers_weight_compare in Power Menu 7.2
Compare the weigth of the plugins
1 string reference to 'power_menu_handlers_weight_compare'
- power_menu_get_menu_handlers in ./
power_menu.module - Shortcut function to get menu_handlers plugins. The handlers are sorted by the module settings.
File
- ./
power_menu.module, line 127
Code
function power_menu_handlers_weight_compare($a, $b) {
if ($a['weight'] == $b['weight']) {
return 0;
}
return $a['weight'] < $b['weight'] ? -1 : 1;
}