mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
119 lines
3.9 KiB
PHP
119 lines
3.9 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
|
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
|
* Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
|
|
*/
|
|
// header für no cache
|
|
header("Cache-Control: no-cache");
|
|
header("Cache-Control: post-check=0, pre-check=0",false);
|
|
header("Expires Mon, 26 Jul 1997 05:00:00 GMT");
|
|
header("Pragma: no-cache");
|
|
// DAO
|
|
require_once('../config/vilesci.config.inc.php');
|
|
require_once('../include/studiengang.class.php');
|
|
require_once('../include/fachbereich.class.php');
|
|
|
|
if (isset($_GET['studiengang_kz']))
|
|
{
|
|
if (isset($_GET['institut']))
|
|
die('Only one parameter please.');
|
|
}
|
|
elseif (!isset($_GET['institut']))
|
|
die('No Parameters!');
|
|
|
|
if(isset($_GET['studiengang_kz']))
|
|
{
|
|
$stg = $_GET['studiengang_kz'];
|
|
$obj = new studiengang();
|
|
if (!$obj->load($stg))
|
|
die($obj->errormsg);
|
|
}
|
|
|
|
if(isset($_GET['institut']))
|
|
{
|
|
$institut = $_GET['institut'];
|
|
$obj = new fachbereich();
|
|
if (!$obj->load($institut))
|
|
die($obj->errormsg);
|
|
}
|
|
|
|
// content type setzen
|
|
header("Content-type: application/xhtml+xml");
|
|
// xml
|
|
echo '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>';
|
|
|
|
$db = new basis_db();
|
|
|
|
$rdf_url='http://www.technikum-wien.at/lektoren';
|
|
|
|
echo '
|
|
<RDF:RDF
|
|
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:LEKTOREN="'.$rdf_url.'/rdf#"
|
|
>
|
|
|
|
<RDF:Seq about="'.$rdf_url.'/liste">
|
|
';
|
|
|
|
$qry = "SELECT
|
|
uid, fixangestellt, person_id, alias, anrede, titelpost, titelpre, nachname, vorname, kompetenzen
|
|
FROM
|
|
public.tbl_mitarbeiter
|
|
JOIN public.tbl_benutzer ON(uid=mitarbeiter_uid)
|
|
JOIN public.tbl_person USING(person_id)
|
|
JOIN public.tbl_benutzerfunktion USING (uid)
|
|
WHERE
|
|
funktion_kurzbz='oezuordnung'
|
|
AND tbl_benutzer.aktiv
|
|
AND oe_kurzbz='$obj->oe_kurzbz'
|
|
AND (datum_bis >= now() OR datum_bis IS NULL)
|
|
AND (datum_von <= now() OR datum_von IS NULL)
|
|
ORDER BY
|
|
nachname, vorname, vornamen, person_id;";
|
|
|
|
if($db->db_query($qry))
|
|
{
|
|
while($lektoren = $db->db_fetch_object())
|
|
{
|
|
echo '
|
|
<RDF:li>
|
|
<RDF:Description id="'.$lektoren->uid.'" about="'.$rdf_url.'/'.$lektoren->uid.'" >
|
|
<LEKTOREN:uid><![CDATA['.$lektoren->uid.']]></LEKTOREN:uid>
|
|
<LEKTOREN:person_id><![CDATA['.$lektoren->person_id.']]></LEKTOREN:person_id>
|
|
<LEKTOREN:anrede><![CDATA['.$lektoren->anrede.']]></LEKTOREN:anrede>
|
|
<LEKTOREN:titelpre><![CDATA['.$lektoren->titelpre.']]></LEKTOREN:titelpre>
|
|
<LEKTOREN:vorname><![CDATA['.$lektoren->vorname.']]></LEKTOREN:vorname>
|
|
<LEKTOREN:nachname><![CDATA['.$lektoren->nachname.']]></LEKTOREN:nachname>
|
|
<LEKTOREN:titelpost><![CDATA['.$lektoren->titelpost.']]></LEKTOREN:titelpost>
|
|
<LEKTOREN:email><![CDATA['
|
|
.($lektoren->alias=='' ? $lektoren->uid : $lektoren->alias).'@'.DOMAIN.
|
|
']]></LEKTOREN:email>
|
|
<LEKTOREN:fixangestellt>'
|
|
.(strtolower($lektoren->fixangestellt)=='t' ? 'TRUE' : 'FALSE').
|
|
'</LEKTOREN:fixangestellt>
|
|
<LEKTOREN:kompetenzen><![CDATA['.$lektoren->kompetenzen.']]></LEKTOREN:kompetenzen>
|
|
</RDF:Description>
|
|
</RDF:li>';
|
|
}
|
|
}
|
|
|
|
?>
|
|
</RDF:Seq>
|
|
|
|
</RDF:RDF>
|