function image_slider_theme in Image sliders 8
Implements hook_theme().
File
- ./
image_slider.module, line 14 - Contains Drupal\image_slider\image_slider.module.
Code
function image_slider_theme($existing, $type, $theme, $path) {
return [
'image_slider' => [
'variables' => [
'data' => NULL,
],
'template' => 'image_slider',
],
];
}