You are here

function kwresearch_set_admin_theme in Keyword Research 7

Same name and namespace in other branches
  1. 6 kwresearch.module \kwresearch_set_admin_theme()

@todo Please document this function.

See also

http://drupal.org/node/1354

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 1632

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;
}