X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=044b3d6de0ebdeb9b68f5fd0681abf2925f5d480;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=e4d58659c89420bb9b5c9408c6ee921e9fec31e6;hpb=bd569da4f1d6ada00f5e48eac9716c068003748a;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index e4d58659..044b3d6d 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,31 +27,25 @@ // +----------------------------------------------------------------------+ import('form.FormElement'); - + class TextField extends FormElement { - var $mPassword = false; - var $cClassName = "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; + } - function toStringControl() { - if (!$this->isRenderable()) return ""; - - if (!$this->isEnable()) { + // TODO: refactoring ongoing down from here. + 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!="")