diff options
Diffstat (limited to 'www-ssl/nonpublic/schichtplan.1.php')
-rwxr-xr-x | www-ssl/nonpublic/schichtplan.1.php | 20 |
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> 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); +} + +?> |