File "PlatformSliderTrait.php"

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

<?php


namespace Nextend\SmartSlider3\Slider\Base;

use Nextend\SmartSlider3\Slider;

trait PlatformSliderTrait {

    /**
     * @var PlatformSliderBase
     */
    private $platformSlider;

    public function initPlatformSlider() {
        $this->platformSlider = new Slider\WordPress\PlatformSlider();
    }

    public function addCMSFunctions($text) {

        return $this->platformSlider->addCMSFunctions($text);
    }
}