<?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 GenGeschaeftsbrief_Vorlagen { function __construct(&$app) { $this->app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","Geschaeftsbrief_VorlagenCreate"); $this->app->ActionHandler("edit","Geschaeftsbrief_VorlagenEdit"); $this->app->ActionHandler("copy","Geschaeftsbrief_VorlagenCopy"); $this->app->ActionHandler("list","Geschaeftsbrief_VorlagenList"); $this->app->ActionHandler("delete","Geschaeftsbrief_VorlagenDelete"); $this->app->Tpl->Set("HEADING","Geschaeftsbrief_Vorlagen"); //$this->app->ActionHandlerListen($app); } function Geschaeftsbrief_VorlagenCreate(){ $this->app->Tpl->Set("HEADING","Geschaeftsbrief_Vorlagen (Anlegen)"); $this->app->PageBuilder->CreateGen("geschaeftsbrief_vorlagen_create.tpl"); } function Geschaeftsbrief_VorlagenEdit(){ $this->app->Tpl->Set("HEADING","Geschaeftsbrief_Vorlagen (Bearbeiten)"); $this->app->PageBuilder->CreateGen("geschaeftsbrief_vorlagen_edit.tpl"); } function Geschaeftsbrief_VorlagenCopy(){ $this->app->Tpl->Set("HEADING","Geschaeftsbrief_Vorlagen (Kopieren)"); $this->app->PageBuilder->CreateGen("geschaeftsbrief_vorlagen_copy.tpl"); } function Geschaeftsbrief_VorlagenDelete(){ $this->app->Tpl->Set("HEADING","Geschaeftsbrief_Vorlagen (Löschen)"); $this->app->PageBuilder->CreateGen("geschaeftsbrief_vorlagen_delete.tpl"); } function Geschaeftsbrief_VorlagenList(){ $this->app->Tpl->Set("HEADING","Geschaeftsbrief_Vorlagen (Übersicht)"); $this->app->PageBuilder->CreateGen("geschaeftsbrief_vorlagen_list.tpl"); } } ?>