mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 18:02:18 +00:00
115 lines
3.5 KiB
PHP
115 lines
3.5 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
|
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
|
* Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
|
|
*/
|
|
/*
|
|
* Erstelle eine Liste mit allen Personen die innerhalb der naechsten 2
|
|
* Wochen eine Zeitsperre eingetragen haben
|
|
*/
|
|
|
|
require_once('../../../config/cis.config.inc.php');
|
|
require_once('../../../include/globals.inc.php');
|
|
require_once('../../../include/functions.inc.php');
|
|
require_once('../../../include/person.class.php');
|
|
require_once('../../../include/benutzer.class.php');
|
|
require_once('../../../include/mitarbeiter.class.php');
|
|
require_once('../../../include/studiensemester.class.php');
|
|
require_once('../../../include/zeitsperre.class.php');
|
|
require_once('../../../include/datum.class.php');
|
|
require_once('../../../include/phrasen.class.php');
|
|
require_once('../../../include/sprache.class.php');
|
|
|
|
$datum_obj = new datum();
|
|
|
|
$days=trim((isset($_REQUEST['days']) && is_numeric($_REQUEST['days'])?$_REQUEST['days']:14));
|
|
|
|
$datum_beginn=date('Y-m-d');
|
|
$ts_beginn=$datum_obj->mktime_fromdate($datum_beginn);
|
|
$ts_ende=$datum_obj->jump_day($ts_beginn,$days);
|
|
$datum_ende=date('Y-m-d',$ts_ende);
|
|
|
|
// Lektoren holen
|
|
$ma=new mitarbeiter();
|
|
$mitarbeiter=$ma->getMitarbeiterZeitsperre($datum_beginn,$datum_ende);
|
|
|
|
$sprache = getSprache();
|
|
$p = new phrasen($sprache);
|
|
$sprache_obj = new sprache();
|
|
$sprache_obj->load($sprache);
|
|
$sprache_index=$sprache_obj->index;
|
|
|
|
echo '
|
|
<html>
|
|
<head>
|
|
<title>'.$p->t('zeitsperre/zeitsperren').'</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="../../../skin/style.css.php" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
<H1>'.$p->t('zeitsperre/zeitsperren').'</H1>
|
|
|
|
<H3>'.$p->t('zeitsperre/zeitsperreVonBis',array($datum_beginn, $datum_ende)).'</H3>
|
|
<TABLE id="zeitsperren">
|
|
<TR>';
|
|
|
|
echo '<th>'.$p->t('zeitsperre/monat').'<br>'.$p->t('zeitsperre/tag').'</th>';
|
|
for ($ts=$ts_beginn;$ts<=$ts_ende; $ts+=$datum_obj->ts_day)
|
|
{
|
|
$tag=date('d',$ts);
|
|
$wt=date('N',$ts);
|
|
$monat=date('M',$ts);
|
|
|
|
if ($wt==6 || $wt==7)
|
|
$class='feiertag';
|
|
else
|
|
$class='';
|
|
|
|
echo "<th class='$class'><div align=\"center\">".$tagbez[$sprache_index][$wt]."<BR>$monat<br>$tag</div></th>";
|
|
}
|
|
|
|
echo '</TR>';
|
|
|
|
$zs=new zeitsperre();
|
|
foreach ($mitarbeiter as $ma)
|
|
{
|
|
$zs->getzeitsperren($ma->uid);
|
|
echo '<TR>';
|
|
echo "<td>$ma->nachname $ma->vorname</td>";
|
|
for ($ts=$ts_beginn;$ts<=$ts_ende; $ts+=$datum_obj->ts_day)
|
|
{
|
|
$tag=date('d',$ts);
|
|
$monat=date('M',$ts);
|
|
$wt=date('N',$ts);
|
|
if ($wt==6 || $wt==7)
|
|
$class='feiertag';
|
|
else
|
|
$class='';
|
|
$grund=$zs->getTyp($ts);
|
|
$erbk=$zs->getErreichbarkeit($ts);
|
|
echo "<td class='$class'>$grund<br>$erbk</td>";
|
|
}
|
|
echo '</TR>';
|
|
}
|
|
|
|
echo ' </TABLE>
|
|
</body>
|
|
</html>';
|
|
?>
|