This commit is contained in:
Andreas Österreicher
2008-06-04 15:46:27 +00:00
parent b8a5efcbdc
commit 721d8075f4
4 changed files with 230 additions and 2 deletions
+1
View File
@@ -147,6 +147,7 @@ if(isset($_POST['save']) && isset($_SESSION['prestudent_id']))
{
echo '<form method="post">
<SELECT name="prestudent">';
echo '<OPTION value="13478">Dummy Dieter</OPTION>\n';
foreach($ps->result as $prestd)
echo '<OPTION value="'.$prestd->prestudent_id.'">'.$prestd->nachname.' '.$prestd->vorname."</OPTION>\n";
echo '</SELECT>';
+3 -1
View File
@@ -435,7 +435,7 @@ class prestudent extends person
// * @param $studiensemester_kurzbz Studiensemester fuer das die Int. und Bewerber
// * geladen werden sollen
// *******************************************************************************
function loadIntessentenUndBewerber($studiensemester_kurzbz, $studiengang_kz, $semester=nulll, $typ=null)
function loadIntessentenUndBewerber($studiensemester_kurzbz, $studiengang_kz, $semester=nulll, $typ=null, $orgform=null)
{
$qry = "SELECT
*, a.anmerkung, tbl_person.anmerkung as anmerkungen
@@ -457,6 +457,8 @@ class prestudent extends person
if($semester!=null)
$qry.=" AND ausbildungssemester='$semester'";
if($orgform!=null && $orgform!='')
$qry.=" AND tbl_prestudentrolle.orgform_kurzbz='$orgform'";
switch ($typ)
{
@@ -0,0 +1,217 @@
<?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> and
* Gerald Raab <gerald.raab@technikum-wien.at>.
*/
require_once('../config.inc.php');
require_once('../../include/benutzerberechtigung.class.php');
require_once('../../include/datum.class.php');
require_once('../../include/functions.inc.php');
require_once('../../include/person.class.php');
require_once('../../include/prestudent.class.php');
require_once('../../include/pruefling.class.php');
if (!$conn = pg_pconnect(CONN_STRING))
die('Es konnte keine Verbindung zum Server aufgebaut werden.');
$datum_obj = new datum();
$user = get_uid();
$rechte = new benutzerberechtigung($conn);
$rechte->getBerechtigungen($user);
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Reihungstest ADMIN</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=ISO-8859-9" />
<script src="../../include/js/tablesort/table.js" type="text/javascript"></script>
</head>
<body class="Background_main">
<h2>Reihungstest - Admin</h2>';
if(!$rechte->isBerechtigt('admin', 0, 'suid'))
die('Sie haben keine Berechtigung für diese Seite');
//Anzeigen der kommenden Reihungstesttermine:
echo '<br><br><a href="'.$_SERVER['PHP_SELF'].'?action=showreihungstests">Anzeigen der kommenden Reihungstests</a>';
if(isset($_GET['action']) && $_GET['action']=='showreihungstests')
{
$qry = "SELECT kurzbzlang, datum,ort_kurzbz,anmerkung, uhrzeit, insertvon,reihungstest_id
FROM public.tbl_reihungstest JOIN public.tbl_studiengang USING (studiengang_kz)
WHERE datum>=now() ORDER BY datum";
if($result = pg_query($conn, $qry))
{
echo '<table class="liste table-stripeclass:alternate table-autostripe">
<thead>
<tr>
<th>Kurzbz</th>
<th>Datum</th>
<th>Ort</th>
<th>Uhrzeit</th>
<th>Anmerkung</th>
<th>InsertVon</th>
<th>ReihungstestID</th>
</tr>
</thead>
<tbody>';
while($row = pg_fetch_object($result))
{
echo '<tr>';
echo "<td>$row->kurzbzlang</td>";
echo "<td>".$datum_obj->formatDatum($row->datum,'d.m.Y')."</td>";
echo "<td>$row->ort_kurzbz</td>";
echo "<td>$row->uhrzeit</td>";
echo "<td>$row->anmerkung</td>";
echo "<td>$row->insertvon</td>";
echo "<td>$row->reihungstest_id</td>";
echo '</tr>';
}
echo '</tbody></table>';
}
}
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";
if(pg_query($conn, $qry))
echo ' <b>Antworten wurden gelöscht</b>';
else
echo ' <b>Fehler beim Löschen der Antworten</b>';
}
//$prestudent_id=null;
$ps=new prestudent($conn);
$datum=date('Y-m-d');
$ps->getPrestudentRT($datum,true);
if ($ps->num_rows==0)
$ps->getPrestudentRT($datum);
echo '<hr><br>Antworten eines Gebietes einer Person löschen<br>';
echo '<form action="'.$_SERVER['PHP_SELF'].'" method="post" onsubmit="return confirm(\'Antworten dieses Gebietes wirklich löschen?\')">
Person: <SELECT name="prestudent">';
foreach($ps->result as $prestd)
{
if(isset($_POST['prestudent']) && $_POST['prestudent']==$prestd->prestudent_id)
$selected='selected';
else
$selected='';
echo '<OPTION value="'.$prestd->prestudent_id.'" '.$selected.'>'.$prestd->nachname.' '.$prestd->vorname."</OPTION>\n";
}
echo '</SELECT>';
$qry = "SELECT * FROM testtool.tbl_gebiet ORDER BY bezeichnung";
if($result = pg_query($conn, $qry))
{
echo 'Gebiet: <SELECT name="gebiet">';
while($row = pg_fetch_object($result))
{
if(isset($_POST['gebiet']) && $_POST['gebiet']==$row->gebiet_id)
$selected='selected';
else
$selected='';
echo "<OPTION value='$row->gebiet_id' $selected>$row->bezeichnung</OPTION>";
}
echo '</SELECT>';
}
echo '<input type="submit" value="Teilgebiet l&ouml;schen" name="deleteteilgebiet"></form>';
if(isset($_POST['deleteteilgebiet']))
{
if(isset($_POST['prestudent']) && isset($_POST['gebiet']) &&
is_numeric($_POST['prestudent']) && is_numeric($_POST['gebiet']))
{
$pruefling = new pruefling($conn);
$pruefling->getPruefling($_POST['prestudent']);
if($pruefling->pruefling_id=='')
die('Pruefling wurde nicht gefunden');
$qry = "DELETE FROM testtool.tbl_antwort
WHERE pruefling_id='$pruefling->pruefling_id' AND
frage_id IN (SELECT frage_id FROM testtool.tbl_frage WHERE gebiet_id='".$_POST['gebiet']."')";
if($result = pg_query($conn, $qry))
{
echo '<b>'.pg_affected_rows($result).' Antworten wurden gelöscht</b>';
}
else
echo '<b>Fehler beim Löschen der Daten</b>';
}
}
echo '<hr><br><form action="'.$_SERVER['PHP_SELF'].'" method="POST">Testergebnisse der Person mit der Prestudent_id <input type="text" name="prestudent_id"><input type="submit" value="anzeigen" name="testergebnisanzeigen"></form>';
if(isset($_POST['testergebnisanzeigen']) && isset($_POST['prestudent_id']))
{
if(is_numeric($_POST['prestudent_id']) && $_POST['prestudent_id']!='')
{
$qry="SELECT nachname,vorname,tbl_frage.gruppe_kurzbz,person_id,prestudent_id,pruefling_id,kurzbz,nummer,antwort,loesung
FROM testtool.tbl_antwort
JOIN testtool.tbl_frage USING (frage_id)
JOIN testtool.tbl_gebiet USING (gebiet_id)
JOIN testtool.tbl_pruefling USING (pruefling_id)
JOIN public.tbl_prestudent USING (prestudent_id)
JOIN public.tbl_person USING (person_id)
WHERE prestudent_id='".$_POST['prestudent_id']."'
ORDER BY kurzbz,nummer";
if($result = pg_query($conn, $qry))
{
echo '<table class="liste table-stripeclass:alternate table-autostripe">
<thead>
<tr>
<th>Nachname</th>
<th>Vorname</th>
<th>Gruppe</th>
<th>PersonID</th>
<th>PrestudentID</th>
<th>PrueflingID</th>
<th>Kurzbz</th>
<th>Nummer</th>
<th>Antwort</th>
<th>Lösung</th>
</tr>
</thead>
<tbody>';
while($row = pg_fetch_object($result))
{
echo '<tr>';
echo "<td>$row->nachname</td>";
echo "<td>$row->vorname</td>";
echo "<td>$row->gruppe_kurzbz</td>";
echo "<td>$row->person_id</td>";
echo "<td>$row->prestudent_id</td>";
echo "<td>$row->pruefling_id</td>";
echo "<td>$row->kurzbz</td>";
echo "<td>$row->nummer</td>";
echo "<td>$row->antwort</td>";
echo "<td>$row->loesung</td>";
echo '</tr>';
}
echo '</tbody></table>';
}
}
}
?>
@@ -26,6 +26,7 @@
require_once('../../include/reihungstest.class.php');
require_once('../../include/ort.class.php');
require_once('../../include/datum.class.php');
require_once('../../include/benutzerberechtigung.class.php');
require_once('../../include/Excel/excel.php');
@@ -40,6 +41,8 @@
$stg_arr = array();
$error = false;
$rechte = new benutzerberechtigung($conn);
$rechte->getBerechtigungen($user);
if(isset($_GET['excel']))
{
@@ -266,7 +269,7 @@
echo "</td>";
echo "<td align='right'><INPUT type='button' value='Neuen Reihungstesttermin anlegen' onclick='window.location.href=\"".$_SERVER['PHP_SELF']."?stg_kz=$stg_kz&neu=true\"' >";
echo "</td></tr></table><br><br>";
echo "</td></tr></table><br>";
$reihungstest = new reihungstest($conn);
@@ -284,6 +287,11 @@
$reihungstest->uhrzeit = date('H:i:s');
}
if($rechte->isBerechtigt('admin',0, 'suid'))
{
echo '<a href="reihungstest_administration.php">Administration</a>';
}
//Formular zum Bearbeiten des Reihungstests
echo '<HR>';
echo "<FORM method='POST'>";