Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
Framework
/
Form
/
Fieldset
/
LayerWindow
:
FieldsetLayerWindowStyleMode.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Nextend\Framework\Form\Fieldset\LayerWindow; use Nextend\Framework\Form\Element\Button\ButtonIcon; use Nextend\Framework\Form\Element\Select; class FieldsetLayerWindowStyleMode extends FieldsetLayerWindowLabelFields { public function __construct($insertAt, $name, $label, $modes, $parameters = array()) { parent::__construct($insertAt, $name, $label, $parameters); $this->addAttribute('data-fieldset-type', 'style-mode'); new ButtonIcon($this->fieldsetLabel, $name . '-mode-reset-to-normal', false, 'ssi_16 ssi_16--reset', array( 'hoverTip' => n2_('Reset to normal state'), 'rowAttributes' => array( 'data-style-mode-feature' => 'reset-to-normal' ) )); new Select($this->fieldsetLabel, $name . '-mode', false, '', array( 'options' => $modes )); } }