app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","SupportappCreate"); $this->app->ActionHandler("edit","SupportappEdit"); $this->app->ActionHandler("copy","SupportappCopy"); $this->app->ActionHandler("list","SupportappList"); $this->app->ActionHandler("delete","SupportappDelete"); $this->app->Tpl->Set("HEADING","Supportapp"); //$this->app->ActionHandlerListen($app); } function SupportappCreate(){ $this->app->Tpl->Set("HEADING","Supportapp (Anlegen)"); $this->app->PageBuilder->CreateGen("supportapp_create.tpl"); } function SupportappEdit(){ $this->app->Tpl->Set("HEADING","Supportapp (Bearbeiten)"); $this->app->PageBuilder->CreateGen("supportapp_edit.tpl"); } function SupportappCopy(){ $this->app->Tpl->Set("HEADING","Supportapp (Kopieren)"); $this->app->PageBuilder->CreateGen("supportapp_copy.tpl"); } function SupportappDelete(){ $this->app->Tpl->Set("HEADING","Supportapp (Löschen)"); $this->app->PageBuilder->CreateGen("supportapp_delete.tpl"); } function SupportappList(){ $this->app->Tpl->Set("HEADING","Supportapp (Übersicht)"); $this->app->PageBuilder->CreateGen("supportapp_list.tpl"); } } ?>