You are here

function system_sort_modules_by_info_name in Drupal 5

Same name and namespace in other branches
  1. 8 core/modules/system/system.module \system_sort_modules_by_info_name()
  2. 6 modules/system/system.admin.inc \system_sort_modules_by_info_name()
  3. 7 modules/system/system.admin.inc \system_sort_modules_by_info_name()
  4. 9 core/modules/system/system.module \system_sort_modules_by_info_name()
1 string reference to 'system_sort_modules_by_info_name'
system_modules in modules/system/system.module
Menu callback; provides module enable/disable interface.

File

modules/system/system.module, line 1373
Configuration system that lets administrators modify the workings of the site.

Code

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