.
*/
/**
* Defines the field
*/
require_once(FILESYSTEMROOTPATH."include/form/AbstractFormField.php");
class HiddenField extends AbstractFormField {
/**
* Constructor
*/
public function __construct($name, $value="") {
parent::__construct($name, "");
$this->value = $value;
}
public function getField() {
return "name."\" value=\"".$this->value."\">";
}
}
?>