uawdijnntqw1x1x1
IP : 216.73.216.229
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
locationbo
/
www
/
.
/
libraries
/
smartslider3
/
src
/
.
/
.
/
SmartSlider3
/
Widget
/
WidgetGroupFactory.php
/
/
<?php namespace Nextend\SmartSlider3\Widget; use Nextend\Framework\Pattern\PluggableTrait; use Nextend\Framework\Pattern\SingletonTrait; use Nextend\SmartSlider3\Widget\Group\AbstractWidgetGroup; use Nextend\SmartSlider3\Widget\Group\Arrow; use Nextend\SmartSlider3\Widget\Group\Autoplay; use Nextend\SmartSlider3\Widget\Group\Bar; use Nextend\SmartSlider3\Widget\Group\Bullet; use Nextend\SmartSlider3\Widget\Group\Shadow; use Nextend\SmartSlider3\Widget\Group\Thumbnail; class WidgetGroupFactory { use SingletonTrait, PluggableTrait; /** @var AbstractWidgetGroup[] */ private static $groups = array(); protected function init() { new Arrow(); new Autoplay(); new Bar(); new Bullet(); new Shadow(); new Thumbnail(); $this->makePluggable('SliderWidgetGroup'); } /** * @param AbstractWidgetGroup $group */ public static function addGroup($group) { self::$groups[$group->getName()] = $group; } /** * @return AbstractWidgetGroup[] */ public static function getGroups() { return self::$groups; } /** * @param $name * * @return AbstractWidgetGroup */ public static function getGroup($name) { return self::$groups[$name]; } } WidgetGroupFactory::getInstance();
/home/locationbo/www/./libraries/smartslider3/src/././SmartSlider3/Widget/WidgetGroupFactory.php