50 lines
1.3 KiB
PHP
50 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://Server/Path1-".$wo."/Path2/".$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>';
|
|
?>
|