Your IP : 216.73.216.229


Current Path : /proc/1908984/root/proc/thread-self/root/tmp/
Upload File :
Current File : //proc/1908984/root/proc/thread-self/root/tmp/phpyvs8LL

<?php


namespace Nextend\SmartSlider3Pro\Generator;


use Nextend\Framework\Plugin;
use Nextend\SmartSlider3Pro\Generator;

class GeneratorLoader {

    public function __construct() {

        Plugin::addAction('PluggableFactorySliderGenerator', array(
            $this,
            'sliderGenerator'
        ));
    }

    public function sliderGenerator() {
        new Generator\Common\GeneratorCommonLoader();
        new Generator\Joomla\GeneratorJoomlaLoader();
    
    }

    public function sliderGeneratorRESTLoader() {
    }
}