function bootstrap_carousel_ctools_render_alter in bootstrap_carousel 7
Implements hook_ctools_render_alter().
File
- ./
bootstrap_carousel.module, line 277 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_ctools_render_alter(&$info, &$page, &$context) {
if (!$page) {
return FALSE;
}
if (!isset($context['handler']->conf['display']->content)) {
return FALSE;
}
foreach ($context['handler']->conf['display']->content as $id => $panel_content) {
if ($panel_content->type == 'node') {
$node = node_load($panel_content->configuration['nid']);
if ($node->type == 'bootstrap_carousel') {
_bootstrap_carousel_load_javascript($node);
_bootstrap_carousel_load_css();
}
}
}
}