function mailsystem_theme_theme_registry_alter in Mail System 7.2
Same name and namespace in other branches
- 8.2 mailsystem.theme.inc \mailsystem_theme_theme_registry_alter()
- 6.2 mailsystem.theme.inc \mailsystem_theme_theme_registry_alter()
- 7.3 mailsystem.theme.inc \mailsystem_theme_theme_registry_alter()
Implements hook_theme_registry_alter().
1 call to mailsystem_theme_theme_registry_alter()
- mailsystem_theme_registry_alter in ./
mailsystem.module - Implements hook_theme_registry_alter().
File
- ./
mailsystem.theme.inc, line 11 - The theme system, which controls the output of email messages.
Code
function mailsystem_theme_theme_registry_alter(&$theme_registry) {
global $theme_key;
static $recursion_prevention = FALSE;
// Prevent recursive execution.
if ($recursion_prevention) {
return;
}
$recursion_prevention = TRUE;
$mailsystem_theme = mailsystem_get_mail_theme();
// Only take action if the mailsystem theme is not the current theme.
if ($mailsystem_theme != $theme_key) {
$themes = list_themes();
// Get the mailsystem theme to be used for rendering emails.
if (isset($themes[$mailsystem_theme])) {
$theme = clone $themes[$mailsystem_theme];
if (isset($theme)) {
// Swap to the mailsystem theme.
$old_theme = $theme_key;
mailsystem_theme_swap_theme($mailsystem_theme);
// Establish variables for further processing.
$base_theme = array();
if (isset($theme->base_themes)) {
foreach (array_keys($theme->base_themes) as $base) {
$base_theme[$base] = clone $themes[$base];
}
}
if (isset($theme->base_theme) && !isset($base_theme[$theme->base_theme])) {
$base_theme[$theme->base_theme] = clone $themes[$theme->base_theme];
}
if (isset($theme->engine)) {
$theme_engine = $theme->engine;
}
// Include template files to let _theme_load_registry add preprocess
// functions.
foreach ($base_theme as $base) {
include_once drupal_get_path('theme', $base->name) . '/template.php';
}
include_once drupal_get_path('theme', $theme->name) . '/template.php';
// Get the theme_registry cache.
$cache = _theme_load_registry($theme, $base_theme, $theme_engine);
// Change the registry for hooks with a 'mail theme' element.
foreach ($theme_registry as $name => $hook) {
if (!empty($hook['mail theme'])) {
if (isset($cache[$name])) {
$cache[$name]['includes'][] = drupal_get_path('theme', $theme->name) . '/template.php';
foreach ($base_theme as $base) {
$cache[$name]['includes'][] = drupal_get_path('theme', $base->name) . '/template.php';
}
// Change the current registry for the new record.
$theme_registry[$name] = $cache[$name];
}
// Look for template suggestions.
foreach ($cache as $cache_name => $cache_hook) {
if (strpos($cache_name, $name . '__') !== FALSE) {
$cache_hook['includes'][] = drupal_get_path('theme', $theme->name) . '/template.php';
foreach ($base_theme as $base) {
$cache_hook['includes'][] = drupal_get_path('theme', $base->name) . '/template.php';
}
// Change the current registry for the new record.
$theme_registry[$cache_name] = $cache_hook;
}
}
}
}
// Swap back to the original theme.
mailsystem_theme_swap_theme($old_theme);
}
}
}
$recursion_prevention = FALSE;
}