You are here

function system_sort_modules_by_info_name in Drupal 7

Same name and namespace in other branches
  1. 8 core/modules/system/system.module \system_sort_modules_by_info_name()
  2. 5 modules/system/system.module \system_sort_modules_by_info_name()
  3. 6 modules/system/system.admin.inc \system_sort_modules_by_info_name()
  4. 9 core/modules/system/system.module \system_sort_modules_by_info_name()

Array sorting callback; sorts modules or themes by their name.

4 string references to 'system_sort_modules_by_info_name'
system_admin_index in modules/system/system.admin.inc
Menu callback; prints a listing of admin tasks, organized by module.
system_modules in modules/system/system.admin.inc
Menu callback; provides module enable/disable interface.
system_modules_uninstall in modules/system/system.admin.inc
Builds a form of currently disabled modules.
system_themes_page in modules/system/system.admin.inc
Menu callback; displays a listing of all themes.

File

modules/system/system.admin.inc, line 951
Admin page callbacks for the system module.

Code

function system_sort_modules_by_info_name($a, $b) {
  return strcasecmp($a->info['name'], $b->info['name']);
}