| Current Path : /home/digilove/www/libraries/smartslider3/src/SmartSlider3/Form/Element/ |
| Current File : /home/digilove/www/libraries/smartslider3/src/SmartSlider3/Form/Element/BackgroundImage.php |
<?php
namespace Nextend\SmartSlider3\Form\Element;
use Nextend\Framework\Form\Element\IconTab;
class BackgroundImage extends IconTab {
protected $relatedAttribute = 'slide-background-type';
protected function fetchElement() {
$this->options = array(
'image' => 'ssi_16 ssi_16--image',
'video' => 'ssi_16 ssi_16--video',
'color' => 'ssi_16 ssi_16--color'
);
$this->tooltips = array(
'image' => n2_('Image'),
'video' => n2_('Video'),
'color' => n2_('Color')
);
return parent::fetchElement();
}
}