コード例 #1
0
ファイル: UIForm.php プロジェクト: rjwalsh88/BawkApp
 protected function html()
 {
     $text = "<form method=\"" . $this->method . "\" action=\"" . $this->action . "\"" . $this->encoding . " name=\"" . $this->name . "\" onSubmit=\"return validate(document." . $this->name . ")\" >";
     $text .= parent::html();
     return $text . "</form>";
 }