<?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 GenUservorlage { function __construct(&$app) { $this->app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","UservorlageCreate"); $this->app->ActionHandler("edit","UservorlageEdit"); $this->app->ActionHandler("copy","UservorlageCopy"); $this->app->ActionHandler("list","UservorlageList"); $this->app->ActionHandler("delete","UservorlageDelete"); $this->app->Tpl->Set("HEADING","Uservorlage"); //$this->app->ActionHandlerListen($app); } function UservorlageCreate(){ $this->app->Tpl->Set("HEADING","Uservorlage (Anlegen)"); $this->app->PageBuilder->CreateGen("uservorlage_create.tpl"); } function UservorlageEdit(){ $this->app->Tpl->Set("HEADING","Uservorlage (Bearbeiten)"); $this->app->PageBuilder->CreateGen("uservorlage_edit.tpl"); } function UservorlageCopy(){ $this->app->Tpl->Set("HEADING","Uservorlage (Kopieren)"); $this->app->PageBuilder->CreateGen("uservorlage_copy.tpl"); } function UservorlageDelete(){ $this->app->Tpl->Set("HEADING","Uservorlage (Löschen)"); $this->app->PageBuilder->CreateGen("uservorlage_delete.tpl"); } function UservorlageList(){ $this->app->Tpl->Set("HEADING","Uservorlage (Übersicht)"); $this->app->PageBuilder->CreateGen("uservorlage_list.tpl"); } } ?>