X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=6b745a2afa59fa580c91a9c64fa06818a8c30b02;hb=ed41335d63e71a11d30e92f4367106e9398adf9d;hp=45455d0d35e4e81f562e79399cc7e94ef7c14c32;hpb=785d404c84c153bda7d45d3aedfefa81985703b3;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 45455d0d..6b745a2a 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -27,42 +27,36 @@ // +----------------------------------------------------------------------+ import('form.FormElement'); - + class TextField extends FormElement { - function __construct($name,$value="") - { - $this->class = 'TextField'; - $this->name = $name; - $this->value = $value; - } + var $title = null; // Control title (ex: to display a tooltip). + + function __construct($name) + { + $this->class = 'TextField'; + $this->name = $name; + } + + function setTitle($title) { $this->title = $title; } + + 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 (!empty($this->title)) $html .= " title=\"$this->title\""; + + if($this->isEnabled()) { + if (!empty($this->max_length)) $html .= " maxlength=\"$this->max_length\""; + if (!empty($this->on_change)) $html .= " onchange=\"$this->on_change\""; + } - 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\""; + $html .= " value=\"".htmlspecialchars($this->getValue())."\""; - $html .= " value=\"".htmlspecialchars($this->getValue())."\""; - $html .= ">"; - } - - return $html; - } + if(!$this->isEnabled()) $html .= " readonly"; + $html .= ">\n"; + return $html; + } }