app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","KostenstellenCreate"); $this->app->ActionHandler("edit","KostenstellenEdit"); $this->app->ActionHandler("copy","KostenstellenCopy"); $this->app->ActionHandler("list","KostenstellenList"); $this->app->ActionHandler("delete","KostenstellenDelete"); $this->app->Tpl->Set('HEADING',"Kostenstellen"); $this->app->ActionHandlerListen($app); } function KostenstellenCreate(){ $this->app->Tpl->Set('HEADING',"Kostenstellen (Anlegen)"); $this->app->PageBuilder->CreateGen("kostenstellen_create.tpl"); } function KostenstellenEdit(){ $this->app->Tpl->Set('HEADING',"Kostenstellen (Bearbeiten)"); $this->app->PageBuilder->CreateGen("kostenstellen_edit.tpl"); } function KostenstellenCopy(){ $this->app->Tpl->Set('HEADING',"Kostenstellen (Kopieren)"); $this->app->PageBuilder->CreateGen("kostenstellen_copy.tpl"); } function KostenstellenDelete(){ $this->app->Tpl->Set('HEADING',"Kostenstellen (Löschen)"); $this->app->PageBuilder->CreateGen("kostenstellen_delete.tpl"); } function KostenstellenList(){ $this->app->Tpl->Set('HEADING',"Kostenstellen (Übersicht)"); $this->app->PageBuilder->CreateGen("kostenstellen_list.tpl"); } } ?>