X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FSubmit.class.php;h=5f8da37e5846e02e881057beb55d110e2d58da5b;hb=817c14c6c2098d85ef912fb95898c857bf533b4f;hp=c6c917ed0dbaa002e82174f4e65d9f2f2104116f;hpb=04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a;p=timetracker.git diff --git a/WEB-INF/lib/form/Submit.class.php b/WEB-INF/lib/form/Submit.class.php index c6c917ed..5f8da37e 100644 --- a/WEB-INF/lib/form/Submit.class.php +++ b/WEB-INF/lib/form/Submit.class.php @@ -27,35 +27,25 @@ // +----------------------------------------------------------------------+ import('form.FormElement'); - + class Submit extends FormElement { - var $cClassName = "Submit"; - function __construct($name,$value="") - { - $this->name = $name; - $this->value = $value; - } + function __construct($name) { + $this->class = 'Submit'; + $this->name = $name; + } + + function getHtml() { + if (empty($this->id)) + $this->id = $this->name; + + // Output HTML. + $html = "\n\tname\" id=\"$this->id\""; + $html .= " value=\"$this->value\""; + if ($this->on_click) $html .= " onclick=\"".$this->on_click."\""; + if (!$this->isEnabled()) $html .= " disabled"; + $html .= ">"; - function toStringControl() { - - if ($this->id=="") $this->id = $this->name; - - $html = "\n\tname\" id=\"$this->id\""; - - if (!$this->isEnabled()) { - $html .= " disabled=\"true\""; - } - - $html .= " value=\"$this->value\""; - - if ($this->on_click) { - $html .= " onclick=\"".$this->on_click."\""; - } - - $html .= ">"; - - return $html; - } + return $html; + } }