Current File : /home/aventura/www/site/wp-content/plugins/victheme_core/vtcore/form/checkbox.php |
<?php
/**
* Helper Class for building the Input Checkbox Form Elements
*
* @author jason.xie@victheme.com
* @see VTCore_Form_Interface interface
*/
class VTCore_Form_Checkbox
extends VTCore_Form_Base
implements VTCore_Form_Interface {
protected $context = array(
'type' => 'input',
'attributes' => array(
'id' => false,
'class' => array(),
'name' => '',
'value' => '',
'type' => 'checkbox',
'checked' => false,
'required' => false,
),
);
}