X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=45455d0d35e4e81f562e79399cc7e94ef7c14c32;hb=785d404c84c153bda7d45d3aedfefa81985703b3;hp=20b7fc6eb9dbcfa39b82001f8e8f77f75c490629;hpb=04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 20b7fc6e..45455d0d 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -29,27 +29,22 @@ import('form.FormElement'); class TextField extends FormElement { - var $mPassword = false; - var $cClassName = "TextField"; function __construct($name,$value="") { + $this->class = 'TextField'; $this->name = $name; $this->value = $value; } - - function setAsPassword($name) { $this->mPassword = $name; } - function getAsPassword() { return $this->mPassword; } - function toStringControl() { + function getHtml() { if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else { if ($this->id=="") $this->id = $this->name; - $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\""); + $html = "\n\tname\" id=\"$this->id\""; if ($this->size!="")