. if (!defined('EG')) die('Direct access not allowed!'); //create the HTML of an input text entry class Form_Html extends Form_Entry { public function __construct($entryName = null) { $this->entryName = $entryName; } public function render($value = null) { $returnString = "
\n\t$value\n
\n"; return $returnString; } }