app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","DruckerCreate"); $this->app->ActionHandler("edit","DruckerEdit"); $this->app->ActionHandler("copy","DruckerCopy"); $this->app->ActionHandler("list","DruckerList"); $this->app->ActionHandler("delete","DruckerDelete"); $this->app->Tpl->Set("HEADING","Drucker"); //$this->app->ActionHandlerListen($app); } function DruckerCreate(){ $this->app->Tpl->Set("HEADING","Drucker (Anlegen)"); $this->app->PageBuilder->CreateGen("drucker_create.tpl"); } function DruckerEdit(){ $this->app->Tpl->Set("HEADING","Drucker (Bearbeiten)"); $this->app->PageBuilder->CreateGen("drucker_edit.tpl"); } function DruckerCopy(){ $this->app->Tpl->Set("HEADING","Drucker (Kopieren)"); $this->app->PageBuilder->CreateGen("drucker_copy.tpl"); } function DruckerDelete(){ $this->app->Tpl->Set("HEADING","Drucker (Löschen)"); $this->app->PageBuilder->CreateGen("drucker_delete.tpl"); } function DruckerList(){ $this->app->Tpl->Set("HEADING","Drucker (Übersicht)"); $this->app->PageBuilder->CreateGen("drucker_list.tpl"); } } ?>