1 system.admin.inc system_sort_modules_by_info_name($a, $b)

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

File

core/modules/system/system.admin.inc, line 735
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']);
}