Source for file form_field_checkbox.class.php
Documentation is available at form_field_checkbox.class.php
// *** Tangra (Application Framework and Tools for PHP)
* Contains class Form_Field_Checkbox
require_once(TANGRA_MAIN_DIR. 'form/fields/number/form_field_number.class.php');
* Represents HTML checkbox
* @param string $name Name of the field
* @param boolean $required Is field required?
* @param boolean $value Default value
function __construct($name, $required = false, $value = false) {
* @param form_name $form_name
* @param array $submit_array
* Returns array with field properties
* Transfers data from html_value to value
|