X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FSubmit.class.php;h=35eb6df3df54f9bfe5a0ea1577b0903ff79d97f0;hb=058d776c118501eb510967c8b870bc346bc39e71;hp=d621850b73a28eab671d66a53be133c6d08c59c8;hpb=9a23a8c0a51b7ec38a96f525484134f3cb85dc7e;p=timetracker.git diff --git a/WEB-INF/lib/form/Submit.class.php b/WEB-INF/lib/form/Submit.class.php index d621850b..35eb6df3 100644 --- a/WEB-INF/lib/form/Submit.class.php +++ b/WEB-INF/lib/form/Submit.class.php @@ -29,30 +29,28 @@ import('form.FormElement'); class Submit extends FormElement { - var $cClassName = "Submit"; - function Submit($name,$value="") - { - $this->mName = $name; - $this->mValue = $value; - } + function __construct($name) + { + $this->class = 'Submit'; + $this->name = $name; + } - function toStringControl() { - if (!$this->isRenderable()) return ""; + function getHtml() { - if ($this->mId=="") $this->mId = $this->mName; + if ($this->id=="") $this->id = $this->name; $html = "\n\tmName\" id=\"$this->mId\""; + $html .= " type=\"submit\" name=\"$this->name\" id=\"$this->id\""; - if (!$this->isEnable()) { + if (!$this->isEnabled()) { $html .= " disabled=\"true\""; } - $html .= " value=\"$this->mValue\""; + $html .= " value=\"$this->value\""; - if ($this->mOnClick) { - $html .= " onclick=\"".$this->mOnClick."\""; + if ($this->on_click) { + $html .= " onclick=\"".$this->on_click."\""; } $html .= ">"; @@ -60,4 +58,3 @@ class Submit extends FormElement { return $html; } } -?> \ No newline at end of file