X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=044b3d6de0ebdeb9b68f5fd0681abf2925f5d480;hb=e1703495130c8ed88fe210f50a2a6b453b3c566b;hp=c9ffaaedfb2974b720b731ac7033d1e614c9be3f;hpb=61efd9d023ae34c1290ef2e1ae25829c509caaee;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index c9ffaaed..044b3d6d 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,20 +27,17 @@ // +----------------------------------------------------------------------+ import('form.FormElement'); - + class TextField extends FormElement { - var $mPassword = false; - var $class = 'TextField'; - function __construct($name,$value="") - { - $this->name = $name; - $this->value = $value; - } - - function setAsPassword($name) { $this->mPassword = $name; } - function getAsPassword() { return $this->mPassword; } + function __construct($name, $value = '') + { + $this->class = 'TextField'; + $this->name = $name; + $this->value = $value; + } + // TODO: refactoring ongoing down from here. function getHtml() { if (!$this->isEnabled()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; @@ -48,8 +45,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!="")