X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=db29a0c7ed0566a9747adde4994b7fd62095f7e7;hb=14304210865aab4372e8e726f64d830c0a077de5;hp=044b3d6de0ebdeb9b68f5fd0681abf2925f5d480;hpb=e1703495130c8ed88fe210f50a2a6b453b3c566b;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 044b3d6d..db29a0c7 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -30,40 +30,28 @@ import('form.FormElement'); class TextField extends FormElement { - function __construct($name, $value = '') + function __construct($name) { $this->class = 'TextField'; $this->name = $name; - $this->value = $value; } - // 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\tname\" id=\"$this->id\""; - - if ($this->size!="") - $html .= " size=\"$this->size\""; - - if ($this->style!="") - $html .= " style=\"$this->style\""; - - if ($this->max_length!="") - $html .= " maxlength=\"$this->max_length\""; - - if ($this->on_change!="") - $html .= " onchange=\"$this->on_change\""; + 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\""; - $html .= " value=\"".htmlspecialchars($this->getValue())."\""; - $html .= ">"; - } - - return $html; - } + if($this->isEnabled()) { + if (!empty($this->max_length)) $html .= " maxlength=\"$this->max_length\""; + if (!empty($this->on_change)) $html .= " onchange=\"$this->on_change\""; + } + + $html .= " value=\"".htmlspecialchars($this->getValue())."\""; + + if(!$this->isEnabled()) $html .= " readonly"; + $html .= ">\n"; + return $html; + } }