system_sort_modules_by_info_name

Definition

system_sort_modules_by_info_name($a, $b)
system/system.module, line 1373

Code

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