function system_sort_themes
Same name and namespace in other branches
- 11.x core/modules/system/system.module \system_sort_themes()
- 10 core/modules/system/system.module \system_sort_themes()
- 9 core/modules/system/system.module \system_sort_themes()
- 8.9.x core/modules/system/system.module \system_sort_themes()
- 7.x modules/system/system.admin.inc \system_sort_themes()
Sorts themes by their names, with the default theme listed first.
Callback for uasort() within \Drupal\system\Controller\SystemController::themesPage().
Deprecated
in drupal:11.4.0 and is removed from drupal:13.0.0. There is no replacement.
See also
\Drupal\Core\Extension\Extension::sortByName()
https://www.drupal.org/node/3566774
File
-
core/
modules/ system/ system.module, line 170
Code
function system_sort_themes($a, $b) {
@trigger_error(__FUNCTION__ . '() is deprecated in drupal:11.4.0 and is removed from drupal:13.0.0. There is no replacement. See https://www.drupal.org/node/3566774', E_USER_DEPRECATED);
if ($a->is_default) {
return -1;
}
if ($b->is_default) {
return 1;
}
return strcasecmp($a->info['name'], $b->info['name']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.