X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=4904e248195cf84806b5de50cf81a654bbc1dc8e;hb=4af7dd7e10968588fe4c2828be5402f41d53ebc5;hp=b4b1c5d6af1b89e0a1bbef7be52d3aac1d66e861;hpb=60d2288b7fca6caf0f5d9d3eee972f040eb24fb0;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index b4b1c5d6..4904e248 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,21 +27,16 @@ // +----------------------------------------------------------------------+ import('form.FormElement'); - + class TextField extends FormElement { - var $mPassword = false; - //var $class = '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 __construct($name) + { + $this->class = 'TextField'; + $this->name = $name; + } + // TODO: refactoring ongoing down from here. function getHtml() { if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; @@ -49,8 +44,7 @@ class TextField extends FormElement { if ($this->id=="") $this->id = $this->name; - $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\""); + $html = "\n\tname\" id=\"$this->id\""; if ($this->size!="")