mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 13:49:29 +00:00
This commit is contained in:
@@ -548,21 +548,7 @@
|
||||
<td class="tdwidth10" nowrap> </td>
|
||||
<td class="tdwrap"><a class="Item" href="public/rektortw.html" target="content"><img src="../skin/images/menu_item.gif" width="7" height="9"> Rektor Technikum Wien</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdwidth10" nowrap> </td>
|
||||
<td class="tdwrap"><a href="public/kollegium.html" class="MenuItem" onClick="js_toggle_container('Kollegium');" target="content"><img src="../skin/images/menu_item.gif" width="7" height="9"> Fachhochschulkollegium</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdwidth10" nowrap></td>
|
||||
<td class="tdwrap">
|
||||
<table class="tabcontent" id="Kollegium" style="display: none;">
|
||||
<tr>
|
||||
<td class="tdwidth10" nowrap> </td>
|
||||
<td class="tdwrap"><a class="Item" href="private/info/kollegiumswahl.html" target="content"><img src="../skin/images/menu_item.gif" width="7" height="9"> Kollegiumswahl 2008</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tdwidth10" nowrap> </td>
|
||||
<td class="tdwrap"><a href="?Jahresplan" class="MenuItem" onClick="return(js_toggle_container('Jahresplan'));"><img src="../skin/images/menu_item.gif" width="7" height="9"> Jahresplan</a>
|
||||
@@ -592,6 +578,19 @@
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdwrap"><a href="public/kollegium.html" class="MenuItem" onClick="js_toggle_container('Kollegium');" target="content"><img src="../skin/images/menu_item.gif" width="7" height="9"> Fachhochschulkollegium</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tdwrap">
|
||||
<table class="tabcontent" id="Kollegium" style="display: none;">
|
||||
<tr>
|
||||
<td class="tdwidth10" nowrap> </td>
|
||||
<td class="tdwrap"><a class="Item" href="private/info/kollegiumswahl.html" target="content"><img src="../skin/images/menu_item.gif" width="7" height="9"> Kollegiumswahl 2008</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- Hauptmenue Studentenvertretung -->
|
||||
<!-- <tr>
|
||||
<td class="tdwrap"><a href="?Studentenvertretung" class="MenuItem" onClick="return(js_toggle_container('Studentenvertretung'));"><img src="../skin/images/menu_item.gif" width="7" height="9"> Studentenvertretung</a></td>
|
||||
|
||||
@@ -9,16 +9,31 @@ require_once('../include/studiengang.class.php');
|
||||
|
||||
$rdf_url='http://www.technikum-wien.at/lehrverbandsgruppe/';
|
||||
|
||||
$uid=get_uid();
|
||||
|
||||
if (!$conn = pg_pconnect(CONN_STRING))
|
||||
$error_msg='Es konnte keine Verbindung zum Server aufgebaut werden!';
|
||||
|
||||
// Berechtigungen ermitteln
|
||||
$berechtigt_studiengang=array();
|
||||
$uid='';
|
||||
$berechtigung=new benutzerberechtigung($conn);
|
||||
$berechtigung->getBerechtigungen($uid);
|
||||
//$berechtigt_studiengang=$berechtigung->getStgKz();
|
||||
$berechtigt_studiengang=$berechtigung->getStgKz('admin');
|
||||
|
||||
// Berechtigungen ermitteln
|
||||
if(!isset($_SERVER['REMOTE_USER']))
|
||||
{
|
||||
if(!isset($_GET['studiengang_kz']))
|
||||
{
|
||||
die('Wenn keine Authentifizierung stattfindet, muss eine studiengang_kz uebergeben werden');
|
||||
}
|
||||
else
|
||||
{
|
||||
$berechtigt_studiengang=array($_GET['studiengang_kz']);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$uid=get_uid();
|
||||
$berechtigung->getBerechtigungen($uid);
|
||||
$berechtigt_studiengang=$berechtigung->getStgKz('admin');
|
||||
}
|
||||
$orgform_sequence=array();
|
||||
|
||||
if(isset($_GET['prestudent']) && $_GET['prestudent']=='false')
|
||||
|
||||
Reference in New Issue
Block a user