Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/htaccess.back/smartslider3/src/SmartSlider3/Widget/Group/ |
| [Home] [System Details] [Kill Me] |
<?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);
new Text($row2, 'widget-shadow-exclude-slides',
n2_('Hide on slides'), '', array(
'tipLabel' => n2_('Hide on
slides'),
'tipDescription' => n2_('List the slides
separated by commas on which you want the controls to be hidden.'),
'tipLink' =>
'https://smartslider.helpscoutdocs.com/article/1858-shadow#hide-on-slides'
));
}
}