Your IP : 216.73.216.216


Current Path : /proc/self/root/proc/732462/root/tmp/
Upload File :
Current File : //proc/self/root/proc/732462/root/tmp/php3Be4bz

<?php


namespace Nextend\SmartSlider3\Slider\Base;


class PlatformSliderBase {

    public function addCMSFunctions($text) {

        return $text;
    }
}<?php


namespace Nextend\SmartSlider3\Slider\Base;

use Nextend\SmartSlider3\Slider;

trait PlatformSliderTrait {

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

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

    public function addCMSFunctions($text) {

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