Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/libraries/smartslider3/src/SmartSlider3Pro/Generator/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/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();
    
    }
}