function bootstrap_carousel_theme_registry_alter in bootstrap_carousel 7
Implements hook_theme_registry_alter().
File
- ./
bootstrap_carousel.module, line 245 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_theme_registry_alter(&$theme_registry) {
$mod_path = drupal_get_path('module', 'bootstrap_carousel') . '/theme';
$theme_registry_copy = $theme_registry;
_theme_process_registry($theme_registry_copy, 'phptemplate', 'theme_engine', NULL, $mod_path);
$theme_registry += array_diff_key($theme_registry_copy, $theme_registry);
_bootstrap_carousel_insert_after_first_element($theme_registry['node']['theme paths'], $mod_path);
}