X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=044b3d6de0ebdeb9b68f5fd0681abf2925f5d480;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=3d5ce7af79455c343c2f5bf54e1d1b15c032d55d;hpb=9a23a8c0a51b7ec38a96f525484134f3cb85dc7e;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 3d5ce7af..044b3d6d 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,45 +27,38 @@ // +----------------------------------------------------------------------+ import('form.FormElement'); - + class TextField extends FormElement { - var $mValue; - var $mPassword = false; - var $cClassName = "TextField"; - function TextField($name,$value="") - { - $this->mName = $name; - $this->mValue = $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()) { - $html = "mName\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; + // TODO: refactoring ongoing down from here. + function getHtml() { + 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 = "\n\tname\" 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 .= ">"; @@ -74,4 +67,3 @@ class TextField extends FormElement { return $html; } } -?> \ No newline at end of file