summaryrefslogtreecommitdiff
path: root/includes_old/header.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-06-13 18:05:51 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-06-13 18:05:51 +0200
commit04973d1fa148381978b1251d10118e6bab86f435 (patch)
tree39f5a304342054e9da8c0452866b4f6eb69f87af /includes_old/header.php
parent89fd736f36dc89becacc30dc250d7a3e93e9569f (diff)
moved public files to public, old and yet untouched files to directories ending with _old
Diffstat (limited to 'includes_old/header.php')
-rw-r--r--includes_old/header.php102
1 files changed, 102 insertions, 0 deletions
diff --git a/includes_old/header.php b/includes_old/header.php
new file mode 100644
index 00000000..9cd2e51d
--- /dev/null
+++ b/includes_old/header.php
@@ -0,0 +1,102 @@
+<?php
+include "header_start.php";
+
+echo "<!DOCTYPE html>\n";
+?>
+<html>
+<head>
+
+<title><?php echo $title; ?> - Engelsystem</title>
+<meta charset="UTF-8" />
+<meta http-equiv="content-type" content="text/html;charset=utf-8" />
+<meta name="content-style-type" content="text/css" />
+<meta name="keywords" content="Engel, Himmelsverwaltung" />
+<meta http-equiv="Content-Style-Type" content="text/css" />
+<meta http-equiv="expires" content="0" />
+<meta name="robots" content="index" />
+<meta name="revisit-after" content="1 days" />
+<script type="text/javascript" src="css/grossbild.js"></script>
+<link rel="stylesheet" type="text/css" href="css/base.css" />
+<link rel="stylesheet" type="text/css" href="css/style<?php echo isset($_SESSION['color']) ? $_SESSION['color'] : $default_theme ?>.css" />
+<link rel="stylesheet" type="text/css" href="../css/base.css" />
+<link rel="stylesheet" type="text/css" href="../css/style<?php echo isset($_SESSION['color']) ? $_SESSION['color'] : $default_theme ?>.css" />
+
+<?php
+if (isset ($reload)) {
+ if ($reload == "")
+ $reload = 3330;
+
+ echo "\n<meta http-equiv=\"refresh\" content=\"" . $reload . "; URL=./?reload=" . $reload . "\">\n";
+}
+
+if (isset ($Page["AutoReload"]))
+ echo "\n<meta http-equiv=\"refresh\" content=\"" . $Page["AutoReload"] .
+ "; URL=" . $url . $ENGEL_ROOT . $Page["Name"] . "\">\n";
+
+echo "</head>\n";
+
+/////////////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////// B O D Y
+/////////////////////////////////////////////////////////////////////////////////////////////
+echo "<body class=\"background\">\n";
+
+echo '<header><a href="' . $url . $ENGEL_ROOT . '" id="logo"></a></header>';
+
+//ausgabe new message
+if (isset ($_SESSION['CVS']["nonpublic/messages.php"])) {
+ if ($_SESSION['CVS']["nonpublic/messages.php"] == "Y") {
+ $SQL = "SELECT `Datum` FROM `Messages` WHERE `RUID`=" . $_SESSION["UID"] . " AND `isRead`='N'";
+ $erg = mysql_query($SQL, $con);
+ if (mysql_num_rows($erg) > 0)
+ echo "<br /><a href=\"" . $url . $ENGEL_ROOT .
+ "nonpublic/messages.php\">" . Get_Text("pub_messages_new1") .
+ " " . mysql_num_rows($erg) . " " .
+ Get_Text("pub_messages_new2") . "</a><br /><br />";
+ }
+}
+?>
+<div id="body">
+<div id="menu">
+<?php
+
+
+//ausgaeb Menu
+if (!isset ($_SESSION['Menu']))
+ $_SESSION['Menu'] = "L";
+if ($_SESSION['Menu'] == "L")
+ include ("menu.php");
+?>
+</div>
+<div id="content" class="container">
+<?php
+
+
+echo '<h1>' . (strlen($header) == 0 ? Get_Text($Page["Name"]) : $header) . '</h1>';
+echo '<article class="content">';
+
+if (isset ($_SESSION['UID'])) {
+ if (isset ($_SESSION['oldurl']))
+ $BACKUP_SESSION_OLDURL = $_SESSION['oldurl'];
+ if (isset ($_SESSION['newurl']))
+ $_SESSION['oldurl'] = $_SESSION['newurl'];
+ $_SESSION['newurl'] = $_SERVER["REQUEST_URI"];
+}
+
+function SetHeaderGo2Back() {
+ global $BACKUP_SESSION_OLDURL;
+ $_SESSION['oldurl'] = $BACKUP_SESSION_OLDURL;
+}
+
+if ($Page["CVS"] != "Y") {
+ echo "Du besitzt kein Rechte f&uuml;r diesen Bereich.<br />\n";
+
+ if (isset ($_SESSION['oldurl']))
+ echo "<a href=\"" . $_SESSION["oldurl"] . "\">hier</a> gehts zur&uuml;ck...\n";
+ else
+ echo "<a href=\"" . $url . $ENGEL_ROOT . "\">hier</a> geht's zur&uuml;ck...\n";
+
+ exit ();
+}
+?>
+
+<!-- ende des header parts //-->