uikit_slideshow-8.x-2.2/uikit_slideshow.module
uikit_slideshow.module
<?php
/**
* @file
* Uikit Slideshow Views module help and theme functions.
*/
// Store Uikit Slideshow preprocess theme functions in a separate .inc file.
\Drupal::moduleHandler()->loadInclude('uikit_slideshow', 'inc', 'uikit_slideshow.theme');
/**
* Implements hook_theme().
*/
function uikit_slideshow_theme($existing, $type, $theme, $path) {
return [
'uikit_slideshow' => [
'variables' => ['view' => NULL, 'rows' => NULL],
'file' => 'uikit_slideshow.theme.inc',
'path' => drupal_get_path('module', 'uikit_slideshow') . '/',
],
];
}
