<?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 GenKasse { function __construct(&$app) { $this->app=&$app; $this->app->ActionHandlerInit($this); $this->app->ActionHandler("create","KasseCreate"); $this->app->ActionHandler("edit","KasseEdit"); $this->app->ActionHandler("copy","KasseCopy"); $this->app->ActionHandler("list","KasseList"); $this->app->ActionHandler("delete","KasseDelete"); $this->app->Tpl->Set("HEADING","Kasse"); //$this->app->ActionHandlerListen($app); } function KasseCreate(){ $this->app->Tpl->Set("HEADING","Kasse (Anlegen)"); $this->app->PageBuilder->CreateGen("kasse_create.tpl"); } function KasseEdit(){ $this->app->Tpl->Set("HEADING","Kasse (Bearbeiten)"); $this->app->PageBuilder->CreateGen("kasse_edit.tpl"); } function KasseCopy(){ $this->app->Tpl->Set("HEADING","Kasse (Kopieren)"); $this->app->PageBuilder->CreateGen("kasse_copy.tpl"); } function KasseDelete(){ $this->app->Tpl->Set("HEADING","Kasse (Löschen)"); $this->app->PageBuilder->CreateGen("kasse_delete.tpl"); } function KasseList(){ $this->app->Tpl->Set("HEADING","Kasse (Übersicht)"); $this->app->PageBuilder->CreateGen("kasse_list.tpl"); } } ?>