mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 16:44:28 +00:00
114 lines
3.7 KiB
PHP
114 lines
3.7 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Authors: Christian Paminger <[email protected]>,
|
|
* Andreas Oesterreicher <[email protected]>,
|
|
* Rudolf Hangl <[email protected]> and
|
|
* Gerald Raab <[email protected]>.
|
|
*/
|
|
|
|
require_once('../../../config/cis.config.inc.php');
|
|
require_once('../../../include/functions.inc.php');
|
|
require_once('../../../include/studiensemester.class.php');
|
|
require_once('../../../include/basis_db.class.php');
|
|
require_once('../../../include/phrasen.class.php');
|
|
require_once('../../../include/benutzerberechtigung.class.php');
|
|
|
|
$sprache = getSprache();
|
|
$p = new phrasen($sprache);
|
|
|
|
if (!$db = new basis_db())
|
|
die($p->t('global/fehlerBeimOeffnenDerDatenbankverbindung'));
|
|
|
|
$uid=get_uid();
|
|
|
|
if(isset($_GET['uid']))
|
|
{
|
|
// Administratoren duerfen die UID als Parameter uebergeben um die Studienerfolgsbestätigung
|
|
// von anderen Personen anzuzeigen
|
|
|
|
$rechte = new benutzerberechtigung();
|
|
$rechte->getBerechtigungen($uid);
|
|
if($rechte->isBerechtigt('admin'))
|
|
$uid=$_GET['uid'];
|
|
}
|
|
|
|
if(isset($_GET['lang']) && $_GET['lang']=='en')
|
|
$xsl = 'StudienerfolgEng';
|
|
else
|
|
$xsl = 'Studienerfolg';
|
|
|
|
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title>'.$p->t('tools/studienerfolgsbestaetigung').'</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link href="../../../skin/style.css.php" rel="stylesheet" type="text/css">
|
|
<script language="JavaScript" type="text/javascript">
|
|
function createStudienerfolg()
|
|
{
|
|
var stsem = document.getElementById("stsem").value;
|
|
var finanzamt = document.getElementById("finanzamt").checked;
|
|
|
|
if(finanzamt)
|
|
finanzamt = "&typ=finanzamt";
|
|
else
|
|
finanzamt = "";
|
|
|
|
if(stsem == "alle")
|
|
alle = "&all=1";
|
|
else
|
|
alle = "";
|
|
|
|
window.location.href= "../pdfExport.php?xml=studienerfolg.rdf.php&xsl='.$xsl.'&ss="+stsem+"&uid='.$uid.'"+finanzamt+alle;
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>'.$p->t('tools/studienerfolgsbestaetigung').'</h1>
|
|
<br>'.$p->t('tools/studiensemesterAuswaehlen').'<br><br>';
|
|
|
|
$qry = "SELECT distinct studiensemester_kurzbz FROM campus.vw_student JOIN public.tbl_prestudentstatus USING(prestudent_id) WHERE uid='".addslashes($uid)."'";
|
|
if($result = $db->db_query($qry))
|
|
{
|
|
echo $p->t('global/studiensemester').': <SELECT id="stsem">';
|
|
echo '<OPTION value="alle">alle Semester</OPTION>';
|
|
|
|
$stsem_obj = new studiensemester();
|
|
$stsem = $stsem_obj->getPrevious();
|
|
|
|
while($row = $db->db_fetch_object($result))
|
|
{
|
|
if($stsem==$row->studiensemester_kurzbz)
|
|
$selected = 'selected';
|
|
else
|
|
$selected = '';
|
|
|
|
echo '<OPTION value="'.$row->studiensemester_kurzbz.'" '.$selected.'>'.$row->studiensemester_kurzbz.'</OPTION>';
|
|
}
|
|
|
|
echo '</SELECT>';
|
|
echo '<br><br><INPUT type="checkbox" id="finanzamt">'.$p->t('tools/vorlageWohnsitzfinanzamt').'<br>';
|
|
echo '<br><br><INPUT type="button" value="'.$p->t('global/erstellen').'" onclick="createStudienerfolg()" />';
|
|
}
|
|
|
|
echo '
|
|
</body>
|
|
</html>';
|
|
?>
|