mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
88 lines
2.5 KiB
PHP
88 lines
2.5 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
|
|
include ("_gen/adresse_typ.php");
|
|
|
|
class Adresse_typ extends GenAdresse_typ {
|
|
var $app;
|
|
|
|
function __construct(&$app) {
|
|
//parent::GenAdresse_typ($app);
|
|
$this->app=&$app;
|
|
|
|
$this->app->ActionHandlerInit($this);
|
|
|
|
$this->app->ActionHandler("create","Adresse_typCreate");
|
|
$this->app->ActionHandler("edit","Adresse_typEdit");
|
|
$this->app->ActionHandler("list","Adresse_typList");
|
|
$this->app->ActionHandler("delete","Adresse_typDelete");
|
|
|
|
$this->app->erp->Headlines('Adresse Typ');
|
|
|
|
$this->app->ActionHandlerListen($app);
|
|
}
|
|
|
|
|
|
function Adresse_typCreate()
|
|
{
|
|
$this->Adresse_typMenu();
|
|
parent::Adresse_typCreate();
|
|
}
|
|
|
|
function Adresse_typList()
|
|
{
|
|
$this->Adresse_typMenu();
|
|
parent::Adresse_typList();
|
|
}
|
|
|
|
function Adresse_typMenu()
|
|
{
|
|
$id = $this->app->Secure->GetGET("id");
|
|
$this->app->erp->MenuEintrag("index.php?module=adresse_typ&action=create","Neue Versandart anlegen");
|
|
if($this->app->Secure->GetGET("action")=="list")
|
|
{
|
|
$this->app->erp->MenuEintrag("index.php?module=adresse_typ&action=list","Übersicht");
|
|
$this->app->erp->MenuEintrag("index.php?module=einstellungen&action=list","Zurück zur Übersicht");
|
|
}
|
|
else if($this->app->Secure->GetGET("action")=="edit")
|
|
$this->app->erp->MenuEintrag("index.php?module=adresse_typ&action=edit&id=$id","Details");
|
|
else
|
|
$this->app->erp->MenuEintrag("index.php?module=adresse_typ&action=list","Zurück zur Übersicht");
|
|
}
|
|
|
|
|
|
|
|
function Adresse_typEdit()
|
|
{
|
|
$this->Adresse_typMenu();
|
|
parent::Adresse_typEdit();
|
|
}
|
|
|
|
function Adresse_typDelete()
|
|
{
|
|
$id = $this->app->Secure->GetGET("id");
|
|
|
|
$msg = $this->app->erp->base64_url_encode("<div class=\"info\">Die Versandart wurde gelöscht!</div>");
|
|
$this->app->DB->Update("DELETE FROM adresse_typ WHERE id='$id' LIMIT 1");
|
|
|
|
header("Location: index.php?module=adresse_typ&action=list&msg=$msg");
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|