mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 08:22:17 +00:00
FH-Complete Website überarbeitet. Arbeitet nun mit Stylesheet. Punkt "Community" eingefügt und Inhalt auf den neuesten Stand gebracht.
Ferienverwaltung in Vilesci eingefügt. Reihungstest Administration: Übersicht der Teilgebiete berechnet die Gesamtzeit, Link zu Auswertung und Fragenkatalog eingefügt. sync/sync_stpldev_stpl.php schreibt nun auch die Beginnzeit ins Update-Mail
This commit is contained in:
@@ -93,7 +93,6 @@ if($semester!='' && !is_numeric($semester))
|
||||
die('Semester ist ungueltig');
|
||||
if($prestudent_id!='' && !is_numeric($prestudent_id))
|
||||
die('PrestudentID ist ungueltig');
|
||||
//if(($reihungstest=='' && isset($_REQUEST['reihungstest'])) && ($studiengang=='' && isset($_REQUEST['studiengang'])) && ($semester=='' && isset($_REQUEST['semester'])) && ($prestudent_id=='' && isset($_REQUEST['prestudent'])) && ($datum_von=='' && isset($_REQUEST['datum_von'])) && ($datum_bis=='' && isset($_REQUEST['datum_bis'])))
|
||||
if(($reihungstest=='' && isset($_REQUEST['reihungstest'])) && $studiengang=='' && $semester=='' && $prestudent_id=='' && $datum_von=='' && $datum_bis=='')
|
||||
die('Waehlen Sie bitte mindestens eine der Optionen aus');
|
||||
|
||||
@@ -244,8 +243,7 @@ if (isset($_REQUEST['reihungstest']))
|
||||
if($prestudent_id!='')
|
||||
$sql_query.=" AND vw_auswertung_kategorie_semester.prestudent_id='".addslashes($prestudent_id)."'";
|
||||
|
||||
|
||||
//echo $sql_query;
|
||||
|
||||
if(!($result=$db->db_query($sql_query)))
|
||||
die($db->db_last_error());
|
||||
$gesamtpunkte=array();
|
||||
@@ -277,7 +275,7 @@ if (isset($_REQUEST['reihungstest']))
|
||||
if($studiengang!='')
|
||||
$sql_query.=" AND tbl_prestudent.studiengang_kz='".addslashes($studiengang)."'";
|
||||
//if($semester!='')
|
||||
// $sql_query.=" AND vw_auswertung_kategorie_semester.semester='".addslashes($semester)."'";
|
||||
// $sql_query.=" AND vw_auswertung_kategorie_semester.semester='".addslashes($semester)."'"; Auskommentiert, damit bei der Persönlichkeitsauswertung kein Kandidat verloren geht
|
||||
if($prestudent_id!='')
|
||||
$sql_query.=" AND prestudent_id='".addslashes($prestudent_id)."'";
|
||||
|
||||
|
||||
+30
-111
@@ -2,129 +2,48 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Für den Betrieb von FH-Complete müssen folgende Systemvoraussetzungen erfüllt werden:
|
||||
</p>
|
||||
@@ -150,10 +69,10 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="60">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
+28
-110
@@ -2,132 +2,50 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function PopupZugangsdaten (Adresse)
|
||||
{
|
||||
MeinFenster = window.open(Adresse, "Zugangsdaten", "width=800,height=550,left=100,top=200,location=no,menubar=no,resizable=yes");
|
||||
MeinFenster.focus();
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
list-style-position:inside;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="50%">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
|
||||
@@ -0,0 +1,102 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function PopupZugangsdaten (Adresse)
|
||||
{
|
||||
MeinFenster = window.open(Adresse, "Zugangsdaten", "width=800,height=550,left=100,top=200,location=no,menubar=no,resizable=yes");
|
||||
MeinFenster.focus();
|
||||
}
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p style="font-size:20px;text-align: center;">COMMUNITY</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
<br/><br/>
|
||||
FH-Complete ist als Community-Projekt gedacht, deren Mitglieder gemeinsam das System weiterentwickeln.
|
||||
Wir verwenden das Feature-Request System Mantis, zur Verwaltung und Dokumentation des Projekts.
|
||||
<br/><br/>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<br/><br/>
|
||||
<a href="http://fhcomplete.technikum-wien.at/mantis/roadmap_page.php" target="blank">Roadmap FH-Complete in Mantis</a>
|
||||
<br/><br/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="60">
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<p style="padding-left:30px; padding-right:30px;" >
|
||||
<a style="text-decoration:none;font-size:12px;" href="fhcomplete_impressum.html">IMPRESSUM</a>
|
||||
</p>
|
||||
</td>
|
||||
<td width="100%">
|
||||
<p style="padding-left:30px; padding-right:30px;" >
|
||||
<a style="text-decoration:none;font-size:12px;" href="fhcomplete_kontakt.html">KONTAKT</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+29
-111
@@ -2,132 +2,50 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function PopupZugangsdaten (Adresse)
|
||||
{
|
||||
MeinFenster = window.open(Adresse, "Zugangsdaten", "width=800,height=550,left=100,top=200,location=no,menubar=no,resizable=yes");
|
||||
MeinFenster.focus();
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
list-style-position:inside;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="50%">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
|
||||
+31
-112
@@ -2,140 +2,59 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function maillink()
|
||||
{
|
||||
window.location.href="mai"+"lto:"+"systementw"+"icklung"+"@techni"+"kum-wien.at";
|
||||
}
|
||||
</script>
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p style="font-size:20px;text-align: center;">IMPRESSUM</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p> <br/><br/>
|
||||
<b>Offenlegungspflicht gemäß § 25 Mediengesetz und Informationspflicht gemäß § 5 E-Commerce-Gesetz:<br/><br/>
|
||||
Medieninhaber und Herausgeber</b><br/><br/>
|
||||
@@ -173,10 +92,10 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="60">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
+33
-114
@@ -2,7 +2,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function maillink()
|
||||
{
|
||||
@@ -17,134 +20,50 @@
|
||||
window.location.href="mai"+"lto:"+"kindlm"+"@techni"+"kum-wien.at";
|
||||
}
|
||||
</script>
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p style="font-size:20px;text-align: center;">KONTAKT</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="50%">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="80%">
|
||||
<tr>
|
||||
<td width="60%">
|
||||
<p style="padding-left:0px;padding-right:0px;"> <br/><br/>
|
||||
@@ -158,7 +77,7 @@
|
||||
<a href="#Mail" onclick="mailpam();">E-Mail</a><br/><br/>
|
||||
|
||||
Manfred Kindl<br/>
|
||||
<i>Koordination LV-Planung</i><br/>
|
||||
<i>Systemadministration</i><br/>
|
||||
<a href="#Mail" onclick="mailkindl();">E-Mail</a><br/><br/>
|
||||
|
||||
T: +43 1 333 40 77-0<br/>
|
||||
@@ -174,10 +93,10 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="60">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
+36
-118
@@ -2,143 +2,61 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function PopupZugangsdaten (Adresse)
|
||||
{
|
||||
MeinFenster = window.open(Adresse, "Zugangsdaten", "width=800,height=550,left=100,top=200,location=no,menubar=no,resizable=yes");
|
||||
MeinFenster.focus();
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
list-style-position:inside;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="50%">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<img title="Tempus" height="60" alt="Tempus-Logo" src="skin/images/tempus_logo_weiss.png">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<br/><br/>
|
||||
Tempus ist ein Programm zur Erstellung, Wartung und Modifikation
|
||||
@@ -152,7 +70,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td valign="top" width="50%">
|
||||
@@ -204,7 +122,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<br/><br/>
|
||||
<a href="fhcomplete_logindaten.html" onclick="PopupZugangsdaten(this.href); return false">Zugangsdaten und Einstellungen</a>
|
||||
<a href="http://fhcomplete.technikum-wien.at/demo/content/tempus.xul.php" target="blank">
|
||||
@@ -215,10 +133,10 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="60">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
+36
-118
@@ -2,143 +2,61 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function PopupZugangsdaten (Adresse)
|
||||
{
|
||||
MeinFenster = window.open(Adresse, "Zugangsdaten", "width=800,height=550,left=100,top=200,location=no,menubar=no,resizable=yes");
|
||||
MeinFenster.focus();
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
list-style-position:inside;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="50%">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<img title="Vilesci" height="60" alt="Vilesci-Logo" src="skin/images/vilesci_logo_weiss.png">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<br/><br/>
|
||||
Vilesci ist die Wartungsoberfläche für AdministratorInnen,
|
||||
@@ -153,7 +71,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td valign="top" width="50%">
|
||||
@@ -205,7 +123,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<br/><br/>
|
||||
<a href="fhcomplete_logindaten.html" onclick="PopupZugangsdaten(this.href); return false">Zugangsdaten und Einstellungen</a>
|
||||
<a href="http://fhcomplete.technikum-wien.at/demo/vilesci/" target="blank">
|
||||
@@ -216,10 +134,10 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="60">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
+36
-118
@@ -2,143 +2,61 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
function PopupZugangsdaten (Adresse)
|
||||
{
|
||||
MeinFenster = window.open(Adresse, "Zugangsdaten", "width=800,height=550,left=100,top=200,location=no,menubar=no,resizable=yes");
|
||||
MeinFenster.focus();
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
list-style-position:inside;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="50%">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menu"><a class="menu" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menuselected"><a class="menuselected" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<img title="WaWi" height="60" alt="Wawi-Logo" src="skin/images/wawi_logo_weiss.png">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<br/><br/>
|
||||
Die Erweiterung WaWi bietet ein Warenwirtschaftssystem,
|
||||
@@ -150,7 +68,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td valign="top" width="50%">
|
||||
@@ -199,7 +117,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<br/><br/>
|
||||
<a href="fhcomplete_logindaten.html" onclick="PopupZugangsdaten(this.href); return false">Zugangsdaten und Einstellungen</a>
|
||||
<a href="http://fhcomplete.technikum-wien.at/demo/content/tempus.xul.php" target="blank">
|
||||
@@ -210,10 +128,10 @@
|
||||
</td>
|
||||
</tr>-->
|
||||
<tr height="60">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
@@ -166,6 +166,7 @@ $menu=array
|
||||
'Statistik'=>array('name'=>'Statistik', 'link'=>'stammdaten/statistik_frameset.html', 'target'=>'main','permissions'=>array('basis/statistik')),
|
||||
'Ampel'=>array('name'=>'Ampel', 'link'=>'stammdaten/ampel_frameset.html', 'target'=>'main','permissions'=>array('basis/ampel')),
|
||||
'Infoscreen'=>array('name'=>'Infoscreen', 'link'=>'stammdaten/infoscreen_frameset.html', 'target'=>'main','permissions'=>array('basis/infoscreen')),
|
||||
'Ferien'=>array('name'=>'Ferien', 'link'=>'lehre/ferienverwaltung.php', 'target'=>'main','permissions'=>array('admin')),
|
||||
'ImExport'=>array
|
||||
(
|
||||
'name'=>'ImExport','permissions'=>array('admin'),
|
||||
|
||||
@@ -2,120 +2,48 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!--<meta http-equiv="refresh" content="3">-->
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<title>FH Complete</title>
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:200px;
|
||||
padding-right:200px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(skin/images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
</style>
|
||||
<link href="skin/fhcomplete_website.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<div align="center" style="padding:30px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="500px">
|
||||
<tr>
|
||||
<td align="center" colspan="7"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
<td align="center"><a href="index.html"><img title="FH Complete" height="90" alt="FH Complete" src="skin/images/fh-complete_weiss.png"></a></td>
|
||||
</tr>
|
||||
<tr height="40">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menuselected"><a class="menuselected" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<table align="center" cellpadding="0" cellspacing="0"><tr>
|
||||
<td class="menuselected"><a class="menuselected" href="index.html">ÜBERBLICK</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_anforderungen.html">ANFORDERUNGEN</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_community.html">COMMUNITY</a></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="5"> </td></tr>
|
||||
<tr>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_cis.html">CIS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_fas.html">FAS-ONLINE</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_tempus.html">TEMPUS</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_wawi.html">WAWI</a></td>
|
||||
<td class="menu"><a class="menu" href="fhcomplete_vilesci.html">VILESCI</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="30">
|
||||
<td colspan="7"> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Das Produktpaket FH Complete 2.0 beinhaltet fünf Applikationen,
|
||||
welche mit einer zentralen Datenbank arbeiten und
|
||||
@@ -135,7 +63,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<a class="menu" href="fhcomplete_cis.html"><img title="CIS" height="60" alt="CIS" src="skin/images/cis_logo_weiss.png"></a>
|
||||
</p>
|
||||
@@ -145,7 +73,7 @@
|
||||
<td colspan="7"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Das Campus Informations-System ist die Web-Oberfläche
|
||||
für Studierende und LektorInnen. Hier finden sie News,
|
||||
@@ -155,17 +83,17 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<a class="menu" href="fhcomplete_fas.html"><img title="FAS" height="60" alt="FAS" src="skin/images/fas_logo_weiss.png"></a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="10">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Das FH Adminstrations-System dient als Oberfläche zur Verwaltung
|
||||
aller relevanten Daten für Studierende, LektorInnen
|
||||
@@ -174,17 +102,17 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<a class="menu" href="fhcomplete_tempus.html"><img title="Tempus" height="60" alt="Tempus" src="skin/images/tempus_logo_weiss.png"></a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="10">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Tempus dient dazu, die Lehraufträge in konkreten Lehreinheiten
|
||||
abzubilden. Hier werden Kollisionen erkannt,
|
||||
@@ -195,17 +123,17 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<a class="menu" href="fhcomplete_wawi.html"><img title="WaWi" height="60" alt="WaWi" src="skin/images/wawi_logo_weiss.png"></a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="10">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Im WaWi werden neben dem Inventar auch Bestellungen und
|
||||
Rechnungen verwaltet. Ein ausgeklügeltes Freigabesystem
|
||||
@@ -215,17 +143,17 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
<a class="menu" href="fhcomplete_vilesci.html"><img title="Vilesci" height="60" alt="Vilesci" src="skin/images/vilesci_logo_weiss.png"></a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="10">
|
||||
<td colspan="7"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<p>
|
||||
Vilesci bietet für AdministratorInnen eine Oberfläche für
|
||||
die Bearbeitung und Pflege von Hintergrunddaten, für eine
|
||||
@@ -235,14 +163,14 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7" style="padding-top:50px; padding-bottom:50px; vertical-align:center;">
|
||||
<td style="padding-top:50px; padding-bottom:50px; vertical-align:center;">
|
||||
<div>
|
||||
<a href="Folder_FH_complete.pdf" target="blank">FH-Complete Folder zum Download <img title="Folder" alt="PDF" src="skin/images/pdfpic.gif"></a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<td>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" width="10%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
@@ -0,0 +1,129 @@
|
||||
/* Copyright (C) 2010 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>,
|
||||
* Manfred Kindl <manfred.kindl@technikum-wien.at> and
|
||||
* Karl Burkhart <burkhart@technikum-wien.at>.
|
||||
*/
|
||||
@charset "utf-8";
|
||||
|
||||
body
|
||||
{
|
||||
background-color: #006095;
|
||||
}
|
||||
div
|
||||
{
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
}
|
||||
p
|
||||
{
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:50px;
|
||||
padding-right:50px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
td,tr
|
||||
{
|
||||
align:center;
|
||||
text-align:center;
|
||||
}
|
||||
a
|
||||
{
|
||||
text-decoration:underline;
|
||||
cursor:pointer;
|
||||
font-size:14px;
|
||||
color:#D1D7DA;
|
||||
font-family:Arial;
|
||||
border:0;
|
||||
}
|
||||
ul
|
||||
{
|
||||
list-style-type:square;
|
||||
list-style-position:inside;
|
||||
color:#FFF;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
font-family:Arial;
|
||||
padding-left:50px;
|
||||
padding-right:50px;
|
||||
color:#D1D7DA;
|
||||
text-align: justify;
|
||||
}
|
||||
img
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
td.menu
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(images/menue.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td.menu_spacer
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:20px;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
td:hover.menu, td:active.menu, td:focus.menu, td.menuselected
|
||||
{
|
||||
text-align:center;
|
||||
vertical-align:bottom;
|
||||
width:170px;
|
||||
background:url(images/menue_hover.png);
|
||||
background-position:top left;
|
||||
background-repeat:no-repeat;
|
||||
border-bottom:1px solid #FFF;
|
||||
padding-bottom:5px;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
a.menu
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
color:#FFF;
|
||||
text-decoration:none;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
font-family:Arial;
|
||||
}
|
||||
a:hover.menu, a:active.menu, a:focus.menu, a.menuselected
|
||||
{
|
||||
padding-top:40px;
|
||||
width:170px;
|
||||
vertical-align:bottom;
|
||||
text-decoration:none;
|
||||
font-size:16px;
|
||||
color:#006095;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
|
||||
@@ -89,6 +89,17 @@ if(isset($_GET['custom']))
|
||||
$datum_begin = $_GET['von'];
|
||||
$datum_ende = $_GET['bis'];
|
||||
}
|
||||
$db =new basis_db();
|
||||
// Beginnzeiten holen
|
||||
$qry = "SELECT stunde,to_char(beginn, 'HH24:MI') AS beginn FROM lehre.tbl_stunde";
|
||||
$beginnzeit_arr=array();
|
||||
if($result = $db->db_query($qry))
|
||||
{
|
||||
while($row = $db->db_fetch_object($result))
|
||||
{
|
||||
$beginnzeit_arr[$row->stunde]=$row->beginn;
|
||||
}
|
||||
}
|
||||
// ************* FUNCTIONS **************** //
|
||||
|
||||
function getStudentsFromGroup($studiengang_kz, $semester, $verband, $gruppe, $gruppe_kurzbz, $studiensemester_kurzbz)
|
||||
@@ -142,6 +153,10 @@ function getStudentsFromGroup($studiengang_kz, $semester, $verband, $gruppe, $gr
|
||||
// **************************************** //
|
||||
$message_begin='
|
||||
<style>
|
||||
th,td
|
||||
{
|
||||
text-align:left;
|
||||
}
|
||||
.marked
|
||||
{
|
||||
color:red;
|
||||
@@ -162,7 +177,7 @@ $sql_query="SELECT * FROM lehre.vw_stundenplandev WHERE datum>='".addslashes($da
|
||||
NOT EXISTS
|
||||
(SELECT stundenplan_id FROM lehre.tbl_stundenplan WHERE datum>='".addslashes($datum_begin)."' AND datum<='".addslashes($datum_ende)."' AND stundenplan_id=stundenplandev_id)
|
||||
ORDER BY datum, stunde;";
|
||||
$db =new basis_db();
|
||||
|
||||
|
||||
if (!$result = $db->db_query($sql_query))
|
||||
{
|
||||
@@ -229,13 +244,14 @@ else
|
||||
$message[$row->uid]->mailadress=$row->uid.'@technikum-wien.at';
|
||||
$message[$row->uid]->message_begin=$message_begin.'<BR>';
|
||||
$message[$row->uid]->message='<font style="color:green"><strong>Neue Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$row->uid]->message.="\n";
|
||||
$message[$row->uid]->message.='<TR><TD>'.$row->ort_kurzbz.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->lektor.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->datum.'/'.$row->stunde.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->datum.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->titel.'</TD></TR>';
|
||||
}
|
||||
@@ -250,13 +266,14 @@ else
|
||||
$message[$student]->mailadress=$student.'@technikum-wien.at';
|
||||
$message[$student]->message_begin=$message_begin.'<BR>';
|
||||
$message[$student]->message='<font style="color:green"><strong>Neue Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$student]->message.="\n";
|
||||
$message[$student]->message.='<TR><TD>'.$row->ort_kurzbz.'</TD>';
|
||||
$message[$student]->message.='<TD>'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->lektor.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->datum.'/'.$row->stunde.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->datum.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->titel.'</TD></TR>';
|
||||
}
|
||||
@@ -312,13 +329,14 @@ else
|
||||
$message[$row->uid]->mailadress=$row->uid.'@technikum-wien.at';
|
||||
$message[$row->uid]->message_begin=$message_begin.'<BR>';
|
||||
$message[$row->uid]->message.='<font style="color:#FFA100"><strong>Gelöschte Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$row->uid]->message.="\n";
|
||||
$message[$row->uid]->message.='<TR><TD>'.$row->ort_kurzbz.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->lektor.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->datum.'/'.$row->stunde.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->datum.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->titel.'</TD></TR>';
|
||||
}
|
||||
@@ -333,13 +351,14 @@ else
|
||||
$message[$student]->mailadress=$student.'@technikum-wien.at';
|
||||
$message[$student]->message_begin=$message_begin.'<BR>';
|
||||
$message[$student]->message.='<font style="color:#FFA100"><strong>Gelöschte Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$student]->message.="\n";
|
||||
$message[$student]->message.='<TR><TD>'.$row->ort_kurzbz.'</TD>';
|
||||
$message[$student]->message.='<TD>'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->lektor.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->datum.'/'.$row->stunde.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->datum.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->titel.'</TD></TR>';
|
||||
}
|
||||
@@ -379,6 +398,8 @@ $sql_query="SELECT vw_stundenplandev.*, vw_stundenplan.datum AS old_datum, vw_st
|
||||
//vw_stundenplandev.anmerkung!=vw_stundenplan.anmerkung OR --> von kindlm am 16.03.2012 aus obigem SQL entfernt, da nicht relevant fuer tbl_stundenplan und nur fuer intern gedacht
|
||||
|
||||
//echo $sql_query.'<BR>';
|
||||
|
||||
|
||||
if (!$result = $db->db_query($sql_query))
|
||||
{
|
||||
echo $sql_query.' fehlgeschlagen!<BR>'.$db->db_last_error();
|
||||
@@ -457,14 +478,15 @@ else
|
||||
$message[$row->uid]->mailadress=$row->uid.'@technikum-wien.at';
|
||||
$message[$row->uid]->message_begin=$message_begin.'<BR>';
|
||||
$message[$row->uid]->message.='<font style="color:blue"><strong>Geänderte Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Status</TH><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Status</TH><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$row->uid]->message.="\n";
|
||||
$message[$row->uid]->message.='<TR><TD>Vorher: </TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->old_ort_kurzbz.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->old_lektor.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->old_datum.'/'.$row->old_stunde.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->old_datum.'</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->old_stunde.' ('.$beginnzeit_arr[$row->old_stunde].')</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$row->uid]->message.='<TD>'.$row->old_titel.'</TD></TR>';
|
||||
|
||||
@@ -476,8 +498,10 @@ else
|
||||
$message[$row->uid]->message.='<TD><span class="'.$myclass.'">'.strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</span></TD>';
|
||||
$myclass=($row->lektor!=$row->old_lektor?'marked':'unmarked');
|
||||
$message[$row->uid]->message.='<TD><span class="'.$myclass.'">'.$row->lektor.'</span></TD>';
|
||||
$myclass=(($row->datum!=$row->old_datum) || ($row->stunde!=$row->old_stunde)?'marked':'unmarked');
|
||||
$message[$row->uid]->message.='<TD><span class="'.$myclass.'">'.$row->datum.'/'.$row->stunde.'</span></TD>';
|
||||
$myclass=(($row->datum!=$row->old_datum)?'marked':'unmarked');
|
||||
$message[$row->uid]->message.='<TD><span class="'.$myclass.'">'.$row->datum.'</span></TD>';
|
||||
$myclass=(($row->stunde!=$row->old_stunde)?'marked':'unmarked');
|
||||
$message[$row->uid]->message.='<TD><span class="'.$myclass.'">'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</span></TD>';
|
||||
$myclass='unmarked';
|
||||
$message[$row->uid]->message.='<TD><span class="'.$myclass.'">'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</span></TD>';
|
||||
$myclass=($row->titel!=$row->old_titel?'marked':'unmarked');
|
||||
@@ -496,14 +520,15 @@ else
|
||||
$message[$row->old_uid]->mailadress=$row->old_uid.'@technikum-wien.at';
|
||||
$message[$row->old_uid]->message_begin=$message_begin.'<BR>';
|
||||
$message[$row->old_uid]->message.='<font style="color:blue"><strong>Geänderte Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Status</TH><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Status</TH><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$row->old_uid]->message.="\n";
|
||||
$message[$row->old_uid]->message.='<TR><TD>Vorher: </TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->old_ort_kurzbz.'</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->old_lektor.'</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->old_datum.'/'.$row->old_stunde.'</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->old_datum.'</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->old_stunde.' ('.$beginnzeit_arr[$row->old_stunde].')</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$row->old_uid]->message.='<TD>'.$row->old_titel.'</TD></TR>';
|
||||
|
||||
@@ -515,8 +540,10 @@ else
|
||||
$message[$row->old_uid]->message.='<TD><span class="'.$myclass.'">'.strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</span></TD>';
|
||||
$myclass=($row->lektor!=$row->old_lektor?'marked':'unmarked');
|
||||
$message[$row->old_uid]->message.='<TD><span class="'.$myclass.'">'.$row->lektor.'</span></TD>';
|
||||
$myclass=(($row->datum!=$row->old_datum) || ($row->stunde!=$row->old_stunde)?'marked':'unmarked');
|
||||
$message[$row->old_uid]->message.='<TD><span class="'.$myclass.'">'.$row->datum.'/'.$row->stunde.'</span></TD>';
|
||||
$myclass=(($row->datum!=$row->old_datum)?'marked':'unmarked');
|
||||
$message[$row->old_uid]->message.='<TD><span class="'.$myclass.'">'.$row->datum.'</TD>';
|
||||
$myclass=(($row->stunde!=$row->old_stunde)?'marked':'unmarked');
|
||||
$message[$row->old_uid]->message.='<TD><span class="'.$myclass.'">'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</span></TD>';
|
||||
$myclass='unmarked';
|
||||
$message[$row->old_uid]->message.='<TD><span class="'.$myclass.'">'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</span></TD>';
|
||||
$myclass=($row->titel!=$row->old_titel?'marked':'unmarked');
|
||||
@@ -534,14 +561,15 @@ else
|
||||
$message[$student]->mailadress=$student.'@technikum-wien.at';
|
||||
$message[$student]->message_begin=$message_begin.'<BR>';
|
||||
$message[$student]->message.='<font style="color:blue"><strong>Geänderte Stunden:</strong></font><BR>
|
||||
<TABLE><TR><TH>Status</TH><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum/Std</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
<TABLE><TR><TH>Status</TH><TH>Ort</TH><TH>Verband</TH><TH>Lektor</TH><TH>Datum</TH><TH>Std (Beginnzeit)</TH><TH>Lehrfach</TH><TH>Info</TH></TR>';
|
||||
}
|
||||
$message[$student]->message.="\n";
|
||||
$message[$student]->message.='<TR><TD>Vorher: </TD>';
|
||||
$message[$student]->message.='<TD>'.$row->old_ort_kurzbz.'</TD>';
|
||||
$message[$student]->message.='<TD>'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->old_lektor.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->old_datum.'/'.$row->old_stunde.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->old_datum.'</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->old_stunde.' ('.$beginnzeit_arr[$row->old_stunde].')</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</TD>';
|
||||
$message[$student]->message.='<TD>'.$row->old_titel.'</TD></TR>';
|
||||
|
||||
@@ -553,8 +581,10 @@ else
|
||||
$message[$student]->message.='<TD><span class="'.$myclass.'">'.mb_strtoupper($row->stg_typ.$row->stg_kurzbz).'-'.$row->semester.$row->verband.$row->gruppe.' '.$row->gruppe_kurzbz.'</span></TD>';
|
||||
$myclass=($row->lektor!=$row->old_lektor?'marked':'unmarked');
|
||||
$message[$student]->message.='<TD><span class="'.$myclass.'">'.$row->lektor.'</span></TD>';
|
||||
$myclass=(($row->datum!=$row->old_datum) || ($row->stunde!=$row->old_stunde)?'marked':'unmarked');
|
||||
$message[$student]->message.='<TD><span class="'.$myclass.'">'.$row->datum.'/'.$row->stunde.'</span></TD>';
|
||||
$myclass=(($row->datum!=$row->old_datum)?'marked':'unmarked');
|
||||
$message[$student]->message.='<TD><span class="'.$myclass.'">'.$row->datum.'</span></TD>';
|
||||
$myclass=(($row->stunde!=$row->old_stunde)?'marked':'unmarked');
|
||||
$message[$student]->message.='<TD><span class="'.$myclass.'">'.$row->stunde.' ('.$beginnzeit_arr[$row->stunde].')</span></TD>';
|
||||
$myclass='unmarked';
|
||||
$message[$student]->message.='<TD><span class="'.$myclass.'">'.$row->lehrfach.'-'.$row->lehrform.' ('.$row->lehrfach_bez.')</span></TD>';
|
||||
$myclass=($row->titel!=$row->old_titel?'marked':'unmarked');
|
||||
|
||||
@@ -0,0 +1,244 @@
|
||||
<?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 >
|
||||
* Rudolf Hangl < rudolf.hangl@technikum-wien.at >
|
||||
* Gerald Simane-Sequens < gerald.simane-sequens@technikum-wien.at >
|
||||
* Manfred Kindl <manfred.kindl@technikum-wien.at>
|
||||
*/
|
||||
/**
|
||||
* Ferienverwaltung
|
||||
*
|
||||
*/
|
||||
require_once('../../config/vilesci.config.inc.php');
|
||||
require_once('../../include/functions.inc.php');
|
||||
require_once('../../include/studiengang.class.php');
|
||||
require_once('../../include/ort.class.php');
|
||||
require_once('../../include/datum.class.php');
|
||||
require_once('../../include/benutzerberechtigung.class.php');
|
||||
require_once('../../include/pruefling.class.php');
|
||||
require_once('../../include/person.class.php');
|
||||
require_once('../../include/prestudent.class.php');
|
||||
|
||||
if (!$db = new basis_db())
|
||||
die('Es konnte keine Verbindung zum Server aufgebaut werden.');
|
||||
|
||||
$user = get_uid();
|
||||
$datum_obj = new datum();
|
||||
$stg_kz = (isset($_GET['stg_kz'])?$_GET['stg_kz']:'-2');
|
||||
$action = (isset($_GET['action'])?$_GET['action']:'');
|
||||
$bezeichnung=(isset($_REQUEST['bezeichnung'])?$_REQUEST['bezeichnung']:'');
|
||||
$stg_arr = array();
|
||||
|
||||
$rechte = new benutzerberechtigung();
|
||||
$rechte->getBerechtigungen($user);
|
||||
|
||||
if(!$rechte->isBerechtigt('admin'))
|
||||
die('Sie haben keine Berechtigung fuer diese Seite');
|
||||
|
||||
$studiengang = new studiengang();
|
||||
$studiengang->getAll('typ, kurzbz', false);
|
||||
|
||||
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//DE" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Ferienverwaltung</title>
|
||||
<link rel="stylesheet" href="../../skin/vilesci.css" type="text/css">
|
||||
<link rel="stylesheet" href="../../include/js/tablesort/table.css" type="text/css">
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<script src="../../include/js/tablesort/table.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body class="Background_main">
|
||||
<h2>Ferienverwaltung</h2>';
|
||||
|
||||
// Speichern eines Ferieneintrags
|
||||
if(isset($_POST['speichern']))
|
||||
{
|
||||
$sql_query="SELECT bezeichnung FROM lehre.tbl_ferien WHERE bezeichnung='".$_POST['bezeichnung']."';";
|
||||
$db->db_num_rows($db->db_query($sql_query));
|
||||
//echo $sql_query;
|
||||
|
||||
//Formulardaten pruefen
|
||||
if(!$datum_obj->checkDatum($_POST['vondatum']) || !$datum_obj->checkDatum($_POST['bisdatum']))
|
||||
{
|
||||
echo '<span class="input_error">Datum ist ungültig. Das Datum muss im Format DD.MM.JJJJ eingegeben werden<br></span>';
|
||||
$stg_kz = $_POST['studiengang_kz'];
|
||||
}
|
||||
elseif($_POST['vondatum']>$_POST['bisdatum'])
|
||||
{
|
||||
echo '<span class="input_error"><i>Datum bis</i> darf nicht kleiner als <i>Datum von</i> sein<br></span>';
|
||||
$stg_kz = $_POST['studiengang_kz'];
|
||||
}
|
||||
elseif($_POST['bezeichnung']=='')
|
||||
{
|
||||
echo '<span class="input_error">Geben Sie eine Bezeichnung ein<br></span>';
|
||||
$stg_kz = $_POST['studiengang_kz'];
|
||||
}
|
||||
elseif($db->db_num_rows($db->db_query($sql_query))!=0)
|
||||
{
|
||||
echo '<span class="input_error">Die Bezeichnung existiert bereits. Geben Sie eine andere Bezeichnung ein.<br></span>';
|
||||
$stg_kz = $_POST['studiengang_kz'];
|
||||
}
|
||||
elseif($_POST['studiengang_kz']=='')
|
||||
{
|
||||
echo '<span class="input_error">Wählen Sie einen Studiengang aus<br></span>';
|
||||
$stg_kz = $_POST['studiengang_kz'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$sql_query="INSERT INTO lehre.tbl_ferien (studiengang_kz, bezeichnung, vondatum, bisdatum) VALUES(
|
||||
'".$_POST['studiengang_kz']."',
|
||||
".$db->db_add_param($_POST['bezeichnung']).",
|
||||
'".$datum_obj->formatDatum($_POST['vondatum'],'Y-m-d')."',
|
||||
'".$datum_obj->formatDatum($_POST['bisdatum'],'Y-m-d')."');";
|
||||
//echo $sql_query;
|
||||
$db->db_query($sql_query);
|
||||
$stg_kz = $_POST['studiengang_kz'];
|
||||
}
|
||||
$neu=false;
|
||||
}
|
||||
//Löschen von Ferieneinträgen
|
||||
if($action=='delete')
|
||||
{
|
||||
if(!$rechte->isBerechtigt('admin', null, 'suid'))
|
||||
die('Sie haben keine Berechtigung zum löschen von Ferien');
|
||||
|
||||
$sql_query = "DELETE FROM lehre.tbl_ferien WHERE bezeichnung='$bezeichnung' AND studiengang_kz='$stg_kz'";
|
||||
$result = $db->db_query($sql_query);
|
||||
if ($db->db_affected_rows($result)==1)
|
||||
echo '<span class="insertok">Eintrag erfolgreich gelöscht</span><br>';
|
||||
else
|
||||
echo '<span class="input_error">Fehler! Eintrag konnte nicht gelöscht werden</span><br>';
|
||||
}
|
||||
echo '<br><table width="100%"><tr><td>';
|
||||
|
||||
//Dropdown Auswahl Studiengang
|
||||
echo "<SELECT name='studiengang' id='studiengang' onchange='window.location.href=this.value'>";
|
||||
if($stg_kz==-2)
|
||||
$selected='selected';
|
||||
else
|
||||
$selected='';
|
||||
echo "<OPTION value='".$_SERVER['PHP_SELF']."' $selected>-- keine Auswahl --</OPTION>";
|
||||
|
||||
if($stg_kz==-1)
|
||||
$selected='selected';
|
||||
else
|
||||
$selected='';
|
||||
echo "<OPTION value='".$_SERVER['PHP_SELF']."?stg_kz=-1' $selected>Alle Studiengänge</OPTION>";
|
||||
foreach ($studiengang->result as $row)
|
||||
{
|
||||
$stg_arr[$row->studiengang_kz] = $row->kuerzel;
|
||||
if($stg_kz=='')
|
||||
$stg_kz=$row->studiengang_kz;
|
||||
if($row->studiengang_kz==$stg_kz)
|
||||
$selected='selected';
|
||||
else
|
||||
$selected='';
|
||||
|
||||
echo "<OPTION value='".$_SERVER['PHP_SELF']."?stg_kz=$row->studiengang_kz' $selected>".$db->convert_html_chars($row->kuerzel)."</OPTION>";
|
||||
}
|
||||
echo "</SELECT>";
|
||||
echo "<INPUT type='button' value='Anzeigen' onclick='window.location.href=document.getElementById(\"studiengang\").value;'>";
|
||||
echo "</td></tr></table><br>";
|
||||
|
||||
if($stg_kz!=-1 && $stg_kz!='')
|
||||
$db->studiengang_kz = $stg_kz;
|
||||
$db->vondatum = date('Y-m-d');
|
||||
$db->bisdatum = date('Y-m-d');
|
||||
|
||||
//Formular zum Bearbeiten von Ferieneinträgen
|
||||
echo '<HR>';
|
||||
echo "<FORM method='POST' action='".$_SERVER['PHP_SELF']."'?stg_kz='.$row->studiengang_kz.'>";
|
||||
echo "<input type='hidden' value='$stg_kz' name='studiengang' />";
|
||||
echo "<table>";
|
||||
|
||||
//Studiengang DropDown
|
||||
echo "<tr><td>Studiengang</td><td><SELECT name='studiengang_kz'>";
|
||||
if($row->studiengang_kz=='')
|
||||
$selected = 'selected';
|
||||
else
|
||||
$selected = '';
|
||||
|
||||
echo "<OPTION value='' $selected>-- keine Auswahl --</OPTION>";
|
||||
foreach ($studiengang->result as $row)
|
||||
{
|
||||
if($row->studiengang_kz==$stg_kz)
|
||||
$selected = 'selected';
|
||||
else
|
||||
$selected = '';
|
||||
|
||||
echo "<OPTION value='$row->studiengang_kz' $selected>".$db->convert_html_chars($row->kuerzel)."</OPTION>";
|
||||
}
|
||||
echo "</SELECT></TD></TR>";
|
||||
echo '<tr><td>Bezeichnung</td><td><input type="text" name="bezeichnung" value="" size="68" maxlength="64"></td></tr>';
|
||||
echo '<tr><td>Datum von</td><td><input type="text" name="vondatum" value="'.$datum_obj->convertISODate($db->vondatum).'"></td></tr>';
|
||||
echo '<tr><td>Datum bis</td><td><input type="text" name="bisdatum" value="'.$datum_obj->convertISODate($db->bisdatum).'"></td></tr>';
|
||||
echo '<tr><td></td><td><input type="submit" name="speichern" value="Speichern"></td></tr>';
|
||||
echo '</table>';
|
||||
echo '</FORM>';
|
||||
echo '<HR>';
|
||||
|
||||
//Liste der eingetragenen Ferien
|
||||
if($stg_kz!='')
|
||||
{
|
||||
$qry="SELECT * FROM lehre.tbl_ferien ";
|
||||
if ($stg_kz!=-1)
|
||||
$qry.=" WHERE studiengang_kz='".$stg_kz."'";
|
||||
|
||||
$qry.=" ORDER BY vondatum DESC;";
|
||||
//echo $qry;
|
||||
|
||||
if($result = $db->db_query($qry))
|
||||
{
|
||||
echo 'Anzahl: '.$db->db_num_rows($result);
|
||||
$pruefling = new pruefling();
|
||||
|
||||
echo "<table class='liste table-autosort:# table-stripeclass:alternate table-autostripe'>
|
||||
<thead>
|
||||
<tr class='liste'>
|
||||
<th class='table-sortable:default'>Studiengang</th>
|
||||
<th class='table-sortable:default'>Datum von</th>
|
||||
<th class='table-sortable:default'>Datum bis</th>
|
||||
<th class='table-sortable:default'>Bezeichnung</th>
|
||||
</tr>
|
||||
<tr class='liste'>
|
||||
<th> </th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th>Filter <input name='filter' size='30' onkeyup='Table.filter(this,this)'></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>";
|
||||
while($row = $db->db_fetch_object($result))
|
||||
{
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.$db->convert_html_chars($stg_arr[$row->studiengang_kz]).'</td>
|
||||
<td>'.$db->convert_html_chars($row->vondatum).'</td>
|
||||
<td>'.$db->convert_html_chars($row->bisdatum).'</td>
|
||||
<td>'.$db->convert_html_chars($row->bezeichnung).'</td>
|
||||
<td><a href='.$_SERVER["PHP_SELF"].'?action=delete&stg_kz='.$row->studiengang_kz.'&bezeichnung='.urlencode($row->bezeichnung).'>delete</a></td>
|
||||
</tr>';
|
||||
}
|
||||
echo "</tbody></table>";
|
||||
}
|
||||
}
|
||||
echo '
|
||||
</body>
|
||||
</html>';
|
||||
?>
|
||||
@@ -109,8 +109,12 @@ if(isset($_POST['personzuteilen']))
|
||||
echo '<span class="error">Fehler beim Laden des Prestudenten</span>';
|
||||
}
|
||||
}
|
||||
//Links
|
||||
echo '<br><a href="https://cis.technikum-wien.at/cis/testtool/admin/auswertung.php" target="blank">Auswertung</a> |
|
||||
<a href="https://cis.technikum-wien.at/cis/testtool/admin/uebersichtFragen.php" target="blank">Fragenkatalog</a><br>
|
||||
<hr>';
|
||||
//Anzeigen der kommenden Reihungstesttermine:
|
||||
echo '<br><br><a href="'.$_SERVER['PHP_SELF'].'?action=showreihungstests">Anzeigen der kommenden Reihungstests</a>';
|
||||
echo '<br><a href="'.$_SERVER['PHP_SELF'].'?action=showreihungstests">Anzeigen der kommenden Reihungstests</a>';
|
||||
|
||||
if(isset($_GET['action']) && $_GET['action']=='showreihungstests')
|
||||
{
|
||||
@@ -152,19 +156,6 @@ if(isset($_GET['action']) && $_GET['action']=='showreihungstests')
|
||||
}
|
||||
}
|
||||
|
||||
// Antworten des Dummy Studenten löschen
|
||||
echo '<hr><br><a href="'.$_SERVER['PHP_SELF'].'?action=deletedummyanswers" onclick="return confirm(\'Dummyanworten wirklich löschen?\');">Antworten des Dummy Studenten löschen</a>';
|
||||
|
||||
if(isset($_GET['action']) && $_GET['action']=='deletedummyanswers')
|
||||
{
|
||||
$qry = "DELETE FROM testtool.tbl_antwort WHERE pruefling_id=841;
|
||||
DELETE FROM testtool.tbl_pruefling_frage where pruefling_id=841;";
|
||||
if($db->db_query($qry))
|
||||
echo ' <b>Antworten wurden gelöscht</b>';
|
||||
else
|
||||
echo ' <b>Fehler beim Löschen der Antworten</b>';
|
||||
}
|
||||
|
||||
// Antworten eines Gebietes einer Person löschen
|
||||
$ps=new prestudent();
|
||||
$datum=date('Y-m-d');
|
||||
@@ -309,9 +300,21 @@ if(isset($_POST['testergebnisanzeigen']) && isset($_POST['prestudent_id']))
|
||||
}
|
||||
}
|
||||
}
|
||||
// Antworten des Dummy Studenten löschen
|
||||
echo '<hr><br><a href="'.$_SERVER['PHP_SELF'].'?action=deletedummyanswers" onclick="return confirm(\'Dummyanworten wirklich löschen?\');">Antworten von Dieter Dummy löschen</a>';
|
||||
|
||||
if(isset($_GET['action']) && $_GET['action']=='deletedummyanswers')
|
||||
{
|
||||
$qry = "DELETE FROM testtool.tbl_antwort WHERE pruefling_id=841;
|
||||
DELETE FROM testtool.tbl_pruefling_frage where pruefling_id=841;";
|
||||
if($db->db_query($qry))
|
||||
echo ' <b>Antworten wurden gelöscht</b>';
|
||||
else
|
||||
echo ' <b>Fehler beim Löschen der Antworten</b>';
|
||||
}
|
||||
|
||||
//Studiengang von Dummy Aendern
|
||||
echo '<hr><br>';
|
||||
echo '<br><br>';
|
||||
if(isset($_POST['savedummystg']) && isset($_POST['stg']))
|
||||
{
|
||||
$qry = "UPDATE public.tbl_prestudent SET studiengang_kz=".$db->db_add_param($_POST['stg'])." WHERE prestudent_id='13478';
|
||||
@@ -332,8 +335,7 @@ if($result = $db->db_query($qry))
|
||||
$dummystg=$row->studiengang_kz;
|
||||
}
|
||||
}
|
||||
echo "Prestudent Studiengang von $name ändern";
|
||||
echo '<form action="'.$_SERVER['PHP_SELF'].'" METHOD="POST">
|
||||
echo '<form action="'.$_SERVER['PHP_SELF'].'" METHOD="POST">Studiengang von '.$name.'
|
||||
<SELECT name="stg">';
|
||||
$stg_obj = new studiengang();
|
||||
$stg_obj->getAll('typ, kurzbz');
|
||||
@@ -392,11 +394,10 @@ $('#prestudent_name').autocomplete('reihungstest_administration.php',
|
||||
// Uebersicht ueber die Teilgebiete der Studiengaenge
|
||||
echo '<hr><br>Übersicht über die Teilgebiete der Studiengänge';
|
||||
|
||||
|
||||
|
||||
//if(isset($_GET['action']) && $_GET['action']=='showreihungstests')
|
||||
|
||||
$studiengang_kz = isset($_REQUEST['studiengang_kz'])?$_REQUEST['studiengang_kz']:1;
|
||||
$semester = isset($_REQUEST['semester'])?$_REQUEST['semester']:-1;
|
||||
$gesamtzeit = 0;
|
||||
$persoenlichkeit = false;
|
||||
|
||||
echo '<form action="'.$_SERVER['PHP_SELF'].'" method="POST">';
|
||||
$stg_obj = new studiengang();
|
||||
@@ -412,108 +413,148 @@ foreach($stg_obj->result as $row)
|
||||
echo '<OPTION value="'.$row->studiengang_kz.'" '.$selected.'>'.$row->kuerzel.' - '.$row->bezeichnung.'</OPTION>';
|
||||
}
|
||||
echo '</SELECT>';
|
||||
echo '<SELECT name="semester">
|
||||
<OPTION value="">-- Alle --</OPTION>';
|
||||
for ($i=0;$i<9;$i++)
|
||||
{
|
||||
if ($semester==$i && $semester!='')
|
||||
echo "<option value=\"$i\" selected>$i</option>";
|
||||
else
|
||||
echo "<option value=\"$i\">$i</option>";
|
||||
}
|
||||
echo '</SELECT>';
|
||||
echo ' <input type="submit" name="show" value="OK"></form><br>';
|
||||
|
||||
$stsem = new studiensemester();
|
||||
$stsem->getFinished();
|
||||
foreach($stsem->studiensemester as $row)
|
||||
{
|
||||
$qry="SELECT
|
||||
UPPER(tbl_studiengang.typ || tbl_studiengang.kurzbz) as stg,
|
||||
semester,
|
||||
studiengang_kz,
|
||||
reihung,
|
||||
gebiet_id,
|
||||
tbl_gebiet.bezeichnung,
|
||||
zeit,
|
||||
multipleresponse,
|
||||
maxfragen,
|
||||
zufallfrage,
|
||||
zufallvorschlag,
|
||||
level_start,
|
||||
level_sprung_auf,
|
||||
level_sprung_ab,
|
||||
levelgleichverteilung,
|
||||
maxpunkte,
|
||||
antwortenprozeile
|
||||
FROM testtool.tbl_ablauf
|
||||
JOIN testtool.tbl_gebiet USING (gebiet_id)
|
||||
JOIN public.tbl_studiengang USING (studiengang_kz)
|
||||
WHERE studiengang_kz=".$db->db_add_param($studiengang_kz)."
|
||||
ORDER BY stg,semester,reihung";
|
||||
}
|
||||
$qry="SELECT
|
||||
UPPER(tbl_studiengang.typ || tbl_studiengang.kurzbz) as stg,
|
||||
semester,
|
||||
studiengang_kz,
|
||||
reihung,
|
||||
gebiet_id,
|
||||
tbl_gebiet.bezeichnung,
|
||||
zeit,
|
||||
multipleresponse,
|
||||
maxfragen,
|
||||
zufallfrage,
|
||||
zufallvorschlag,
|
||||
level_start,
|
||||
level_sprung_auf,
|
||||
level_sprung_ab,
|
||||
levelgleichverteilung,
|
||||
maxpunkte,
|
||||
antwortenprozeile,
|
||||
(SELECT SUM (zeit) AS sum FROM testtool.tbl_gebiet JOIN testtool.tbl_ablauf USING (gebiet_id) WHERE studiengang_kz='".$studiengang_kz."'";
|
||||
if ($semester!='')
|
||||
$qry.=" AND semester='".$semester."'";
|
||||
$qry.=" ) AS gesamtzeit,
|
||||
(SELECT SUM (zeit) AS sum FROM testtool.tbl_gebiet JOIN testtool.tbl_ablauf USING (gebiet_id) WHERE studiengang_kz='".$studiengang_kz."'";
|
||||
if ($semester!='')
|
||||
$qry.=" AND semester='".$semester."'";
|
||||
$qry.=" )-'00:40:00'::time without time zone AS gesamtzeit_persoenlichkeit
|
||||
FROM testtool.tbl_ablauf
|
||||
JOIN testtool.tbl_gebiet USING (gebiet_id)
|
||||
JOIN public.tbl_studiengang USING (studiengang_kz)
|
||||
WHERE studiengang_kz='".$studiengang_kz."'";
|
||||
if ($semester!='')
|
||||
$qry.=" AND semester='".$semester."'";
|
||||
|
||||
$qry.=" ORDER BY stg,semester,reihung";
|
||||
|
||||
if($result = $db->db_query($qry))
|
||||
//echo $qry;
|
||||
$row=$db->db_fetch_object($db->db_query($qry));
|
||||
$num_rows=$db->db_num_rows($db->db_query($qry));
|
||||
if ($studiengang_kz!=1 && $num_rows!=0)
|
||||
{
|
||||
$num_rows=$db->db_num_rows($result);
|
||||
|
||||
/* echo "<script type='text/javascript'>
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#".$row->studiensemester."').tablesorter(
|
||||
{
|
||||
sortList: [[2,0]],
|
||||
widgets: ['zebra']
|
||||
});
|
||||
}
|
||||
);
|
||||
</script>
|
||||
<table id='".$row->studiensemester."' class='tablesorter' style='width:auto'>
|
||||
<tbody>";*/
|
||||
|
||||
echo "<table class='liste table-stripeclass:alternate table-autostripe' border='0' style='width:auto'>
|
||||
|
||||
<tbody style='width:auto; padding-left:10px'>";
|
||||
|
||||
echo "<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>STG</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>SEM</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>KZ</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>NR</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Gebiet_id</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Bezeichnung</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Zeit</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Multiple Response' style='cursor:help'>MR</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Maxfragen</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Zufallsfrage' style='cursor:help'>ZFF</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Zufallsvorschlag' style='cursor:help'>ZFV</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Level-Start</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Level auf</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Level ab</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Levelgleichverteilung' style='cursor:help'>LGV</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Maxpunkte</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Antwortenprozeile' style='cursor:help'>AWPZ</div></th>\n";
|
||||
echo "</tr></thead>";
|
||||
echo "<tbody>";
|
||||
for($i=0;$i<$num_rows;$i++)
|
||||
$gesamtzeit = $row->gesamtzeit;
|
||||
if($result = $db->db_query($qry))
|
||||
{
|
||||
$row=$db->db_fetch_object($result);
|
||||
echo "<tr>";
|
||||
echo "<td>$row->stg</td>
|
||||
<td>$row->semester</td>
|
||||
<td>$row->studiengang_kz</td>
|
||||
<td>$row->reihung</td>
|
||||
<td>$row->gebiet_id</td>
|
||||
<td>$row->bezeichnung</td>
|
||||
<td>$row->zeit</td>
|
||||
<td align='center'><img src='../../skin/images/".($row->multipleresponse=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'>$row->maxfragen</td>
|
||||
<td align='center'><img src='../../skin/images/".($row->zufallfrage=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'><img src='../../skin/images/".($row->zufallvorschlag=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'>$row->level_start</td>
|
||||
<td align='center'>$row->level_sprung_auf</td>
|
||||
<td align='center'>$row->level_sprung_ab</td>
|
||||
<td align='center'><img src='../../skin/images/".($row->levelgleichverteilung=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'>$row->maxpunkte</td>
|
||||
<td align='center'>$row->antwortenprozeile</td>";
|
||||
echo "</tr>\n";
|
||||
$num_rows=$db->db_num_rows($result);
|
||||
echo "<table class='liste table-stripeclass:alternate table-autostripe' border='0' style='width:auto'>
|
||||
|
||||
<tbody style='width:auto; padding-left:10px'>";
|
||||
|
||||
echo "<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>STG</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>SEM</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>KZ</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>NR</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Gebiet_id</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Bezeichnung</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Zeit</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Multiple Response' style='cursor:help'>MR</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Maxfragen</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Zufallsfrage' style='cursor:help'>ZFF</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Zufallsvorschlag' style='cursor:help'>ZFV</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Level-Start</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Level auf</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Level ab</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Levelgleichverteilung' style='cursor:help'>LGV</div></th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'>Maxpunkte</th>
|
||||
<th style='padding-left:5px; padding-right:5px' class='table-sortable:default'><div title='Antwortenprozeile' style='cursor:help'>AWPZ</div></th>\n";
|
||||
echo "</tr></thead>";
|
||||
echo "<tbody>";
|
||||
for($i=0;$i<$num_rows;$i++)
|
||||
{
|
||||
$row=$db->db_fetch_object($result);
|
||||
echo "<tr>";
|
||||
echo "<td>$row->stg</td>
|
||||
<td>$row->semester</td>
|
||||
<td>$row->studiengang_kz</td>
|
||||
<td>$row->reihung</td>
|
||||
<td>$row->gebiet_id</td>
|
||||
<td>$row->bezeichnung</td>";
|
||||
if ($row->gebiet_id==7)
|
||||
{
|
||||
echo "<td>00:20:00*</td>";
|
||||
$gesamtzeit = $row->gesamtzeit_persoenlichkeit; //Das Gebiet Persönlichkeit wird mit 20 Min. angezeigt und berechnet, läuft im System aber 60 Min.
|
||||
$persoenlichkeit = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "<td>$row->zeit</td>";
|
||||
}
|
||||
echo "<td align='center'><img src='../../skin/images/".($row->multipleresponse=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'>$row->maxfragen</td>
|
||||
<td align='center'><img src='../../skin/images/".($row->zufallfrage=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'><img src='../../skin/images/".($row->zufallvorschlag=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'>$row->level_start</td>
|
||||
<td align='center'>$row->level_sprung_auf</td>
|
||||
<td align='center'>$row->level_sprung_ab</td>
|
||||
<td align='center'><img src='../../skin/images/".($row->levelgleichverteilung=='t'?'true.png':'false.png')."' height='20'></td>
|
||||
<td align='center'>$row->maxpunkte</td>
|
||||
<td align='center'>$row->antwortenprozeile</td>";
|
||||
echo "</tr>\n";
|
||||
}
|
||||
echo "<tr>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td align='right'>Gesamt </td>";
|
||||
echo "<td>".$gesamtzeit."</td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "<td></td>";
|
||||
echo "</tr>\n";
|
||||
}
|
||||
else
|
||||
echo "Kein Eintrag gefunden!";
|
||||
|
||||
echo "</tbody></table>";
|
||||
if ($persoenlichkeit)
|
||||
echo "<div style='font-size:smaller'>*Das Gebiet Persönlichkeit ist mit 60 Minuten eingestellt, kann aber in der Regel in 15-20 Minuten bearbeitet werden.</div>";
|
||||
|
||||
echo "<br>";
|
||||
}
|
||||
else
|
||||
echo "Kein Eintrag gefunden!";
|
||||
|
||||
echo "</tbody></table>";
|
||||
echo "<br><br>";
|
||||
//Übersicht freigeschaltene Reihungstest
|
||||
echo '<hr>';
|
||||
echo 'Freigeschaltene Reihungstests:';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user