OpenXE/www/pages/inhalt.php
2022-06-10 11:28:28 +02:00

493 lines
22 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 Inhalt{
/** @var Application $app */
var $app;
public function TableSearch(&$app, $name, $erlaubtevars)
{
switch ($name){
case 'inhaltsseiten':
$allowed['inhalt'] = array('list');
// EXTRA CHECKBOXEN
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyde').click( function() { fnFilterColumn1( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyen').click( function() { fnFilterColumn2( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyonline').click( function() { fnFilterColumn3( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyoffline').click( function() { fnFilterColumn4( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyhtml').click( function() { fnFilterColumn5( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyemail').click( function() { fnFilterColumn6( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlygroups').click( function() { fnFilterColumn7( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyteaser').click( function() { fnFilterColumn8( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlynews').click( function() { fnFilterColumn9( 0 ); } );");
for ($r = 1;$r < 10;$r++) {
$this->app->Tpl->Add('JAVASCRIPT', '
function fnFilterColumn' . $r . ' ( i )
{
if(oMoreData' . $r . $name . '==1)
oMoreData' . $r . $name . ' = 0;
else
oMoreData' . $r . $name . ' = 1;
$(\'#' . $name . '\').dataTable().fnFilter(
\'\',
i,
0,0
);
}
');
}
// ENDE EXTRA CHECKBOXEN
$heading = array('Inhalts-ID', 'Typ', 'Sprache', 'Shop', 'Erstellt', 'Sichtbar bis', 'Status', 'Men&uuml;');
$width = array('10%', '10%', '1%', '15%', '10%', '10%', '7%', '10%');
$findcols = array('inhalt', 'inhaltstyp', 'sprache', 'shop', 'datum', 'sichtbarbis', 'aktiv', 'id');
$searchsql = array('i.inhalt', 'i.inhaltstyp', 's.bezeichnung', 'i.datum', 'i.sichtbarbis');
$menu = "<a href=\"index.php?module=inhalt&action=edit&id=%value%\"><img src=\"themes/{$this->app->Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"></a>" . "&nbsp;<a href=\"#\" onclick=DeleteDialog(\"index.php?module=inhalt&action=delete&id=%value%\");>" . "<img src=\"themes/{$this->app->Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\"></a>" . "&nbsp;<a href=\"index.php?module=inhalt&action=copy&id=%value%\"><img src=\"themes/{$this->app->Conf->WFconf['defaulttheme']}/images/copy.svg\" border=\"0\"></a>";
$sql = "SELECT SQL_CALC_FOUND_ROWS i.id, i.inhalt, i.inhaltstyp, i.sprache, s.bezeichnung AS shop, i.datum, DATE(i.sichtbarbis) as sichtbarbis,
IF(i.aktiv=1,'<span style=\"background-color:green;color: #FFF;\">ONLINE</span>','OFFLINE') AS aktiv, i.id
FROM inhalt AS i LEFT JOIN shopexport AS s ON s.id=i.shop ";
$subwhere = array();
$more_data1 = $this->app->Secure->GetGET("more_data1");
if ($more_data1 == 1) $subwhere[] = " i.sprache='de' ";
$more_data2 = $this->app->Secure->GetGET("more_data2");
if ($more_data2 == 1) $subwhere[] = " i.sprache='en' ";
$more_data3 = $this->app->Secure->GetGET("more_data3");
if ($more_data3 == 1) $subwhere[] = " i.aktiv=1 ";
$more_data4 = $this->app->Secure->GetGET("more_data4");
if ($more_data4 == 1) $subwhere[] = " i.aktiv=1 ";
$more_data5 = $this->app->Secure->GetGET("more_data5");
if ($more_data5 == 1) $subwhere[] = " i.inhaltstyp='page' ";
$more_data6 = $this->app->Secure->GetGET("more_data6");
if ($more_data6 == 1) $subwhere[] = " i.inhaltstyp='email' ";
$more_data7 = $this->app->Secure->GetGET("more_data7");
if ($more_data7 == 1) $subwhere[] = " i.inhaltstyp='group' ";
$more_data8 = $this->app->Secure->GetGET("more_data8");
if ($more_data8 == 1) $subwhere[] = " i.inhaltstyp='teaser' ";
$more_data9 = $this->app->Secure->GetGET("more_data9");
if ($more_data9 == 1) $subwhere[] = " i.inhaltstyp='news' ";
$tmp = '';
if(!empty($subwhere)){
foreach($subwhere as $s) {
$tmp .= ' AND '.$s;
}
}
$where = "i.id $tmp";
$count = "SELECT COUNT(i.id) FROM inhalt i";
$moreinfo = false;
break;
case 'inhaltsseitenshop':
$allowed['inhalt'] = array('listshop');
// EXTRA CHECKBOXEN
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyde').click( function() { fnFilterColumn1( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyen').click( function() { fnFilterColumn2( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyonline').click( function() { fnFilterColumn3( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyoffline').click( function() { fnFilterColumn4( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyhtml').click( function() { fnFilterColumn5( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyemail').click( function() { fnFilterColumn6( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlygroups').click( function() { fnFilterColumn7( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlyteaser').click( function() { fnFilterColumn8( 0 ); } );");
$this->app->Tpl->Add('JQUERYREADY', "$('#onlynews').click( function() { fnFilterColumn9( 0 ); } );");
for ($r = 1;$r < 10;$r++) {
$this->app->Tpl->Add('JAVASCRIPT', '
function fnFilterColumn' . $r . ' ( i )
{
if(oMoreData' . $r . $name . '==1)
oMoreData' . $r . $name . ' = 0;
else
oMoreData' . $r . $name . ' = 1;
$(\'#' . $name . '\').dataTable().fnFilter(
\'\',
i,
0,0
);
}
');
}
// ENDE EXTRA CHECKBOXEN
$heading = array('Inhalts-ID', 'Typ', 'Sprache', 'Erstellt', 'Sichtbar bis', 'Status', 'Men&uuml;');
$width = array('10%', '10%', '1%', '10%', '10%', '7%', '10%');
$findcols = array('inhalt', 'inhaltstyp', 'sprache', 'datum', 'sichtbarbis', 'aktiv', 'id');
$searchsql = array('i.inhalt', 'i.inhaltstyp', 's.bezeichnung', 'i.datum', 'i.sichtbarbis');
$menu = "<a href=\"index.php?module=inhalt&action=edit&id=%value%\"><img src=\"themes/{$this->app->Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"></a>" . "&nbsp;<a href=\"#\" onclick=DeleteDialog(\"index.php?module=inhalt&action=delete&id=%value%\");>" . "<img src=\"themes/{$this->app->Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\"></a>" . "&nbsp;<a href=\"index.php?module=inhalt&action=copy&id=%value%\"><img src=\"themes/{$this->app->Conf->WFconf['defaulttheme']}/images/copy.svg\" border=\"0\"></a>";
$sql = "SELECT SQL_CALC_FOUND_ROWS i.id, i.inhalt, i.inhaltstyp, i.sprache, i.datum, DATE(i.sichtbarbis) as sichtbarbis,
IF(i.aktiv=1,'<span style=\"background-color:green;color: #FFF;\">ONLINE</span>','OFFLINE') AS aktiv, i.id
FROM inhalt AS i LEFT JOIN shopexport AS s ON s.id=i.shop ";
$subwhere = array();
$more_data1 = $this->app->Secure->GetGET("more_data1");
if ($more_data1 == 1) $subwhere[] = " i.sprache='de' ";
$more_data2 = $this->app->Secure->GetGET("more_data2");
if ($more_data2 == 1) $subwhere[] = " i.sprache='en' ";
$more_data3 = $this->app->Secure->GetGET("more_data3");
if ($more_data3 == 1) $subwhere[] = " i.aktiv=1 ";
$more_data4 = $this->app->Secure->GetGET("more_data4");
if ($more_data4 == 1) $subwhere[] = " i.aktiv=1 ";
$more_data5 = $this->app->Secure->GetGET("more_data5");
if ($more_data5 == 1) $subwhere[] = " i.inhaltstyp='page' ";
$more_data6 = $this->app->Secure->GetGET("more_data6");
if ($more_data6 == 1) $subwhere[] = " i.inhaltstyp='email' ";
$more_data7 = $this->app->Secure->GetGET("more_data7");
if ($more_data7 == 1) $subwhere[] = " i.inhaltstyp='group' ";
$more_data8 = $this->app->Secure->GetGET("more_data8");
if ($more_data8 == 1) $subwhere[] = " i.inhaltstyp='teaser' ";
$more_data9 = $this->app->Secure->GetGET("more_data9");
if ($more_data9 == 1) $subwhere[] = " i.inhaltstyp='news' ";
$tmp = '';
if(!empty($subwhere)) {
foreach($subwhere as $s)
{
$tmp .= ' AND '.$s;
}
}
$shop = $this->app->Secure->GetGET('id');
$where = "i.id AND i.shop='$shop' $tmp";
$count = "SELECT COUNT(i.id) FROM inhalt i WHERE i.shop='$shop'";
$moreinfo = false;
break;
}
$erg = [];
foreach($erlaubtevars as $k => $v)
{
if(isset($$v))
{
$erg[$v] = $$v;
}
}
return $erg;
}
function __construct($app, $intern = false) {
$this->app=$app;
if($intern) {
return;
}
$this->app->ActionHandlerInit($this);
$this->app->ActionHandler("create","InhaltCreate");
$this->app->ActionHandler("edit","InhaltEdit");
$this->app->ActionHandler("list","InhaltList");
$this->app->ActionHandler("delete","InhaltDelete");
$this->app->ActionHandler("listshop","InhaltListShop");
$this->app->ActionHandlerListen($app);
}
function InhaltCreate()
{
$this->app->Tpl->Set('UEBERSCHRIFT',"Inhalt anlegen");
$this->app->erp->Headlines('Inhalt anlegen');
$this->app->erp->MenuEintrag("index.php?module=inhalt&action=list","Zur&uuml;ck zur &Uuml;bersicht");
$inhaltstyp = $this->app->Secure->GetPOST('inhaltstyp');
$shop = $this->app->Secure->GetPOST('shop');
$inhalt = $this->app->Secure->GetPOST('inhalt');
$sprache = $this->app->Secure->GetPOST('sprache');
$aktiv = $this->app->Secure->GetPOST('aktiv');
$template = $this->app->Secure->GetPOST('template');
$finalparse = $this->app->Secure->GetPOST('finalparse');
$navigation = $this->app->Secure->GetPOST('navigation');
$datum = $this->app->Secure->GetPOST('datum');
$sichtbarbis = $this->app->Secure->GetPOST('sichtbarbis');
$title = $this->app->Secure->GetPOST('title');
$kurztext = $this->app->Secure->GetPOST('kurztext');
$html = $this->app->Secure->GetPOST('html');
$description = $this->app->Secure->GetPOST('description');
$keywords = $this->app->Secure->GetPOST('keywords');
$saveform = $this->app->Secure->GetPOST('saveform');
$submit = $this->app->Secure->GetPOST('inhalt_submit');
if($submit!='' && $saveform=='1') {
$shopid = $this->app->DB->Select("SELECT id FROM shopexport WHERE bezeichnung='$shop' LIMIT 1");
$error = "";
if(trim($shop)=='') $error .= "W&auml;hlen sie bitte einen Online-Shop aus<br>";
if(trim($inhalt)=='') $error.= 'Geben Sie bitte einen internen Bezeichner ein';
else {
$exists = $this->app->DB->Select("SELECT '1' FROm inhalt WHERE inhalt='$inhalt' AND sprache='$sprache' AND shop='$shopid' LIMIT 2");
if($exists=='2') $error .= 'Der eingegebene Bezeichner wird bereits verwendet<br>';
}
if($error=='') {
$datum_new = $this->app->erp->ReplaceDatum(true, $datum);
$sichtbarbis_new = $this->app->erp->ReplaceDatum(true, $sichtbarbis);
$html_new = htmlentities($html);
$this->app->DB->Insert("INSERT INTO inhalt (sprache, inhalt, kurztext, html, title, description, keywords, inhaltstyp, sichtbarbis, datum, aktiv, shop, template, finalparse, navigation)
VALUES ('$sprache','$inhalt','$kurztext','$html_new','$title','$description','$keywords','$inhaltstyp','$sichtbarbis_new','$datum_new','$aktiv',#
'$shopid','$template','$finalparse','$navigation')");
$this->app->Tpl->Set('MESSAGE', "<div class=\"success\">Der Shop-Inhalt konnte erfolgreich erstellt werden.</div>");
}else
$this->app->Tpl->Set('MESSAGE', "<div class=\"error\">$error</div>");
}
$this->SetForm($inhaltstyp, $shop, $inhalt, $sprache, $aktiv, $template, $finalparse,
$navigation, $datum, $sichtbarbis, $title, $kurztext, $html, $description, $keywords);
switch($inhaltstyp) {
case 'email': $template = 'inhalt_create_email.tpl'; break;
case 'group': $template = 'inhalt_create_group.tpl'; break;
case 'teaser': $template = 'inhalt_create_teaser_news.tpl'; break;
case 'news': $template = 'inhalt_create_teaser_news.tpl'; break;
default: $template = 'inhalt_create_page.tpl';
}
$this->app->Tpl->Parse('INHALTJAVASCRIPT', 'inhalt_javascript.tpl');
$this->app->Tpl->Parse('PAGE', $template);
}
function InhaltEdit()
{
$this->app->Tpl->Set('UEBERSCHRIFT',"Inhalt editieren");
$this->app->erp->Headlines('Inhalt', 'editieren');
$this->app->erp->MenuEintrag("index.php?module=inhalt&action=list","Zur&uuml;ck zur &Uuml;bersicht");
$id = $this->app->Secure->GetGET('id');
$inhaltstyp = $this->app->Secure->GetPOST('inhaltstyp');
$shop = $this->app->Secure->GetPOST('shop');
$inhalt = $this->app->Secure->GetPOST('inhalt');
$sprache = $this->app->Secure->GetPOST('sprache');
$aktiv = $this->app->Secure->GetPOST('aktiv');
$template = $this->app->Secure->GetPOST('template');
$finalparse = $this->app->Secure->GetPOST('finalparse');
$navigation = $this->app->Secure->GetPOST('navigation');
$datum = $this->app->Secure->GetPOST('datum');
$sichtbarbis = $this->app->Secure->GetPOST('sichtbarbis');
$title = $this->app->Secure->GetPOST('title');
$kurztext = $this->app->Secure->GetPOST('kurztext');
$html = $this->app->Secure->GetPOST('html');
$description = $this->app->Secure->GetPOST('description');
$keywords = $this->app->Secure->GetPOST('keywords');
$saveform = $this->app->Secure->GetPOST('saveform');
$submit = $this->app->Secure->GetPOST('inhalt_submit');
$error = '';
if($submit!='' && $saveform=='1') {
if(trim($shop)=='') $error .= "W&auml;hlen sie bitte einen Online-Shop aus<br>";
if(trim($inhalt)=='') $error.= 'Geben Sie bitte einen internen Bezeichner ein';
if($error=='') {
$shopid = $this->app->DB->Select("SELECT id FROM shopexport WHERE bezeichnung='$shop' LIMIT 1");
$datum_new = $this->app->erp->ReplaceDatum(true, $datum);
$sichtbarbis_new = $this->app->erp->ReplaceDatum(true, $sichtbarbis);
$html_new = $html;
$this->app->DB->Update("UPDATE inhalt SET sprache='$sprache', inhalt='$inhalt', kurztext='$kurztext', html='$html_new', title='$title', description='$description', keywords='$keywords',
inhaltstyp='$inhaltstyp', sichtbarbis='$sichtbarbis_new', datum='$datum_new', aktiv='$aktiv', shop='$shopid', template='$template', finalparse='$finalparse',
navigation='$navigation' WHERE id='$id' LIMIT 1");
$this->app->Tpl->Set('MESSAGE', "<div class=\"success\">Der Shop-Inhalt wurde erfolgreich aktualisiert.</div>");
}else
$this->app->Tpl->Set('MESSAGE', "<div class=\"error\">$error</div>");
}
$data = $this->app->DB->SelectArr("SELECT * FROM inhalt WHERE id='$id' LIMIT 1");
$shopname = $this->app->DB->Select("SELECT bezeichnung FROM shopexport WHERE id='{$data[0]['shop']}' LIMIT 1");
$typ = (($inhaltstyp=='')?$data[0]['inhaltstyp']:$inhaltstyp);
$this->SetForm($typ, $shopname, $data[0]['inhalt'], $data[0]['sprache'], $data[0]['aktiv'], $data[0]['template'], $data[0]['finalparse'], $data[0]['navigation'],
$this->app->erp->ReplaceDatum(false, $data[0]['datum']), $this->app->erp->ReplaceDatum(false, $data[0]['sichtbarbis']), $data[0]['title'], $data[0]['kurztext'],
htmlspecialchars_decode($data[0]['html']), $data[0]['description'], $data[0]['keywords']);
switch($typ) {
case 'email': $template = 'inhalt_create_email.tpl'; break;
case 'group': $template = 'inhalt_create_group.tpl'; break;
case 'teaser': $template = 'inhalt_create_teaser_news.tpl'; break;
case 'news': $template = 'inhalt_create_teaser_news.tpl'; break;
default: $template = 'inhalt_create_page.tpl';
}
$this->app->Tpl->Parse('INHALTJAVASCRIPT', 'inhalt_javascript.tpl');
$this->app->Tpl->Parse('PAGE', $template);
}
function SetForm($inhaltstyp, $shop, $inhalt, $sprache, $aktiv, $template, $finalparse, $navigation, $datum, $sichtbarbis, $title, $kurztext, $html, $description, $keywords)
{
$this->app->YUI->DatePicker("datum");
$this->app->YUI->DatePicker("sichtbarbis");
$this->app->erp->GetNavigationSelect($shop);
$this->app->YUI->AutoComplete("shop","shopname");
$this->app->Tpl->Set('INHALTSTYPSELECT', $this->InhaltstypSelect($inhaltstyp));
$this->app->Tpl->Set('SHOP', $shop);
$this->app->Tpl->Set('INHALT', $inhalt);
$this->app->Tpl->Set('SPRACHESELECT', $this->SpracheSelect($sprache));
$this->app->Tpl->Set('AKTIVCHECKED', (($aktiv=='1')?'checked':''));
$this->app->Tpl->Set('TEMPLATE', $template);
$this->app->Tpl->Set('FINALPARSE', $finalparse);
$this->app->Tpl->Set('NAVIGATIONSELECT', $this->NavigationSelect($shop, $navigation));
$this->app->Tpl->Set('DATUM', $datum);
$this->app->Tpl->Set('SICHTBARBIS', $sichtbarbis);
$this->app->Tpl->Set('TITLE', $title);
$this->app->Tpl->Set('KURZTEXT', $kurztext);
$this->app->Tpl->Set('LANGTEXT', $html);
$this->app->Tpl->Set('DESCRIPTION', $description);
$this->app->Tpl->Set('KEYWORDS', $keywords);
}
function InhaltDelete()
{
$id = $this->app->Secure->GetGET('id');
if(is_numeric($id)){
$this->app->DB->Delete("DELETE FROM inhalt WHERE id='$id' LIMIT 1");
}
$ref = $_SERVER['HTTP_REFERER'];
if(empty($ref)) {
$ref = 'index.php?module=inhalt&action=list';
}
$this->app->Location->execute($ref);
}
function InhaltList()
{
$this->app->Tpl->Set('UEBERSCHRIFT',"Inhalte");
$this->app->erp->Headlines("Inhalte");
$this->app->erp->MenuEintrag("index.php?module=inhalt&action=create","Neuen Inhalt anlegen");
$this->app->erp->MenuEintrag("index.php","Zur&uuml;ck zur &Uuml;bersicht");
$this->app->YUI->TableSearch('TAB1','inhaltsseiten', 'show','','',basename(__FILE__), __CLASS__);
$this->app->Tpl->Parse('PAGE','inhalt_list.tpl');
}
function InhaltListShop()
{
$shop = $this->app->Secure->GetGET('id');
$this->app->Tpl->Set('UEBERSCHRIFT','Shopexport');
$this->app->erp->Headlines('Shopexport');
$this->app->erp->MenuEintrag("index.php?module=shopexport&action=export&id=$shop","Export");
$this->app->erp->MenuEintrag("index.php?module=shopexport&action=navigationtab&id=$shop","Navigation");
$this->app->erp->MenuEintrag("index.php?module=shopexport&action=artikelgruppen&id=$shop","Artikelgruppen");
$this->app->erp->MenuEintrag("index.php?module=shopexport&action=dateien&id=$shop","Dateien");
$this->app->erp->MenuEintrag("index.php?module=shopexport&action=live&id=$shop","Live-Status");
$this->app->erp->MenuEintrag("index.php?module=inhalt&action=listshop&id=$shop","Inhalte / E-Mailvorlagen");
$this->app->erp->MenuEintrag("index.php?module=onlineshops&action=edit&id=$shop&menu=1","Einstellungen");
$this->app->erp->MenuEintrag("index.php?module=shopexport&action=list","Zurück zur Übersicht");
$this->app->YUI->TableSearch('TAB1','inhaltsseitenshop', 'show','','',basename(__FILE__), __CLASS__);
$this->app->Tpl->Parse('PAGE','inhalt_list.tpl');
}
function InhaltMenu()
{
$this->app->erp->Headlines('Inhalte');
$this->app->erp->MenuEintrag("index.php?module=inhalt&action=create","Inhalt anlegen");
if($this->app->Secure->GetGET('action')==='list'){
$this->app->erp->MenuEintrag("index.php?module=einstellungen&action=list", "Zur&uuml;ck zur &Uuml;bersicht");
}
else{
$this->app->erp->MenuEintrag("index.php?module=inhalt&action=list", "Zur&uuml;ck zur &Uuml;bersicht");
}
}
function InhaltstypSelect($select='')
{
$options = array('page'=>'HTML-Seite', 'email'=>'E-Mail Vorlage', 'group'=>'Artikelgruppe', 'teaser'=>'Teaser', 'news'=>'Newsmeldung');
$out = '';
foreach($options as $key=>$value) {
$selected = (($select==$key)?'selected':'');
$out .= "<option value=\"$key\" $selected>$value</option>";
}
return $out;
}
function SpracheSelect($select='')
{
$options = array('de'=>'Deutsch','en'=>'Englisch');
$out = '';
foreach($options as $key=>$value) {
$selected = (($select==$key)?'selected':'');
$out .= "<option value=\"$key\" $selected>$value</option>";
}
return $out;
}
function NavigationSelect($shop, $select='')
{
if($shop=='') {
return '<option value=""> -- Bitte Shop ausw&auml;hlen --</option>';
}
$shopid = $this->app->DB->Select("SELECT id FROM shopexport WHERE bezeichnung='$shop' LIMIT 1");
if(is_numeric($shopid) && $shopid>0)
{
$oberpunkte = $this->app->DB->SelectArr("SELECT id, bezeichnung, bezeichnung_en, plugin,pluginparameter FROM shopnavigation WHERE parent=0 AND shop='$shopid' ORDER BY position");
$tmp = array();
foreach($oberpunkte as $punkt)
{
$tmp["{$punkt["id"]}"]=$punkt["bezeichnung"];
$unterpunkte = $this->app->DB->SelectArr("SELECT id, bezeichnung, bezeichnung_en, plugin,pluginparameter FROM shopnavigation WHERE parent='".$punkt["id"]."' AND shop='$shopid' ORDER BY position");
foreach($unterpunkte as $upunkt)
$tmp["{$upunkt["id"]}"]="&nbsp;&nbsp;&nbsp;".$upunkt["bezeichnung"];
}
if((!empty($tmp)?count($tmp):0) < 1) return '<option value=""> -- Keine Navigation vorhanden --</option>';
$out = '';
foreach($tmp as $key=>$value) {
$selected = (($select==$key)?'selected':'');
$out .= "<option value=\"$key\" $selected>$value</option>";
}
return $out;
}
return '<option value=""> -- Bitte Shop ausw&auml;hlen --</option>';
}
}