system_sort_modules_by_info_name($a, $b)
Array sorting callback; sorts modules by their name.
File
- core/modules/system/system.module, line 1130
- Configuration system that lets administrators modify the workings of the site.
Code
function system_sort_modules_by_info_name($a, $b) { return strcasecmp($a->info['name'], $b->info['name']); }
Please login to continue.