X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/9a23a8c0a51b7ec38a96f525484134f3cb85dc7e..cb8e3de960b758147b34d8323054e7de70548619:/WEB-INF/lib/form/TextField.class.php diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 3d5ce7af..4766d911 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -29,14 +29,13 @@ import('form.FormElement'); class TextField extends FormElement { - var $mValue; var $mPassword = false; var $cClassName = "TextField"; - function TextField($name,$value="") + function __construct($name,$value="") { - $this->mName = $name; - $this->mValue = $value; + $this->name = $name; + $this->value = $value; } function setAsPassword($name) { $this->mPassword = $name; } @@ -46,14 +45,14 @@ class TextField extends FormElement { if (!$this->isRenderable()) return ""; if (!$this->isEnable()) { - $html = "mName\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; + $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else { - if ($this->mId=="") $this->mId = $this->mName; + if ($this->id=="") $this->id = $this->name; $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\""); - $html .= " name=\"$this->mName\" id=\"$this->mId\""; + $html .= " name=\"$this->name\" id=\"$this->id\""; if ($this->mSize!="") $html .= " size=\"$this->mSize\""; @@ -74,4 +73,3 @@ class TextField extends FormElement { return $html; } } -?> \ No newline at end of file