<?php /* **** COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE **** * * Xentral (c) Xentral ERP Sorftware GmbH, Fuggerstrasse 11, D-86150 Augsburg, * Germany 2019 * * This file is licensed under the Embedded Projects General Public License *Version 3.1. * * You should have received a copy of this license from your vendor and/or *along with this file; If not, please visit www.wawision.de/Lizenzhinweis * to obtain the text of the corresponding license version. * **** END OF COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE **** */ ?> <?php class GenVersandarten { function __construct(&$app) { $this->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"); } } ?>