function system_sort_modules_by_info_name
Same name and namespace in other branches
- 7.x drupal-7.x/modules/system/system.admin.inc \system_sort_modules_by_info_name()
Array sorting callback; sorts modules or themes by their name.
3 string references to 'system_sort_modules_by_info_name'
- system_admin_theme_settings in drupal-6.x/
modules/ system/ system.admin.inc - Form builder; This function allows selection of the theme to show in administration sections.
- system_modules in drupal-6.x/
modules/ system/ system.admin.inc - Menu callback; provides module enable/disable interface.
- system_themes_form in drupal-6.x/
modules/ system/ system.admin.inc - Menu callback; displays a listing of all themes.
Archivo
- drupal-6.x/
modules/ system/ system.admin.inc, line 802 - Admin page callbacks for the system module.
Código
function system_sort_modules_by_info_name($a, $b) {
return strcasecmp($a->info['name'], $b->info['name']);
}