OpenXE/www/pages/_gen/gruppen.php
2021-05-21 08:49:41 +02:00

59 lines
1.8 KiB
PHP

<?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 GenGruppen {
function __construct(&$app) {
$this->app=&$app;
$this->app->ActionHandlerInit($this);
$this->app->ActionHandler("create","GruppenCreate");
$this->app->ActionHandler("edit","GruppenEdit");
$this->app->ActionHandler("copy","GruppenCopy");
$this->app->ActionHandler("list","GruppenList");
$this->app->ActionHandler("delete","GruppenDelete");
$this->app->Tpl->Set("HEADING","Gruppen"); //$this->app->ActionHandlerListen($app);
}
function GruppenCreate(){
$this->app->Tpl->Set("HEADING","Gruppen (Anlegen)");
$this->app->PageBuilder->CreateGen("gruppen_create.tpl");
}
function GruppenEdit(){
$this->app->Tpl->Set("HEADING","Gruppen (Bearbeiten)");
$this->app->PageBuilder->CreateGen("gruppen_edit.tpl");
}
function GruppenCopy(){
$this->app->Tpl->Set("HEADING","Gruppen (Kopieren)");
$this->app->PageBuilder->CreateGen("gruppen_copy.tpl");
}
function GruppenDelete(){
$this->app->Tpl->Set("HEADING","Gruppen (L&ouml;schen)");
$this->app->PageBuilder->CreateGen("gruppen_delete.tpl");
}
function GruppenList(){
$this->app->Tpl->Set("HEADING","Gruppen (&Uuml;bersicht)");
$this->app->PageBuilder->CreateGen("gruppen_list.tpl");
}
}
?>