app = $app; $this->parsetarget = $parsetarget; $this->Form(); } public function warteschlangenDelete() { $this->form->Execute("warteschlangen","delete"); $this->warteschlangenList(); } function Edit() { $this->form->Edit(); } function Copy() { $this->form->Copy(); } public function Create() { $this->form->Create(); } public function Search() { $this->app->Tpl->Set($this->parsetarget,"SUUUCHEEE"); } public function Summary() { $this->app->Tpl->Set($this->parsetarget,"grosse Tabelle"); } function Form() { $this->form = $this->app->FormHandler->CreateNew("warteschlangen"); $this->form->UseTable("warteschlangen"); $this->form->UseTemplate("warteschlangen.tpl",$this->parsetarget); $field = new HTMLInput("warteschlange","text","","40","","","","","","","","0","",""); $this->form->NewField($field); $field = new HTMLInput("label","text","","40","","","","","","","","0","",""); $this->form->NewField($field); $this->form->AddMandatory("label","notempty","!","MSGLABEL"); $field = new HTMLInput("adresse","text","","40","","","","","","","","0","",""); $this->form->NewField($field); $field = new HTMLCheckbox("wiedervorlage","","","1","0","0"); $this->form->NewField($field); } } ?>