This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
forked from jankul/studip-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgreeting_logged_in.php
67 lines (66 loc) · 2.83 KB
/
greeting_logged_in.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<div style="margin-left: 1.5em;">
<? if ($GLOBALS['PERM']->have_perm('admin')) : ?>
<a class="click_me" href="#" onClick="location.href='?dispatch=user_management';">
<div>
<span class="click_head"> Benutzerverwaltung </span>
<p>Bearbeiten von Nutzerdetails und Neueintragen von Personen.</p>
</div>
</a>
<a class="click_me" href="#" onClick="location.href='?dispatch=clearing';">
<div>
<span class="click_head"> Plugins freischalten </span>
<p>Neu eingetragene Plugins für die Öffentlichkeit freischalten.</p>
</div>
</a>
<? endif ?>
<? if ($GLOBALS['PERM']->have_perm('author') && !$GLOBALS['PERM']->have_perm('admin')) : ?>
<a class="click_me" href="#" onClick="location.href='?dispatch=assi';">
<div>
<span class="click_head"> Plugin eintragen </span>
<p>Tragen Sie hier ein neues Plugin ein. Anschließend wird es von einem Administrator geprüft und freigegeben.</p>
</div>
</a>
<a class="click_me" href="#" onClick="location.href='?dispatch=view_own_plugins';">
<div>
<span class="click_head"> Meine Plugins </span>
<p>Hier erhalten Sie eine Übersicht über die von Ihnen eingetragenen Plugins.</p>
</div>
</a>
<? endif ?>
<a class="click_me" href="#" onClick="location.href='?dispatch=show_profile';">
<div>
<span class="click_head"> Mein Profil </span>
<p>Bearbeiten Sie hier Ihre persönlichen Nutzerdaten innerhalb des Plugin-Marktplatzes.</p>
</div>
</a>
<a class="click_me" href="#" onClick="location.href='?dispatch=faq';">
<div>
<span class="click_head"> FAQ </span>
<p>Haben Sie Fragen zum Umgang mit dem Plugin-Marktplatz oder allgemein zu Plugins? Hier finden Sie sicherlich eine Antwort.</p>
</div>
</a>
</div>
<!--
<? if ($GLOBALS['PERM']->have_perm('admin')) : ?>
<DIV CLASS="logged_in_big_button" onClick="location.href='?dispatch=user_management';">
<DIV CLASS="logged_in_big_button_label">Benutzerverwaltung</DIV>
</DIV>
<DIV CLASS="logged_in_big_button" onClick="location.href='?dispatch=clearing';">
<DIV CLASS="logged_in_big_button_label">Plugins freischalten</DIV>
</DIV>
<? endif ?>
<? if ($GLOBALS['PERM']->have_perm('author') && !$GLOBALS['PERM']->have_perm('admin')) : ?>
<DIV CLASS="logged_in_big_button" onClick="location.href='?dispatch=assi';">
<DIV CLASS="logged_in_big_button_label">Plugin eintragen</DIV>
</DIV>
<DIV CLASS="logged_in_big_button" onClick="location.href='?dispatch=view_own_plugins';">
<DIV CLASS="logged_in_big_button_label">Meine Plugins</DIV>
</DIV>
<? endif ?>
<DIV CLASS="logged_in_big_button" onClick="location.href='?dispatch=show_profile';">
<DIV CLASS="logged_in_big_button_label">Mein Profil</DIV>
</DIV>
<DIV CLASS="logged_in_big_button" onClick="location.href='?dispatch=faq';">
<DIV CLASS="logged_in_big_button_label">FAQ</DIV>
</DIV>
-->