app = $app; $this->parsetarget = $parsetarget; $this->Form(); } public function adresse_accountsDelete() { $this->form->Execute("adresse_accounts","delete"); $this->adresse_accountsList(); } 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("adresse_accounts"); $this->form->UseTable("adresse_accounts"); $this->form->UseTemplate("adresse_accounts.tpl",$this->parsetarget); $field = new HTMLInput("bezeichnung","text","","40","","","","","","","0"); $this->form->NewField($field); $field = new HTMLInput("benutzername","text","","40","","","","","","","0"); $this->form->NewField($field); $field = new HTMLInput("art","text","","40","","","","","","","0"); $this->form->NewField($field); $field = new HTMLInput("passwort","text","","40","","","","","","","0"); $this->form->NewField($field); $field = new HTMLCheckbox("aktiv","","","1","0"); $this->form->NewField($field); $field = new HTMLInput("url","text","","40","","","","","","","0"); $this->form->NewField($field); $field = new HTMLInput("gueltig_ab","text","","10","","","","","","","0"); $this->form->NewField($field); $field = new HTMLInput("gueltig_bis","text","","10","","","","","","","0"); $this->form->NewField($field); } } ?>