X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=d7e38aeff4db6193f2cd94658fb260dd10dfa713;hb=ac5189157ef60820dd125400baee9f408a9ba2ea;hp=fdd022a9bd6d7ca6cdf9697f4245ba921c2abe04;hpb=33399ff6a8bdfe9b989810dafe9c4dbf3cf3b685;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index fdd022a9..d7e38aef 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -29,43 +29,40 @@ import('form.FormElement'); class TextField extends FormElement { - var $mValue; var $mPassword = false; - var $cClassName = "TextField"; + var $class = 'TextField'; - function TextField($name,$value="") + function __construct($name,$value="") { - $this->mName = $name; - $this->mValue = $value; + $this->name = $name; + $this->value = $value; } function setAsPassword($name) { $this->mPassword = $name; } function getAsPassword() { return $this->mPassword; } - function toStringControl() { - if (!$this->isRenderable()) return ""; - - if (!$this->isEnable()) { - $html = "mName\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; + function toStringControl() { + if (!$this->isEnabled()) { + $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else { - if ($this->mId=="") $this->mId = $this->mName; + if ($this->id=="") $this->id = $this->name; $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\""); - $html .= " name=\"$this->mName\" id=\"$this->mId\""; + $html .= " name=\"$this->name\" id=\"$this->id\""; - if ($this->mSize!="") - $html .= " size=\"$this->mSize\""; + if ($this->size!="") + $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; - if ($this->mMaxLength!="") - $html .= " maxlength=\"$this->mMaxLength\""; + 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 .= ">";