system_sort_modules_by_info_name

5 system.module system_sort_modules_by_info_name($a, $b)
6 system.admin.inc system_sort_modules_by_info_name($a, $b)
7 system.admin.inc system_sort_modules_by_info_name($a, $b)
8 system.admin.inc system_sort_modules_by_info_name($a, $b)

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

4 string references to 'system_sort_modules_by_info_name'

File

modules/system/system.admin.inc, line 943
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']);
}
Login or register to post comments