Firma2-Essensplan/speiseplan_link.php
Gehirnfussel 99fa678533 1.0.1 - Bugfix Update
Changed from
"Header Location…"
to a javascript redirect due to complications with IE8. :(
2013-11-14 16:50:03 +01:00

49 lines
1.3 KiB
PHP

<?php
#¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
# version......: 1.0.1
# last.change..: 2013-11-14
# created.by...: Jan Jastrow
# contact......: jan@schwerkraftlabor.de
# license......: MIT license
# soure........: https://github.com/Gehirnfussel/Firma2-Essensplan
#_________________
# Kalenderwoche ermitteln
$kw = (int)date('W');
# Wenn Kalenderwoche <= 9 dann füge eine 0 vorne dran.
if ($kw <= 9)
$kw = "0".$kw;
# 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://rdbs124/Tausch/Info/Speisepläne/KKH-".$wo."/Personalspeiseplan/".$kw."-KW.pdf";
# Direkte Weiterleitung zum entsprechenden Speiseplan
echo '<!doctype html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
<title>Speiseplan</title>
</head>
<body>
<script type="text/javascript">window.location = "'.$speiseplan.'"</script>
<p>Es erfolgt eine automatische Weiterleitung zum aktuellen Speiseplan.<br />
Falls ein Fehler auftritt, bitte <a href="'.$speiseplan.'">hier</a> klicken.</p>
</body>
</html>';
?>