X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=4904e248195cf84806b5de50cf81a654bbc1dc8e;hb=1b6699f3d4ad1961fa4055ec0033bc10f0b06b83;hp=88fb434c01c9f8a7698ddd6de596d9577f02a508;hpb=4a605a698d07ecdc11e11aa8921485ace261cdba;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 88fb434c..4904e248 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,44 +27,37 @@ // +----------------------------------------------------------------------+ 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) + { + $this->class = 'TextField'; + $this->name = $name; + } - 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!="") $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; if ($this->max_length!="") $html .= " maxlength=\"$this->max_length\""; - if ($this->mOnChange!="") - $html .= " onchange=\"$this->mOnChange\""; + if ($this->on_change!="") + $html .= " onchange=\"$this->on_change\""; $html .= " value=\"".htmlspecialchars($this->getValue())."\""; $html .= ">";