You are here

function dxpr_theme_helper_admin_paths in DXPR 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

dxpr_theme_helper_custom_theme()

File

./dxpr_theme_helper.module, line 31

Code

function dxpr_theme_helper_admin_paths() {
  $paths = array();
  $paths['admin/appearance/settings/*'] = FALSE;
  return $paths;
}