mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
71 lines
2.3 KiB
PHP
71 lines
2.3 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 Tableau {
|
|
/** @var erpooSystem $app */
|
|
var $app;
|
|
|
|
function __construct($app, $intern = false) {
|
|
$this->app=$app;
|
|
if($intern)return;
|
|
$this->app->ActionHandlerInit($this);
|
|
|
|
$this->app->ActionHandler("list", "TableauList");
|
|
|
|
$this->app->ActionHandlerListen($app);
|
|
}
|
|
|
|
function TableauMenu()
|
|
{
|
|
$this->app->erp->MenuEintrag("index.php?module=tableau&action=list","Zurück zur Übersicht");
|
|
$this->app->erp->MenuEintrag("index.php?module=tableau&action=list","Übersicht");
|
|
}
|
|
|
|
function TableauList()
|
|
{
|
|
$this->TableauMenu();
|
|
$this->app->Tpl->Set("KURZUEBERSCHRIFT","Tableau");
|
|
|
|
$this->app->Tpl->Set("WIKITEXT", $this->getWikiPageContent());
|
|
|
|
$this->app->Tpl->Parse("PAGE","tableau_list.tpl");
|
|
}
|
|
|
|
public function getWikiPageContent()
|
|
{
|
|
$this->app->DB->DisableHTMLClearing(true);
|
|
$wikiPageExists = $this->app->DB->Select("SELECT `id` FROM wiki WHERE name='tableau' LIMIT 1");
|
|
if($wikiPageExists > 0 && $wikiPageExists !== ''){
|
|
$wikiDefaultText = '';
|
|
$this->app->DB->Insert("INSERT INTO wiki (name,content) VALUES ('tableau','".$wikiDefaultText."')");
|
|
}
|
|
|
|
$wikiPageExists = $this->app->DB->Select("SELECT `id` FROM wiki WHERE name='tableau' LIMIT 1");
|
|
if($wikiPageExists > 0 && $wikiPageExists !== ''){
|
|
$this->app->DB->Insert("INSERT INTO wiki (name) VALUES ('tableau')");
|
|
}
|
|
|
|
$wikiPageContent = $this->app->DB->Select("SELECT content FROM wiki WHERE name='tableau' LIMIT 1");
|
|
$this->app->DB->DisableHTMLClearing(false);
|
|
$wikiPageContent = $this->app->erp->ReadyForPDF($wikiPageContent);
|
|
$wikiParser = new WikiParser();
|
|
$parsedWikiPageContent = $wikiParser->parse($wikiPageContent);
|
|
|
|
return $parsedWikiPageContent;
|
|
}
|
|
|
|
}
|