2011-06-01 12:13:39 +02:00
|
|
|
|
<?php
|
|
|
|
|
function ShowMenu( $MenuName) {
|
|
|
|
|
global $MenueTableStart, $MenueTableEnd, $_SESSION, $debug, $url, $ENGEL_ROOT;
|
|
|
|
|
$Gefunden = false;
|
2008-09-10 05:42:44 +02:00
|
|
|
|
|
2011-06-01 12:13:39 +02:00
|
|
|
|
// Ueberschift
|
|
|
|
|
$Text = "<h4 class=\"menu\">". Get_Text("$MenuName/"). "</h4><ul>";
|
2008-09-10 05:42:44 +02:00
|
|
|
|
|
2011-06-01 12:13:39 +02:00
|
|
|
|
// Eintraege
|
|
|
|
|
foreach($_SESSION['CVS'] as $Key => $Entry)
|
|
|
|
|
if( strpos( $Key, ".php") > 0)
|
|
|
|
|
if( (strpos( "00$Key", "0$MenuName") > 0) ||
|
|
|
|
|
((strlen($MenuName)==0) && (strpos( "0$Key", "/") == 0) ) ) {
|
|
|
|
|
$TempName = Get_Text($Key, true);
|
|
|
|
|
|
|
|
|
|
if(( true||$debug) && (strlen($TempName)==0) )
|
|
|
|
|
$TempName = "not found: \"$Key\"";
|
|
|
|
|
|
|
|
|
|
if( $Entry == "Y") {
|
|
|
|
|
//zum absichtlkichen ausblenden von eintr<74>gen
|
|
|
|
|
if( strlen($TempName)>1) {
|
|
|
|
|
//sonderf<72>lle:
|
|
|
|
|
|
|
|
|
|
if( $Key=="admin/faq.php")
|
|
|
|
|
$TempName .= " (". noAnswer(). ")";
|
|
|
|
|
//ausgabe
|
|
|
|
|
$Text .= "\t\t\t<li><a href=\"". $url. $ENGEL_ROOT. $Key. "\">$TempName</a></li>\n";
|
|
|
|
|
$Gefunden = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
elseif( $debug )
|
|
|
|
|
{
|
|
|
|
|
$Gefunden = true;
|
|
|
|
|
$Text .= "\t\t\t<li>$TempName ($Key)</li>\n";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if( $Gefunden)
|
|
|
|
|
echo $MenueTableStart.$Text.$MenueTableEnd;
|
2008-09-10 05:42:44 +02:00
|
|
|
|
}//function ShowMenue
|
|
|
|
|
|
|
|
|
|
?>
|