Your IP : 216.73.216.11


Current Path : /home/digilove/public_html/libraries/smartslider3/src/SmartSlider3Pro/Generator/
Upload File :
Current File : /home/digilove/public_html/libraries/smartslider3/src/SmartSlider3Pro/Generator/GeneratorLoader.php

<?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() {
    }
}