You are here

function kwresearch_set_admin_theme in Keyword Research 6

Same name and namespace in other branches
  1. 7 kwresearch.module \kwresearch_set_admin_theme()
1 call to kwresearch_set_admin_theme()
kwresearch_page_keywords_page in includes/page_report.inc
Generates table of keywords associated with a pages

File

./kwresearch.module, line 1148

Code

function kwresearch_set_admin_theme() {
  if (!($admin_theme = variable_get('admin_theme', '0'))) {
    return;
  }
  if (arg(0) == 'node' && is_numeric(arg(1)) && !variable_get('node_admin_theme', '0')) {
    return;
  }
  global $custom_theme;
  $custom_theme = $admin_theme;
}