slider_pro_views.theme.inc in Slider Pro 8
File
templates/slider_pro_views.theme.inc
View source
<?php
use Drupal\slider_pro\Entity\SliderPro;
function template_preprocess_slider_pro_views_style(array &$variables) {
if (empty($variables['view'])) {
return;
}
if (!($optionset = SliderPro::load($variables['options']['optionset']))) {
return;
}
$id = 'slider-pro-' . uniqid();
$content = array(
'#theme' => 'slider_pro',
'#rows' => $variables['rows'],
'#uses_thumbnails' => $optionset
->hasThumbnails(),
'#id' => $id,
);
$attached = [];
$js_settings = array(
'instances' => array(
$id => $optionset
->toOptionSet(),
),
);
$attached['library'][] = 'slider_pro/slider.pro.load';
$content['#attached'] = [
'library' => [
'slider_pro/slider.pro.load',
],
'drupalSettings' => [
'sliderPro' => $js_settings,
],
];
$variables['content'] = $content;
}