X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=db29a0c7ed0566a9747adde4994b7fd62095f7e7;hb=14304210865aab4372e8e726f64d830c0a077de5;hp=4766d91189387a70244b14000f9bd3c9f01ea83f;hpb=cb8e3de960b758147b34d8323054e7de70548619;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 4766d911..db29a0c7 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,49 +27,31 @@ // +----------------------------------------------------------------------+ 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 getHtml() { + if (empty($this->id)) $this->id = $this->name; + $html = "\n\tid\" name=\"$this->name\""; + if (!empty($this->size)) $html .= " size=\"$this->size\""; + if (!empty($this->style)) $html .= " style=\"$this->style\""; + + if($this->isEnabled()) { + if (!empty($this->max_length)) $html .= " maxlength=\"$this->max_length\""; + if (!empty($this->on_change)) $html .= " onchange=\"$this->on_change\""; + } - function toStringControl() { - if (!$this->isRenderable()) return ""; - - if (!$this->isEnable()) { - $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; - } else { - - if ($this->id=="") $this->id = $this->name; - - $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\""); - $html .= " name=\"$this->name\" id=\"$this->id\""; - - if ($this->mSize!="") - $html .= " size=\"$this->mSize\""; - - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; - - if ($this->mMaxLength!="") - $html .= " maxlength=\"$this->mMaxLength\""; - - if ($this->mOnChange!="") - $html .= " onchange=\"$this->mOnChange\""; + $html .= " value=\"".htmlspecialchars($this->getValue())."\""; - $html .= " value=\"".htmlspecialchars($this->getValue())."\""; - $html .= ">"; - } - - return $html; - } + if(!$this->isEnabled()) $html .= " readonly"; + $html .= ">\n"; + return $html; + } }