File "MaintainSession.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/Slider/Feature/MaintainSession.php
File size: 423 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
    }
}