X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=b4b1c5d6af1b89e0a1bbef7be52d3aac1d66e861;hb=60d2288b7fca6caf0f5d9d3eee972f040eb24fb0;hp=82d6af2087307507164cebafb797fec7de0fc8c5;hpb=8368d1ed9b3acdd13dc8ef325161661186935435;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 82d6af20..b4b1c5d6 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -30,10 +30,11 @@ import('form.FormElement'); class TextField extends FormElement { var $mPassword = false; - var $cClassName = "TextField"; + //var $class = 'TextField'; function __construct($name,$value="") { + $this->class = 'TextField'; $this->name = $name; $this->value = $value; } @@ -41,10 +42,8 @@ class TextField extends FormElement { function setAsPassword($name) { $this->mPassword = $name; } function getAsPassword() { return $this->mPassword; } - function toStringControl() { - if (!$this->isRenderable()) return ""; - - if (!$this->isEnable()) { + function getHtml() { + if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else { @@ -57,8 +56,8 @@ class TextField extends FormElement { if ($this->size!="") $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; if ($this->max_length!="") $html .= " maxlength=\"$this->max_length\"";