__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Nextend\SmartSlider3\Widget\Group;
use Nextend\Framework\Form\Container\ContainerTable;
use Nextend\Framework\Form\Element\OnOff;
use Nextend\Framework\Form\Element\Text;
use Nextend\Framework\Pattern\PluggableTrait;
use Nextend\SmartSlider3\Form\Element\ControlTypePicker;
use Nextend\SmartSlider3\Widget\Shadow\ShadowImage\ShadowImage;
class Shadow extends AbstractWidgetGroup {
use PluggableTrait;
public $ordering = 7;
public function __construct() {
parent::__construct();
new ShadowImage($this, 'shadow');
$this->makePluggable('SliderWidgetShadow');
}
public function getName() {
return 'shadow';
}
public function getLabel() {
return n2_('Shadow');
}
public function renderFields($container) {
$form = $container->getForm();
$this->compatibility($form);
$table = new ContainerTable($container, 'widgetshadow', n2_('Shadow'));
new OnOff($table->getFieldsetLabel(), 'widget-shadow-enabled', false, 0, array(
'relatedFieldsOn' => array(
'table-rows-widgetshadow'
)
));
$row1 = $table->createRow('widget-shadow-1');
$url = $form->createAjaxUrl(array("slider/renderwidgetshadow"));
new ControlTypePicker($row1, 'widgetshadow', $table, $url, $this);
$row2 = $table->createRow('widget-shadow-2');
$this->addHideOnFeature('widget-shadow-display-', $row2);
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AbstractWidgetGroup.php | File | 2.9 KB | 0775 |
|
| Arrow.php | File | 2.64 KB | 0775 |
|
| Autoplay.php | File | 3.69 KB | 0775 |
|
| Bar.php | File | 2.09 KB | 0775 |
|
| Bullet.php | File | 3.44 KB | 0775 |
|
| Shadow.php | File | 1.46 KB | 0775 |
|
| Thumbnail.php | File | 3.65 KB | 0775 |
|