63a0529b21bfd97a4ef395e8d3d3f513526357c6
bernd webinterface => /webinterface

bernd authored 17 years ago

1) <?php
2) 
3) $role = $_SESSION['role'];
4) 
bernd Auch mailaccounts können si...

bernd authored 16 years ago

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

bernd authored 15 years ago

6)   $menu["index_login"] = array("label" => "Login", "file" => "index", "weight" => 0);
bernd Auch mailaccounts können si...

bernd authored 16 years ago

7) } else {
8)   if ($role & (ROLE_SYSTEMUSER | ROLE_CUSTOMER)) {
bernd eliminate .php extensions f...

bernd authored 15 years ago

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

bernd authored 16 years ago

10)   }
11) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

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

bernd authored 17 years ago

14) }
15) 
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

16)