Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/libraries/smartslider3/src/SmartSlider3Pro/Generator/ |
| [Home] [System Details] [Kill Me] |
<?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();
}
}