You are here

function bootstrap_basic_image_gallery_theme in Bootstrap Basic Image Gallery 8

Implements hook_theme().

File

./bootstrap_basic_image_gallery.module, line 13
Drupal Module: Bootstrap Basic Image Gallery.

Code

function bootstrap_basic_image_gallery_theme($existing, $type, $theme, $path) {
  return [
    'bootstrap_basic_image_gallery' => [
      'variables' => [
        'main' => [],
        'thumbnails' => [
          'class' => NULL,
          'images' => [],
        ],
        'lazyload' => NULL,
        'modal' => [
          'id' => NULL,
        ],
        'carousel' => [
          'id' => NULL,
          'autoplay' => NULL,
          'interval' => 5000,
          'images' => [],
        ],
      ],
    ],
  ];
}