summaryrefslogtreecommitdiff
path: root/www-ssl_old/nonpublic/schichtplan.1.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 /www-ssl_old/nonpublic/schichtplan.1.php
parent89fd736f36dc89becacc30dc250d7a3e93e9569f (diff)
moved public files to public, old and yet untouched files to directories ending with _old
Diffstat (limited to 'www-ssl_old/nonpublic/schichtplan.1.php')
-rw-r--r--www-ssl_old/nonpublic/schichtplan.1.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/www-ssl_old/nonpublic/schichtplan.1.php b/www-ssl_old/nonpublic/schichtplan.1.php
new file mode 100644
index 00000000..9c99c6ca
--- /dev/null
+++ b/www-ssl_old/nonpublic/schichtplan.1.php
@@ -0,0 +1,20 @@
+<h4>&nbsp;Tage </h4>
+
+<?PHP
+require_once ('../bootstrap.php');
+
+include ("includes/funktion_schichtplan_aray.php");
+
+function Printlink($Datum) {
+ GLOBAL $raum;
+ echo "\t<li><a href='./schichtplan.php?ausdatum=$Datum";
+ // ist ein raum gesetzt?
+ if (IsSet ($raum))
+ echo "&raum=$raum";
+ echo "'>$Datum</a></li>\n";
+} //function Printlink(
+
+if (isset ($VeranstaltungsTage))
+ foreach ($VeranstaltungsTage as $k => $v)
+ Printlink($v);
+?>