22 lines
423 B
PHP
22 lines
423 B
PHP
<?php
|
|
|
|
namespace Nextend\SmartSlider3\Slider\Feature;
|
|
|
|
class MaintainSession {
|
|
|
|
private $slider;
|
|
|
|
public $isEnabled = 0;
|
|
|
|
public function __construct($slider) {
|
|
|
|
$this->slider = $slider;
|
|
|
|
$this->isEnabled = intval($slider->params->get('maintain-session', 0));
|
|
}
|
|
|
|
public function makeJavaScriptProperties(&$properties) {
|
|
|
|
$properties['maintainSession'] = $this->isEnabled;
|
|
}
|
|
} |