kompletter umbau euf ein dynamiesches menue
git-svn-id: svn://svn.cccv.de/engel-system@188 29ba0400-6e00-0410-a75a-ca02368028f8
This commit is contained in:
parent
b91450e558
commit
9c1117aae6
1008
DB/Sprache.sql
1008
DB/Sprache.sql
File diff suppressed because it is too large
Load Diff
|
@ -32,9 +32,12 @@
|
|||
set_error_handler("Error_Handler");
|
||||
|
||||
ini_set( "error_reporting", E_ALL);
|
||||
if( $DEBUG)
|
||||
{
|
||||
ini_set( "display_errors", "On");
|
||||
ini_set( "display_startup_errors", "On");
|
||||
ini_set( "html_errors", "On");
|
||||
}
|
||||
|
||||
// send errors
|
||||
function send_errors()
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?PHP
|
||||
|
||||
|
||||
function Get_Text ($TextID)
|
||||
function Get_Text ($TextID, $NoError=FALSE)
|
||||
{
|
||||
GLOBAL $con, $error_messages;
|
||||
GLOBAL $con, $error_messages, $DEBUG;
|
||||
|
||||
if( !isset($_SESSION['Sprache']))
|
||||
$_SESSION['Sprache'] = "EN";
|
||||
|
@ -17,6 +17,8 @@ function Get_Text ($TextID)
|
|||
|
||||
if( mysql_num_rows( $Erg) == 1)
|
||||
return (@mysql_result($Erg, 0, "Text"));
|
||||
elseif( $NoError && !$DEBUG)
|
||||
return "";
|
||||
else
|
||||
{
|
||||
array_push($error_messages, "Get_Text, '$TextID' found ". mysql_num_rows( $Erg). "x in Sprache Database Table for Language (".$_SESSION['Sprache'].")\n");
|
||||
|
@ -25,27 +27,9 @@ function Get_Text ($TextID)
|
|||
|
||||
}
|
||||
|
||||
function Print_Text ($TextID)
|
||||
function Print_Text ($TextID, $NoError=FALSE)
|
||||
{
|
||||
GLOBAL $con, $error_messages;
|
||||
|
||||
if( !isset($_SESSION['Sprache']))
|
||||
$_SESSION['Sprache'] = "EN";
|
||||
if( $_SESSION['Sprache']=="")
|
||||
$_SESSION['Sprache']="EN";
|
||||
if( isset($_GET["SetLanguage"]))
|
||||
$_SESSION['Sprache']= $_GET["SetLanguage"];
|
||||
|
||||
$SQL = "SELECT * FROM `Sprache` WHERE TextID=\"$TextID\" AND Sprache ='".$_SESSION['Sprache']."'";
|
||||
@$Erg = mysql_query($SQL, $con);
|
||||
|
||||
if( mysql_num_rows( $Erg) == 1)
|
||||
echo nl2br(@mysql_result($Erg, 0, "Text"));
|
||||
else
|
||||
{
|
||||
array_push($error_messages, "Get_Text, '$TextID' found ". mysql_num_rows( $Erg). "x in Sprache Database Table for Language (".$_SESSION['Sprache'].")\n");
|
||||
echo "Error Data, '$TextID' found ". mysql_num_rows( $Erg). "x";
|
||||
}
|
||||
echo Get_Text ($TextID, $NoError);
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
@ -1,42 +1,40 @@
|
|||
<?PHP
|
||||
|
||||
function ShowMenu( $Menu )
|
||||
function ShowMenu( $MenuName)
|
||||
{
|
||||
if( !isset($Menu["Entry"]) ) return;
|
||||
global $MenueTableStart, $MenueTableEnd, $_SESSION, $DEBUG, $url, $ENGEL_ROOT;
|
||||
$Gefunden=FALSE;
|
||||
|
||||
global $MenueTableStart, $MenueTableEnd, $_SESSION, $DEBUG;
|
||||
//Überschift
|
||||
$Text = "<h4 class=\"menu\">". Get_Text("$MenuName/"). "</h4>";
|
||||
|
||||
echo $MenueTableStart;
|
||||
echo "<h4 class=\"menu\">". $Menu["Name"]. "</h4>";
|
||||
|
||||
foreach( $Menu["Entry"] as $Entry )
|
||||
//einträge
|
||||
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) ) )
|
||||
{
|
||||
//wenn File mit ../ beginnt wird "../" abgeschnitten und der Ordener weggelassen
|
||||
if( strstr( $Entry["File"], "../" ) != FALSE )
|
||||
$MenuFile = substr( $Entry["File"], strpos( $Entry["File"], "../" )+ 3) ;
|
||||
else
|
||||
$MenuFile = $Menu["Path"]. $Entry["File"];
|
||||
$TempName = Get_Text($Key, TRUE);
|
||||
if(( TRUE||$DEBUG) && (strlen($TempName)==0) )
|
||||
$TempName = "not found: \"$Key\"";
|
||||
|
||||
if( $_SESSION['CVS'][$MenuFile] == "Y")
|
||||
if( $Entry == "Y")
|
||||
{
|
||||
echo "\t\t\t<li><a href=\"". $Entry["File"]. "\">". $Entry["Name"]. "</a></li>\n";
|
||||
if( isset($Entry["Line"]))
|
||||
echo $Entry["Line"];
|
||||
//zum absichtlkichen ausblenden von einträgen
|
||||
if( strlen($TempName)>1)
|
||||
{
|
||||
$Gefunden = TRUE;
|
||||
$Text .= "\t\t\t<li><a href=\"". $url. substr( $ENGEL_ROOT, 1). $Key. "\">$TempName</a></li>\n";
|
||||
}
|
||||
|
||||
//DEBUG
|
||||
if( $DEBUG )
|
||||
}
|
||||
elseif( $DEBUG )
|
||||
{
|
||||
if( !isset($_SESSION['CVS'][$MenuFile] ) )
|
||||
echo "ERROR CVS: '". $MenuFile. "' not set";
|
||||
|
||||
if( $_SESSION['CVS'][$MenuFile] != "Y")
|
||||
echo "\t\t\t<li>". $Entry["File"]. " (". $Entry["Name"]. ")</li>\n";
|
||||
} // DEBUG
|
||||
} //foreach
|
||||
|
||||
echo $MenueTableEnd;
|
||||
} //function ShowMenue
|
||||
|
||||
$Gefunden = TRUE;
|
||||
$Text .= "\t\t\t<li>$TempName ($Key)</li>\n";
|
||||
}
|
||||
}
|
||||
if( $Gefunden)
|
||||
echo $MenueTableStart.$Text.$MenueTableEnd;
|
||||
}//function ShowMenue
|
||||
|
||||
?>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?PHP
|
||||
include ("./inc/error_handler.php");
|
||||
include ("./inc/config.php");
|
||||
include ("./inc/error_handler.php");
|
||||
include ("./inc/config_db.php");
|
||||
include ("./inc/funktion_lang.php");
|
||||
include ("./inc/funktion_menu.php");
|
||||
|
|
|
@ -11,20 +11,14 @@ $MenueTableEnd="
|
|||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</table><br>
|
||||
";
|
||||
|
||||
include("./menu.php");
|
||||
|
||||
if( isset( $Menu))
|
||||
{
|
||||
ShowMenu( $Menu );
|
||||
echo "<br>";
|
||||
}
|
||||
if( isset( $MenuAdmin))
|
||||
ShowMenu( $MenuAdmin );
|
||||
|
||||
echo "<br>";
|
||||
ShowMenu("");
|
||||
ShowMenu("nonpublic");
|
||||
ShowMenu("admin");
|
||||
|
||||
if( !isset($submenus))
|
||||
$submenus = 0;
|
||||
|
|
Loading…
Reference in New Issue