<?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 GenImportvorlage { function __construct(&$app) { $this->app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","ImportvorlageCreate"); $this->app->ActionHandler("edit","ImportvorlageEdit"); $this->app->ActionHandler("copy","ImportvorlageCopy"); $this->app->ActionHandler("list","ImportvorlageList"); $this->app->ActionHandler("delete","ImportvorlageDelete"); $this->app->Tpl->Set("HEADING","Importvorlage"); //$this->app->ActionHandlerListen($app); } function ImportvorlageCreate(){ $this->app->Tpl->Set("HEADING","Importvorlage (Anlegen)"); $this->app->PageBuilder->CreateGen("importvorlage_create.tpl"); } function ImportvorlageEdit(){ $this->app->Tpl->Set("HEADING","Importvorlage (Bearbeiten)"); $this->app->PageBuilder->CreateGen("importvorlage_edit.tpl"); } function ImportvorlageCopy(){ $this->app->Tpl->Set("HEADING","Importvorlage (Kopieren)"); $this->app->PageBuilder->CreateGen("importvorlage_copy.tpl"); } function ImportvorlageDelete(){ $this->app->Tpl->Set("HEADING","Importvorlage (Löschen)"); $this->app->PageBuilder->CreateGen("importvorlage_delete.tpl"); } function ImportvorlageList(){ $this->app->Tpl->Set("HEADING","Importvorlage (Übersicht)"); $this->app->PageBuilder->CreateGen("importvorlage_list.tpl"); } } ?>