summaryrefslogtreecommitdiff
path: root/www-ssl/nonpublic/schichtplan.1.php
diff options
context:
space:
mode:
Diffstat (limited to 'www-ssl/nonpublic/schichtplan.1.php')
-rwxr-xr-xwww-ssl/nonpublic/schichtplan.1.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/www-ssl/nonpublic/schichtplan.1.php b/www-ssl/nonpublic/schichtplan.1.php
new file mode 100755
index 00000000..d284b66d
--- /dev/null
+++ b/www-ssl/nonpublic/schichtplan.1.php
@@ -0,0 +1,20 @@
+<h4>&nbsp;Tage </h4>
+
+<?
+
+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(
+
+foreach( $VeranstaltungsTage as $k => $v)
+{
+ Printlink( $v);
+}
+
+?>