diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-09-10 17:25:43 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-09-10 17:25:43 +0000 |
commit | 310c2ce98fc8c0e94559c9ed8587101d92f6e853 (patch) | |
tree | 7093065a133e434fb7e551803e8700661d04c5bb /inc/footer.php |
add total system
git-svn-id: svn://svn.cccv.de/engel-system@1 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'inc/footer.php')
-rwxr-xr-x | inc/footer.php | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/inc/footer.php b/inc/footer.php new file mode 100755 index 00000000..9ab6b32c --- /dev/null +++ b/inc/footer.php @@ -0,0 +1,123 @@ +<?PHP + +if( $Page["ShowTabel"]=="Y" ) +{ +//############################### ShowTable Start ############################## + +?> + + + +<!-- anfang des footers //--> + + + + + <br> + <p align="center"> + <?PHP If (IsSet($_SESSION['oldurl'])) + echo "<a href=\"".$oldurl."\">".Get_Text(11)."</a> "; + ?> + <a href="#top"><?PHP echo Get_Text(12); ?></a> + </p> + </td> + </tr> +</table> + </td> + + + + +<!-- 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"); + +ShowMenu( $Menu ); +echo "<br>"; +ShowMenu( $MenuAdmin ); + +echo "<br>"; + +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 //--> + + + + </tr> + <tr> + <td colspan="2"> + <h5 align="center"> © copyleft - <a href="mailto:erzengel@lists.ccc.de">Kontakt</a></h5> + </td> + </tr> +</table> + +<!-- </div> --> +<?php mysql_close($con); ?> +</div> + + +<? +//############################### ShowTable Start ############################## +} /* if (ShowTabel....*/ +?> + + +</BODY> +</HTML> |