forked from CAcertOrg/cats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenue_admin.php
More file actions
executable file
·19 lines (17 loc) · 904 Bytes
/
menue_admin.php
File metadata and controls
executable file
·19 lines (17 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
echo ' <div id="menu_right">';
if($_SESSION['profile']['loggedin']==1)echo '<a class="login" href="?site=login&id=logout">'.Menue_03.'</a>';
else echo '<a class="login" href="?site=login">'.Menue_02.'</a>';
if($_SESSION['profile']['language']=='DE')echo ' <a class="help" rel="help" href="doku/admin_DE.pdf">'.Menue_01.'</a>';
else echo ' <a class="help" rel="help" href="doku/admin_EN.pdf">'.Menue_01.'</a>';
if($_SESSION['profile']['loggedin']==1)echo ' <a class="help" href="?site=showCertificateInfo">Info</a>';
echo '</div>';
echo ' <div id="menue_left">';
if($_SESSION['profile']['loggedin']==1){
echo '<a href="?site=topic">'.Menue_07.'</a>';
echo '<a href="?site=statistic">'.Menue_05.'</a>';
echo '<a href="?site=start_test">'.Menue_06.'</a>';
echo '<a href="?site=progress">'.Menue_04.'</a>';
}
echo "</div>\n";
?>