1.20.x system.admin.inc system_sort_modules_by_info_name($a, $b)

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

File

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