app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","BestellungCreate"); $this->app->ActionHandler("edit","BestellungEdit"); $this->app->ActionHandler("copy","BestellungCopy"); $this->app->ActionHandler("list","BestellungList"); $this->app->ActionHandler("delete","BestellungDelete"); $this->app->Tpl->Set("HEADING","Bestellung"); //$this->app->ActionHandlerListen($app); } function BestellungCreate(){ $this->app->Tpl->Set("HEADING","Bestellung (Anlegen)"); $this->app->PageBuilder->CreateGen("bestellung_create.tpl"); } function BestellungEdit(){ $this->app->Tpl->Set("HEADING","Bestellung (Bearbeiten)"); $this->app->PageBuilder->CreateGen("bestellung_edit.tpl"); } function BestellungCopy(){ $this->app->Tpl->Set("HEADING","Bestellung (Kopieren)"); $this->app->PageBuilder->CreateGen("bestellung_copy.tpl"); } function BestellungDelete(){ $this->app->Tpl->Set("HEADING","Bestellung (Löschen)"); $this->app->PageBuilder->CreateGen("bestellung_delete.tpl"); } function BestellungList(){ $this->app->Tpl->Set("HEADING","Bestellung (Übersicht)"); $this->app->PageBuilder->CreateGen("bestellung_list.tpl"); } } ?>