git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
ce0caaf
Branches
Tags
master
ticket
webinterface.git
modules
imap
menu.php
Auch mailaccounts können sich einloggen
bernd
commited
ce0caaf
at 2007-08-13 13:15:55
menu.php
Blame
History
Raw
<?php $menu = array(); $role = $_SESSION['role']; if ($role & ROLE_SYSTEMUSER) { $menu["imap_accounts"] = array("label" => "IMAP/POP3", "file" => "accounts.php", "weight" => 10); } elseif ($role & ROLE_MAILACCOUNT) { $menu["imap_chpass"] = array("label" => "Passwort ändern", "file" => "chpass.php", "weight" => 10); } if (empty($menu)) $menu = false; ?>