git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
ce7a494
Branches
Tags
master
ticket
webinterface.git
modules
email
menu.php
Menü-Reihenfolge sinnvoller
bernd
commited
ce7a494
at 2009-06-19 10:14:34
menu.php
Blame
History
Raw
<?php $role = $_SESSION['role']; require_once('include/hasdomain.php'); require_once('include/hasaccount.php'); if ($role & ROLE_SYSTEMUSER) { $menu["email_vmail"] = array("label" => "E-Mail", "file" => "vmail", "weight" => 3); } if ($role & (ROLE_VMAIL_ACCOUNT | ROLE_MAILACCOUNT)) { $menu['email_chpass'] = array("label" => "Passwort ändern", "file" => "chpass", "weight" => 15); } if ($role & ROLE_SYSTEMUSER) { $menu["email_domains"] = array("label" => "Mail-Verwaltung", "file" => "domains", "weight" => 1, "submenu" => "domains_domains"); } if ($role & ROLE_SYSTEMUSER && (user_has_accounts() || ! user_has_vmail_domain() || user_has_regular_domain() ) ) { $menu["email_imap"] = array("label" => "IMAP/POP3", "file" => "imap", "weight" => 20, 'submenu' => "email_vmail"); } ?>