. if (!defined('EG')) die('Direct access not allowed!'); //create the HTML of an input hidden entry class Form_Hidden extends Form_Entry { public function __construct($entryName = null) { $this->entryName = $entryName; } public function render($value = null) { $returnString = Html_Form::hidden($this->entryName, $value, $this->className, $this->idName, $this->attributes); return $returnString; } }