app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","VorlageCreate"); $this->app->ActionHandler("edit","VorlageEdit"); $this->app->ActionHandler("copy","VorlageCopy"); $this->app->ActionHandler("list","VorlageList"); $this->app->ActionHandler("delete","VorlageDelete"); $this->app->Tpl->Set("HEADING","Vorlage"); //$this->app->ActionHandlerListen($app); } function VorlageCreate(){ $this->app->Tpl->Set("HEADING","Vorlage (Anlegen)"); $this->app->PageBuilder->CreateGen("vorlage_create.tpl"); } function VorlageEdit(){ $this->app->Tpl->Set("HEADING","Vorlage (Bearbeiten)"); $this->app->PageBuilder->CreateGen("vorlage_edit.tpl"); } function VorlageCopy(){ $this->app->Tpl->Set("HEADING","Vorlage (Kopieren)"); $this->app->PageBuilder->CreateGen("vorlage_copy.tpl"); } function VorlageDelete(){ $this->app->Tpl->Set("HEADING","Vorlage (Löschen)"); $this->app->PageBuilder->CreateGen("vorlage_delete.tpl"); } function VorlageList(){ $this->app->Tpl->Set("HEADING","Vorlage (Übersicht)"); $this->app->PageBuilder->CreateGen("vorlage_list.tpl"); } } ?>