function bootstrap_simple_carousel_theme in bootstrap simple carousel 8
Implements hook_theme().
File
- ./
bootstrap_simple_carousel.module, line 51 - Defines bootstrap simple carousel.
Code
function bootstrap_simple_carousel_theme($existing, $type, $theme, $path) {
$variables = [
'bootstrap_simple_carousel_block' => [
'variables' => [
'title' => '',
'items' => NULL,
'settings' => NULL,
],
'template' => 'bootstrap--simple--carousel--block',
],
];
return $variables;
}