git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
18b15c1
Branches
Tags
master
ticket
webinterface.git
modules
index
menu.php
Login vial Client-Cert über Unterverzeichnis
bernd
commited
18b15c1
at 2009-03-05 09:14:11
menu.php
Blame
History
Raw
<?php $role = $_SESSION['role']; if ($role == ROLE_ANONYMOUS) { $menu["index_login"] = array("label" => "Login", "file" => "index", "weight" => 0); $menu["certlogin"] = array("label" => "Client-Zertifikat", "file" => "certinfo", "weight" => 0); } else { if ($role & (ROLE_SYSTEMUSER | ROLE_CUSTOMER)) { $menu["index_chpass"] = array("label" => "Passwort ändern", "file" => "chpass", "weight" => 98); } $menu["index_logout"] = array("label" => "Logout", "file" => "logout", "weight" => 99); $menu["index_index"] = array("label" => "Übersicht", "file" => "index", "weight" => 0); } ?>