app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","Proformarechnung_PositionCreate"); $this->app->ActionHandler("edit","Proformarechnung_PositionEdit"); $this->app->ActionHandler("copy","Proformarechnung_PositionCopy"); $this->app->ActionHandler("list","Proformarechnung_PositionList"); $this->app->ActionHandler("delete","Proformarechnung_PositionDelete"); $this->app->Tpl->Set("HEADING","Proformarechnung_Position"); //$this->app->ActionHandlerListen($app); } function Proformarechnung_PositionCreate(){ $this->app->Tpl->Set("HEADING","Proformarechnung_Position (Anlegen)"); $this->app->PageBuilder->CreateGen("proformarechnung_position_create.tpl"); } function Proformarechnung_PositionEdit(){ $this->app->Tpl->Set("HEADING","Proformarechnung_Position (Bearbeiten)"); $this->app->PageBuilder->CreateGen("proformarechnung_position_edit.tpl"); } function Proformarechnung_PositionCopy(){ $this->app->Tpl->Set("HEADING","Proformarechnung_Position (Kopieren)"); $this->app->PageBuilder->CreateGen("proformarechnung_position_copy.tpl"); } function Proformarechnung_PositionDelete(){ $this->app->Tpl->Set("HEADING","Proformarechnung_Position (Löschen)"); $this->app->PageBuilder->CreateGen("proformarechnung_position_delete.tpl"); } function Proformarechnung_PositionList(){ $this->app->Tpl->Set("HEADING","Proformarechnung_Position (Übersicht)"); $this->app->PageBuilder->CreateGen("proformarechnung_position_list.tpl"); } } ?>