function nitro_custom_theme in Arctica Nitro 7
Implements hook_custom_theme().
File
- ./
nitro.module, line 51 - Module file for Arctica Nitro.
Code
function nitro_custom_theme() {
if (module_exists('color')) {
if (arg(0) == 'admin' && arg(1) == 'appearance' && arg(2) == 'settings' && arg(3)) {
$current_theme = check_plain(arg(3));
return $current_theme;
}
}
}