File "GroupCheckboxOnOff.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Form/Element/Group/GroupCheckboxOnOff.php
File size: 360 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\Framework\Form\Element\Group;
use Nextend\Framework\Form\Element\Grouping;
use Nextend\Framework\View\Html;
class GroupCheckboxOnOff extends Grouping {
protected function fetchElement() {
return Html::tag('div', array(
'class' => 'n2_field_group_checkbox_onoff'
), parent::fetchElement());
}
}