function bootstrap_carousel_node_view in bootstrap_carousel 7
Implements hook_node_view().
File
- ./
bootstrap_carousel.module, line 267 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_node_view($node, $view_mode, $langcode) {
if ($node->type === 'bootstrap_carousel') {
_bootstrap_carousel_load_javascript($node);
_bootstrap_carousel_load_css();
}
}