git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
354c05a
Branches
Tags
master
ticket
webinterface.git
modules
index
index.php
Spaces between string concat (.) operator, new PER codingstyle
Hanno Böck
commited
354c05a
at 2023-10-31 17:49:30
index.php
Blame
History
Raw
<?php /* This file belongs to the Webinterface of schokokeks.org Hosting Written by schokokeks.org Hosting, namely Bernd Wurst <bernd@schokokeks.org> Hanno Böck <hanno@schokokeks.org> This code is published under a 0BSD license. 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. */ //require_role(array(ROLE_CUSTOMER, ROLE_SYSTEMUSER)); /*if ($user['realname'] == '') input_error('Ihr Name ist nicht im System gespeichert (siehe Stammdaten)!'); if ($user['email'] == '') input_error('Im System ist keine alternative eMail-Adresse gespeichert (siehe Stammdaten)!'); */ switch ($_SESSION['role']) { case ROLE_ANONYMOUS: login_screen(''); break; case ROLE_VMAIL_ACCOUNT: $role = "{$_SESSION['mailaccount']}, angemeldet als E-Mail-Account"; break; case ROLE_MAILACCOUNT: $role = "{$_SESSION['mailaccount']}, angemeldet als IMAP/POP3-Account"; break; case ROLE_SYSTEMUSER: $role = "{$_SESSION['userinfo']['name']}, angemeldet als Benutzer"; break; case ROLE_SYSTEMUSER | ROLE_SUBUSER: case ROLE_SYSTEMUSER | ROLE_CUSTOMER | ROLE_SUBUSER: $role = "{$_SESSION['subuser']}, Unternutzer von {$_SESSION['userinfo']['username']}"; break; case ROLE_CUSTOMER: $role = "{$_SESSION['customerinfo']['name']}, angemeldet als Kunde"; break; case ROLE_CUSTOMER | ROLE_SYSTEMUSER: $role = "{$_SESSION['customerinfo']['name']}, angemeldet als Kunde und Benutzer"; break; case ROLE_SYSTEMUSER | ROLE_SYSADMIN: $role = "{$_SESSION['userinfo']['name']}, angemeldet als Benutzer und Administrator"; break; case ROLE_CUSTOMER | ROLE_SYSTEMUSER | ROLE_SYSADMIN: $role = "{$_SESSION['customerinfo']['name']}, angemeldet als Kunde, Benutzer und Administrator"; break; default: system_failure('Interner Fehler (»Unbekannte Rolle: ' . $_SESSION['role'] . '«)'); } title('Übersicht'); headline('Administration'); output('<p>Herzlich willkommen, ' . $role . ".</p>\n"); output("<p>Auf der linken Seite sehen Sie ein Auswahlmenü mit den Funktionen, die Ihnen in diesem Webinterface zur Verfügung stehen.</p>"); if (is_locked()) { output('<div class="error"><p><strong>Achtung: Ihr Kundenkonto ist gesperrt!</strong></p><p>Ihr Kundenkonto ist im Moment gesperrt. Das bedeutet, dass Ihre Websites nicht mehr abrufbar sind und Ihre E-Mail-Adresen keine Nachrichten mehr empfangen können.</p><p>Um die Sperrung aufzuheben, nehmen Sie bitte Kontakt mit uns auf!</p></div>'); } output("<p>Nachfolgend sehen Sie eine Auswahl typischer Aufgaben.</p>\n"); $modules = get_modules_info(); $my_shortcuts = []; foreach ($modules as $modname => $info) { if (file_exists('modules/' . $modname . '/shortcuts.php')) { $shortcuts = []; include('modules/' . $modname . '/shortcuts.php'); foreach ($shortcuts as $shortcut) { $shortcut['module'] = $modname; $my_shortcuts[$shortcut['weight'] . $modname] = $shortcut; } } } krsort($my_shortcuts); DEBUG($my_shortcuts); output("<div class=\"overview\">"); foreach ($my_shortcuts as $shortcut) { $icon = "images/default.png"; if (file_exists("images/" . $shortcut['icon'])) { $icon = "images/" . $shortcut['icon']; } $alert = ''; if (isset($shortcut['alert']) && $shortcut['alert']) { $alert = '<br /><span style="color: red;">(' . $shortcut['alert'] . ')</span>'; } output("<div class=\"block\">" . internal_link($prefix . 'go/' . $shortcut['module'] . '/' . $shortcut['file'], "<img src=\"{$prefix}{$icon}\" alt=\"\" /> {$shortcut['title']} {$alert}") . "</div>"); } output('</div>'); if (have_module('systemuser') && $_SESSION['role'] & ROLE_SYSTEMUSER) { ini_set('include_path', ini_get('include_path') . ':modules/systemuser/include'); include('modules/systemuser/overview.php'); } if (have_module('email') && $_SESSION['role'] & ROLE_VMAIL_ACCOUNT) { include('modules/email/vmailoverview.php'); output("<div class=\"vmailoverview\">" . $content . "</div>"); }