AlkantarClanX12
Current Path : /home/dilseshaadi/www/wp-content/themes/wedding-planner/framework/classes/control/field/ |
Current File : /home/dilseshaadi/www/wp-content/themes/wedding-planner/framework/classes/control/field/toggle.php |
<?php class VP_Control_Field_Toggle extends VP_Control_Field { public function __construct() { parent::__construct(); $this->add_container_extra_classes('vp-checked-field'); } public static function withArray($arr = array(), $class_name = null) { if(is_null($class_name)) $instance = new self(); else $instance = new $class_name; $instance->_basic_make($arr); return $instance; } public function render($is_compact = false) { $this->_setup_data(); $this->add_data('is_compact', $is_compact); return VP_View::instance()->load('control/toggle', $this->get_data()); } } /** * EOF */