da2eaa6d6f8367bf912f8f72272dedd012cbf3e2
Bernd Wurst Subusers-Modul in einer ers...

Bernd Wurst authored 12 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
Bernd Wurst Subusers-Modul in einer ers...

Bernd Wurst authored 12 years ago

17) require_once('inc/icons.php');
18) 
Bernd Wurst changed subusers module to...

Bernd Wurst authored 12 years ago

19) require_role(ROLE_SYSTEMUSER);
20) 
Bernd Wurst Subusers-Modul in einer ers...

Bernd Wurst authored 12 years ago

21) include("subuser.php");
22) 
23) title("Zusätzliche Admin-Zugänge");
24) 
25) output('<p>Sie können für dieses Admin-Interface zusätzliche Accounts anlegen, die dann nur Zugriff auf einzelne Module haben. So ist es z.B. möglich, einen Mail-Admin und einen Webserver-Admin festzulegen.</p><p><strong>Wichtig:</strong> Diese zusätzlichen Zugänge gelten ausschließlich für dieses Web-Interface, nicht für die Anmeldung am Server.</p>');
26) 
27) $subusers = list_subusers();
28) 
29) $available_modules = available_modules();
30) DEBUG($available_modules);
31) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

32) if ($subusers) {
33)     output('<h4>Momentan vorhandene zusätzliche Admin-Zugänge</h4>');
34)     foreach ($subusers as $subuser) {
35)         output('<div><p><strong>'.$subuser['username'].'</strong> '.internal_link('delete.php', icon_delete('Löschen'), 'subuser='.$subuser['id']).' '.internal_link('edit.php', icon_edit('Bearbeiten'), 'subuser='.$subuser['id']).'</p>');
36)         output('<ul>');
37)         foreach ($subuser['modules'] as $mod) {
Bernd Wurst Subuser-Berechtigungen nur...

Bernd Wurst authored 5 years ago

38)             if (isset($available_modules[$mod])) {
39)                 output('<li>'.$available_modules[$mod].'</li>');
40)             }
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

41)         }
42)         output('</ul></div>');
Bernd Wurst Subusers-Modul in einer ers...

Bernd Wurst authored 12 years ago

43)     }
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

44) } else {
45)     output('<p><em>Sie haben bisher keine zusätzlichen Admin-Zugänge</em></p>');