function panopoly_theme_theme_registry_alter in Panopoly Theme 7
Implementation hook_theme_registry_alter()
File
- ./
panopoly_theme.module, line 26
Code
function panopoly_theme_theme_registry_alter(&$theme_registry) {
$mod_path = drupal_get_path('module', 'panopoly_theme') . '/templates';
$theme_registry_copy = $theme_registry;
_theme_process_registry($theme_registry_copy, 'phptemplate', 'theme_engine', 'pow', $mod_path);
$theme_registry += array_diff_key($theme_registry_copy, $theme_registry);
}