5effc2bd7685822df276c1372dab480cff321941
bernd webinterface => /webinterface

bernd authored 17 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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
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) */
bernd webinterface => /webinterface

bernd authored 17 years ago

16) 
17) $role = $_SESSION['role'];
18) 
bernd Auch mailaccounts können si...

bernd authored 16 years ago

19) if ($role == ROLE_ANONYMOUS) {
bernd eliminate .php extensions f...

bernd authored 15 years ago

20)   $menu["index_login"] = array("label" => "Login", "file" => "index", "weight" => 0);
Bernd Wurst jQuery-based Certlogin, so...

Bernd Wurst authored 11 years ago

21)   $menu["certlogin"] = array("label" => "Zertifikat-Login", "file" => "certlogin", "weight" => 10);
bernd Auch mailaccounts können si...

bernd authored 16 years ago

22) } else {
bernd Ermögliche Client-Cert-Logi...

bernd authored 12 years ago

23)   if ($role & (ROLE_SYSTEMUSER | ROLE_SUBUSER | ROLE_VMAIL_ACCOUNT))
bernd Menü-Einträge nicht gleich...

bernd authored 13 years ago

24)     $menu["index_cert"] = array("label" => "Client-Zertifikat", "file" => "cert", "weight" => 10, "submenu" => "index_index");
bernd Passwort-Ändern geht jetzt...

bernd authored 13 years ago

25)   if ($role & (ROLE_SYSTEMUSER | ROLE_CUSTOMER)) {
bernd eliminate .php extensions f...

bernd authored 15 years ago

26)     $menu["index_chpass"] = array("label" => "Passwort ändern", "file" => "chpass", "weight" => 98);
bernd Auch mailaccounts können si...

bernd authored 16 years ago

27)   }
28) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

29)   $menu["index_logout"] = array("label" => "Logout", "file" => "logout", "weight" => 99);
30)   $menu["index_index"] = array("label" => "Übersicht", "file" => "index", "weight" => 0);
bernd webinterface => /webinterface

bernd authored 17 years ago

31) }
32) 
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

33)