OpenXE/www/pages/_gen/proformarechnung.php

59 lines
2.0 KiB
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?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 GenProformarechnung {
function __construct(&$app) {
$this->app=&$app;
$this->app->ActionHandlerInit($this);
$this->app->ActionHandler("create","ProformarechnungCreate");
$this->app->ActionHandler("edit","ProformarechnungEdit");
$this->app->ActionHandler("copy","ProformarechnungCopy");
$this->app->ActionHandler("list","ProformarechnungList");
$this->app->ActionHandler("delete","ProformarechnungDelete");
$this->app->Tpl->Set("HEADING","Proformarechnung"); //$this->app->ActionHandlerListen($app);
}
function ProformarechnungCreate(){
$this->app->Tpl->Set("HEADING","Proformarechnung (Anlegen)");
$this->app->PageBuilder->CreateGen("proformarechnung_create.tpl");
}
function ProformarechnungEdit(){
$this->app->Tpl->Set("HEADING","Proformarechnung (Bearbeiten)");
$this->app->PageBuilder->CreateGen("proformarechnung_edit.tpl");
}
function ProformarechnungCopy(){
$this->app->Tpl->Set("HEADING","Proformarechnung (Kopieren)");
$this->app->PageBuilder->CreateGen("proformarechnung_copy.tpl");
}
function ProformarechnungDelete(){
$this->app->Tpl->Set("HEADING","Proformarechnung (L&ouml;schen)");
$this->app->PageBuilder->CreateGen("proformarechnung_delete.tpl");
}
function ProformarechnungList(){
$this->app->Tpl->Set("HEADING","Proformarechnung (&Uuml;bersicht)");
$this->app->PageBuilder->CreateGen("proformarechnung_list.tpl");
}
}
?>