array(
'file' => 'themekey_admin.inc',
'arguments' => array('form' => NULL),
),
);
return $items;
}
/**
* Implements hook_perm().
*/
function themekey_perm() {
return array('administer theme assignments', 'administer themekey settings');
}
/**
* Implements hook_menu().
*/
function themekey_menu() {
$items = array();
$items['admin/settings/themekey'] = array(
'title' => 'ThemeKey',
'description' => 'Map themes to Drupal paths or object properties.',
'access callback' => 'user_access',
'access arguments' => array('administer theme assignments'),
'file' => 'themekey_admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array('themekey_rule_chain_form')
);
$items['admin/settings/themekey/properties'] = array(
'title' => 'Theme Switching Rule Chain',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => 0
);
$items['admin/settings/themekey/properties/delete'] = array(
'title' => 'Delete ThemeKey Property',
'page callback' => 'drupal_get_form',
'page arguments' => array('themekey_admin_delete_rule_confirm', 1),
'access callback' => 'user_access',
'access arguments' => array('administer theme assignments'),
'file' => 'themekey_admin.inc',
'type' => MENU_CALLBACK,
);
$items['admin/settings/themekey/settings'] = array(
'title' => 'Settings',
'access callback' => 'user_access',
'access arguments' => array('administer themekey settings'),
'file' => 'themekey_admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array('themekey_settings_form'),
'type' => MENU_LOCAL_TASK,
'weight' => 5
);
$items['admin/settings/themekey/settings/general'] = array(
'title' => 'General',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => 0
);
return $items;
}
/**
* Implements hook_themekey_properties().
*/
function themekey_themekey_properties() {
require_once(drupal_get_path('module', 'themekey') .'/themekey_build.inc');
return themekey_invoke_modules('themekey_properties');
}
/**
* Implements hook_themekey_global().
*/
function themekey_themekey_global() {
require_once(drupal_get_path('module', 'themekey') .'/themekey_build.inc');
return themekey_invoke_modules('themekey_global');
}
/**
* Implements hook_themekey_paths().
*/
function themekey_themekey_paths() {
require_once(drupal_get_path('module', 'themekey') .'/themekey_build.inc');
return themekey_invoke_modules('themekey_paths');
}
/**
* Implements hook_init().
*
* Here happens all the magic of ThemeKey.
* ThemeKey detects if any Theme Switching Rule matches
* the current request and sets the global variable $custom_theme.
*/
function themekey_init() {
global $theme, $custom_theme;
if (isset($theme)) {
if (variable_get('themekey_debug_trace_rule_switching', FALSE)) {
themekey_set_debug_message('Skipped rule checking because another module already initialized the theme engine. $theme has been set to %theme.
This seems to be a bug. Visit !link and help us improving other modules.', array('%theme' => $theme, '!link' => l('drupal.org/node/754970', 'http://drupal.org/node/754970')));
}
}
// don't change theme when administer blocks or during cron run
elseif (strpos($_GET['q'], 'admin/build/block') !== 0 && strpos($_SERVER['SCRIPT_NAME'], 'cron.php') === FALSE) {
// don't change theme when another module already set a $custom_theme like system.module does (administration theme) until administrator turned on this feature
if (!$custom_theme || variable_get('themekey_override_custom_theme', 0)) {
require_once(drupal_get_path('module', 'themekey') .'/themekey_base.inc');
$theme_candidate = themekey_match_rules();
// If no theme has been triggered but a theme
// is in the user's session, use that theme.
if (!$theme_candidate && !empty($_SESSION['themekey_theme'])
&& (!$custom_theme || $custom_theme == variable_get('theme_default', 'garland'))) {
$custom_theme = $_SESSION['themekey_theme'];
if (variable_get('themekey_debug_trace_rule_switching', FALSE)) {
themekey_set_debug_message('ThemeKey Debug: No rule triggered a different theme. Reusing last theme from users session: %custom_theme', array('%custom_theme' => $custom_theme));
}
}
// We have a theme, apply it
if (!empty($theme_candidate) && $theme_candidate != 'default') {
if ((user_is_logged_in() && variable_get('themekey_theme_maintain', 0)) ||
(!user_is_logged_in() && variable_get('themekey_theme_maintain_anonymous', 0))) {
$_SESSION['themekey_theme'] = $theme_candidate;
}
else {
unset($_SESSION['themekey_theme']);
}
$custom_theme = $theme_candidate;
if (variable_get('themekey_debug_trace_rule_switching', FALSE)) {
themekey_set_debug_message('Switching theme to %custom_theme.', array('%custom_theme' => $custom_theme));
}
}
elseif (variable_get('themekey_debug_trace_rule_switching', FALSE)) {
if ($custom_theme) {
// static rules set $theme_candidate to 'default and $cutom_theme directly
themekey_set_debug_message('$custom_theme has been set to %custom_theme during rule matching.', array('%custom_theme' => $custom_theme));
}
else {
themekey_set_debug_message('Using default theme.');
}
}
}
elseif (variable_get('themekey_debug_trace_rule_switching', FALSE)) {
if ($custom_theme) {
themekey_set_debug_message('Skipped rule checking because $custom_theme already set to %custom_theme by another module.', array('%custom_theme' => $custom_theme));
}
elseif (strpos($_GET['q'], 'admin/build/block') !== 0) {
themekey_set_debug_message('Rule checking disabled on block configuration.');
}
}
}
if (variable_get('themekey_debug_show_property_values', FALSE) && module_exists('themekey_debug')) {
themekey_debug_properties();
}
themekey_set_debug_message('flush');
}
/**
* Implements hook_themekey_load_validators().
*/
function themekey_themekey_load_validators() {
module_load_include('inc', 'themekey', 'themekey_validators');
}
/**
* Implements hook_help().
*/
function themekey_help($path, $arg) {
$text_1 = t('For every page request Drupal steps through this Theme Switching Rule Chain until an activated rule matches or it reaches the end. If a rule matches the theme associated to this rule will be applied to render the requested page.');
switch ($path) {
case 'admin/help#themekey':
module_load_include('inc', 'themekey', 'themekey_help');
return '
' . t('ThemeKey allows you to define simple or sophisticated Theme Switching Rules. Using these rules you are able to use a different theme depending on current path, taxonomy terms, language, node type and many many more properties. It can also be easily extended to support additional properties as exposed by other modules.'). '
' . '' . $text_1 . '
'. drupal_get_form('themekey_help_tutorials_form', FALSE) . drupal_get_form('themekey_help_examples_form', FALSE) . drupal_get_form('themekey_help_properties_form', FALSE); case 'admin/settings/themekey': module_load_include('inc', 'themekey', 'themekey_help'); return '' . $text_1 . '
' . t('To get an idea how to get started you might have a look at the !tutorials_link.', array('!tutorials_link' => l(t('tutorials'), 'admin/help/themekey'))) . '