system_sort_themes

7 system.admin.inc system_sort_themes($a, $b)
8 system.admin.inc system_sort_themes($a, $b)

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

1 string reference to 'system_sort_themes'

File

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

Code

function system_sort_themes($a, $b) {
  if ($a->is_default) {
    return -1;
  }
  if ($b->is_default) {
    return 1;
  }
  return strcasecmp($a->info['name'], $b->info['name']);
}
Login or register to post comments