1 system.module | system_custom_theme() |
Implements hook_custom_theme().
File
- core/
modules/ system/ system.module, line 2534 - Configuration system that lets administrators modify the workings of the site.
Code
function system_custom_theme() {
if (user_access('view the administration theme') && path_is_admin(current_path())) {
return config_get('system.core', 'admin_theme');
}
}