Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
SmartSlider3
/
Slider
/
Feature
:
Controls.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Nextend\SmartSlider3\Slider\Feature; class Controls { private $slider; private $mousewheel = 0; public $drag = 0; public $touch = 1; public $keyboard = 0; public $blockCarouselInteraction = 1; public function __construct($slider) { $this->slider = $slider; $this->mousewheel = intval($slider->params->get('controlsScroll', 0)); $this->touch = $slider->params->get('controlsTouch', 'horizontal'); $this->keyboard = intval($slider->params->get('controlsKeyboard', 1)); $this->blockCarouselInteraction = intval($slider->params->get('controlsBlockCarouselInteraction', 1)); } public function makeJavaScriptProperties(&$properties) { $properties['controls'] = array( 'mousewheel' => $this->mousewheel, 'touch' => $this->touch, 'keyboard' => $this->keyboard, 'blockCarouselInteraction' => $this->blockCarouselInteraction ); } }