app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","VersandartenCreate"); $this->app->ActionHandler("edit","VersandartenEdit"); $this->app->ActionHandler("copy","VersandartenCopy"); $this->app->ActionHandler("list","VersandartenList"); $this->app->ActionHandler("delete","VersandartenDelete"); $this->app->Tpl->Set("HEADING","Versandarten"); //$this->app->ActionHandlerListen($app); } function VersandartenCreate(){ $this->app->Tpl->Set("HEADING","Versandarten (Anlegen)"); $this->app->PageBuilder->CreateGen("versandarten_create.tpl"); } function VersandartenEdit(){ $this->app->Tpl->Set("HEADING","Versandarten (Bearbeiten)"); $this->app->PageBuilder->CreateGen("versandarten_edit.tpl"); } function VersandartenCopy(){ $this->app->Tpl->Set("HEADING","Versandarten (Kopieren)"); $this->app->PageBuilder->CreateGen("versandarten_copy.tpl"); } function VersandartenDelete(){ $this->app->Tpl->Set("HEADING","Versandarten (Löschen)"); $this->app->PageBuilder->CreateGen("versandarten_delete.tpl"); } function VersandartenList(){ $this->app->Tpl->Set("HEADING","Versandarten (Übersicht)"); $this->app->PageBuilder->CreateGen("versandarten_list.tpl"); } } ?>