7fdd078e61
Cleaned up some data & HTML, added some CSS. Some preparations for 1.1
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
#¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
|
# version......: 1.0.2
|
|
# last.change..: 2013-11-15
|
|
# created.by...: Jan Jastrow
|
|
# contact......: jan@schwerkraftlabor.de
|
|
# license......: MIT license
|
|
# soure........: https://github.com/Gehirnfussel/Firma2-Essensplan
|
|
#_________________
|
|
|
|
# Gibt die Kalenderwoche des 31.12. des aktuellen Jahres aus
|
|
$max_kw = date("W",mktime(0,0,0,12,31,date("Y")));
|
|
|
|
# Kalenderwoche ermitteln
|
|
$kw = date('W');
|
|
|
|
# GET-Parameter auslesen
|
|
if(isset($_GET['wann']))
|
|
$wann = $_GET['wann'];
|
|
else
|
|
$wann = 0; # Standard: Aktuelle Woche (+0)
|
|
|
|
# Diese Woche + $wann
|
|
$kw = $kw + $wann;
|
|
|
|
# Standort auslesen
|
|
if(isset($_GET['wo']))
|
|
$wo = $_GET['wo'];
|
|
else
|
|
$wo = "RD"; # Standard: RD
|
|
|
|
# Pfad und Dateiname zum PDF
|
|
$speiseplan = "file://Server/Path1-".$wo."/Path2/".$kw."-KW.pdf";
|
|
|
|
# Direkte Weiterleitung zum entsprechenden Speiseplan
|
|
echo '<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta http-equiv="refresh" content="0; url='.$speiseplan.'" />
|
|
<title>Speiseplan</title>
|
|
<style type="text/css">
|
|
body {
|
|
background: #e0e0e0;
|
|
color: #333;
|
|
font-family: "Open Sans", Calibri, Helvetica, Arial, sans-serif;
|
|
font-size: 12pt;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- <script type="text/javascript">window.location = "'.$speiseplan.'"</script> -->
|
|
<p>Es erfolgt eine automatische Weiterleitung zum aktuellen Speiseplan…</p>
|
|
<p>Sollte diese nicht stattfinden, können Sie <a href="'.$speiseplan.'">hier klicken</a>, um zum aktuellen Speiseplan zu kommen.</p>
|
|
<p>Falls ein Fehler auftritt, wenden Sie sich bitte an Ihren Administrator.</p>
|
|
</body>
|
|
</html>';
|
|
?>
|