2005-09-10 19:25:43 +02:00
|
|
|
<h4> Tage </h4>
|
|
|
|
|
2005-11-30 23:13:38 +01:00
|
|
|
<?PHP
|
2011-06-01 14:48:31 +02:00
|
|
|
require_once ('../bootstrap.php');
|
2005-09-10 19:25:43 +02:00
|
|
|
|
2011-06-01 14:48:31 +02:00
|
|
|
include ("includes/funktion_schichtplan_aray.php");
|
2006-11-10 20:37:59 +01:00
|
|
|
|
2011-06-01 14:48:31 +02:00
|
|
|
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(
|
2005-10-22 01:00:29 +02:00
|
|
|
|
2011-06-01 14:48:31 +02:00
|
|
|
if (isset ($VeranstaltungsTage))
|
|
|
|
foreach ($VeranstaltungsTage as $k => $v)
|
|
|
|
Printlink($v);
|
2005-09-10 19:25:43 +02:00
|
|
|
?>
|