app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","ProhejtCreate"); $this->app->ActionHandler("edit","ProhejtEdit"); $this->app->ActionHandler("copy","ProhejtCopy"); $this->app->ActionHandler("list","ProhejtList"); $this->app->ActionHandler("delete","ProhejtDelete"); $this->app->Tpl->Set("HEADING","Prohejt"); //$this->app->ActionHandlerListen($app); } function ProhejtCreate(){ $this->app->Tpl->Set("HEADING","Prohejt (Anlegen)"); $this->app->PageBuilder->CreateGen("prohejt_create.tpl"); } function ProhejtEdit(){ $this->app->Tpl->Set("HEADING","Prohejt (Bearbeiten)"); $this->app->PageBuilder->CreateGen("prohejt_edit.tpl"); } function ProhejtCopy(){ $this->app->Tpl->Set("HEADING","Prohejt (Kopieren)"); $this->app->PageBuilder->CreateGen("prohejt_copy.tpl"); } function ProhejtDelete(){ $this->app->Tpl->Set("HEADING","Prohejt (Löschen)"); $this->app->PageBuilder->CreateGen("prohejt_delete.tpl"); } function ProhejtList(){ $this->app->Tpl->Set("HEADING","Prohejt (Übersicht)"); $this->app->PageBuilder->CreateGen("prohejt_list.tpl"); } } ?>