summaryrefslogtreecommitdiff
path: root/www-ssl/inc
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-21 18:45:08 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-21 18:45:08 +0000
commite3fc6ba2d1672526088d70c62daa7961b540e1f7 (patch)
tree3a069aa72e290722e3ac1475ac7e73c914833ca2 /www-ssl/inc
parent375d4143d1f5f8ad2c39597160fa1d0282e322ae (diff)
menu links oder rechts
git-svn-id: svn://svn.cccv.de/engel-system@76 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc')
-rwxr-xr-xwww-ssl/inc/footer.php69
-rwxr-xr-xwww-ssl/inc/header.php5
-rwxr-xr-xwww-ssl/inc/menu.php71
3 files changed, 77 insertions, 68 deletions
diff --git a/www-ssl/inc/footer.php b/www-ssl/inc/footer.php
index 5e193086..84efb6cd 100755
--- a/www-ssl/inc/footer.php
+++ b/www-ssl/inc/footer.php
@@ -29,76 +29,9 @@ if( $Page["ShowTabel"]=="Y" )
<!-- anfang des menue parts //-->
-
-
- <td width="160" valign="top">
-<?
-$MenueTableStart="
-<table align=\"center\" class=\"border\" cellpadding=\"3\" cellspacing=\"1\">
- <tr>
- <td width=\"160\" class=\"menu\">
-";
-$MenueTableEnd="
- <br>
- </td>
- </tr>
-</table>
-";
-
-include("./inc/funktion_menu.php");
-include("./menu.php");
-
-if( isset( $Menu))
-{
- ShowMenu( $Menu );
- echo "<br>";
-}
-if( isset( $MenuAdmin))
- ShowMenu( $MenuAdmin );
-
-echo "<br>";
-
-if( !isset($submenus))
- $submenus = 0;
-
-if ($submenus >= 1 ) {
- $inc_name=$_SERVER['PHP_SELF'];
- $filenamepos=strrpos($inc_name, '/');
- $filenamepos+=1;
- $filename = substr ($inc_name, $filenamepos );
- $filepost = substr ($filename, 0, -4);
- $filepre = substr ($filename, -4 );
- $verzeichnis = substr ($inc_name, 0 , $filenamepos);
-
- for ($index_nummer=1; $index_nummer <= $submenus; $index_nummer++) {
-?>
-<table align="center" class="border" cellpadding="3" cellspacing="1">
- <tr>
- <td width="160" class="menu">
- <?php include ("./".$filepost.".".$index_nummer.$filepre); ?>
- </td>
- </tr>
-</table>
-
-<br>
-<?
- }
-}
-
-if( isset($_SESSION['UID']))
-{
-?>
-<table align="center" class="border" cellpadding="3" cellspacing="1">
- <tr>
- <td width="160" class="menu">
- <?php include("./inc/funktion_activeUser.php"); ?>
- </td>
- </tr>
-</table>
<?
-}
+if( $_SESSION['Menu'] =="R") include("./inc/menu.php");
?>
-
</td>
diff --git a/www-ssl/inc/header.php b/www-ssl/inc/header.php
index efeded4e..b9b8de29 100755
--- a/www-ssl/inc/header.php
+++ b/www-ssl/inc/header.php
@@ -2,6 +2,7 @@
include ("./inc/config.php");
include ("./inc/db.php");
include ("./inc/funktion_lang.php");
+include("./inc/funktion_menu.php");
session_start();
include ("./inc/secure.php");
/*if ( (!IsSet($_SESSION['UID'])) && (strstr ($_SERVER['PHP_SELF'], "nonpublic") !="" ) ) {
@@ -72,6 +73,10 @@ if( $Page["ShowTabel"]=="Y" )
<p>
<table width="95%" align="center" border="0" cellpadding="7" cellspacing="0">
<tr>
+<?
+if( !isset($_SESSION['Menu'])) $_SESSION['Menu'] = "L";
+if( $_SESSION['Menu'] =="L") include("./inc/menu.php");
+?>
<td valign="top" align="center">
<table border="0" width="100%" align="center" class="border" cellpadding="5" cellspacing="1">
<tr class="contenttopic">
diff --git a/www-ssl/inc/menu.php b/www-ssl/inc/menu.php
new file mode 100755
index 00000000..61247329
--- /dev/null
+++ b/www-ssl/inc/menu.php
@@ -0,0 +1,71 @@
+
+<!-- anfang des menue parts //-->
+ <td width="160" valign="top">
+<?
+$MenueTableStart="
+<table align=\"center\" class=\"border\" cellpadding=\"3\" cellspacing=\"1\">
+ <tr>
+ <td width=\"160\" class=\"menu\">
+";
+$MenueTableEnd="
+ <br>
+ </td>
+ </tr>
+</table>
+";
+
+include("./menu.php");
+
+if( isset( $Menu))
+{
+ ShowMenu( $Menu );
+ echo "<br>";
+}
+if( isset( $MenuAdmin))
+ ShowMenu( $MenuAdmin );
+
+echo "<br>";
+
+if( !isset($submenus))
+ $submenus = 0;
+
+if ($submenus >= 1 ) {
+ $inc_name=$_SERVER['PHP_SELF'];
+ $filenamepos=strrpos($inc_name, '/');
+ $filenamepos+=1;
+ $filename = substr ($inc_name, $filenamepos );
+ $filepost = substr ($filename, 0, -4);
+ $filepre = substr ($filename, -4 );
+ $verzeichnis = substr ($inc_name, 0 , $filenamepos);
+
+ for ($index_nummer=1; $index_nummer <= $submenus; $index_nummer++) {
+?>
+<table align="center" class="border" cellpadding="3" cellspacing="1">
+ <tr>
+ <td width="160" class="menu">
+ <?php include ("./".$filepost.".".$index_nummer.$filepre); ?>
+ </td>
+ </tr>
+</table>
+
+<br>
+<?
+ }
+}
+
+if( isset($_SESSION['UID']))
+{
+?>
+<table align="center" class="border" cellpadding="3" cellspacing="1">
+ <tr>
+ <td width="160" class="menu">
+ <?php include("./inc/funktion_activeUser.php"); ?>
+ </td>
+ </tr>
+</table>
+<?
+}
+?>
+ </td>
+
+<!-- ende des menue parts //-->