Source for file form_field_hid.class.php
Documentation is available at form_field_hid.class.php
// *** Tangra (Application Framework and Tools for PHP)
// $Id: form_field_hid.class.php 514 2007-04-29 10:55:12Z ogrebg $
* Contains class Form_Field_HID
require_once(TANGRA_MAIN_DIR. 'form/fields/text/form_field_text.class.php');
* Field that expects valid HID to be provided
* @param string $name Name of the field
* @param boolean $required Is field required. Default is false
* @param integer $maxlength Maximum length of the text. Default is 100
* @param string $value Default value.
function __construct($name, $required = false, $maxlength = 100, $value = NULL) {
parent::__construct($name, $required, $maxlength, $value);
* Performs basic check for validity
|