function _widgets_element_definitions_sort in Widgets 7
Internal function for sorting widget element definitions through uasort().
See also
1 string reference to '_widgets_element_definitions_sort'
- widgets_element_definitions in ./
widgets.module - Pull in widget elements exposed by modules implementing hook_widgets_element_info().
File
- ./
widgets.module, line 1418 - Exposes global functionality for creating widget sets.
Code
function _widgets_element_definitions_sort($a, $b) {
return strcasecmp($a['name'], $b['name']);
}