function glazed_helper_admin_paths in Glazed Theme Helper 7
Implements hook_admin_paths().
If we don't set admin_path to FALSE our hook_custom_theme code doesn't work
See also
File
- ./
glazed_helper.module, line 43
Code
function glazed_helper_admin_paths() {
$paths = array();
$paths['admin/appearance/settings/*'] = FALSE;
return $paths;
}