Hanno Böck To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ 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_once("inc/security.php"); function system_failure($reason) { input_error($reason); show_page(); die(); } function input_error($reason) { global $input_error; if (!isset($input_error)) $input_error = array(); array_push($input_error, $reason); } function warning($msg) { if (!isset($_SESSION['warning'])) $_SESSION['warning'] = array(); array_push($_SESSION['warning'], $msg); } function success_msg($msg) { if (!isset($_SESSION['success_msg'])) $_SESSION['success_msg'] = array(); array_push($_SESSION['success_msg'], $msg); } function we_have_an_error() { global $input_error; return (count($input_error) > 0); } function get_messages() { $messages = ''; global $input_error; if (isset($input_error)) { $messages .= '

Fehler

Folgende Fehler wurden festgestellt:

'; } if (isset($_SESSION['warning'])) { $messages .= '
'; unset($_SESSION['warning']); } if (isset($_SESSION['success_msg'])) { $messages .= '
'; unset($_SESSION['success_msg']); } return $messages; } function show_messages() { echo get_messages(); } function require_role($roles) { if (! is_array($roles)) $roles = array($roles); $allow = false; foreach ($roles as $role) if ($role & $_SESSION['role']) $allow = true; if (! $allow) if ($_SESSION['role'] == ROLE_ANONYMOUS) login_screen("Diese Seite können Sie erst benutzen, wenn Sie sich mit Ihren Zugangsdaten anmelden."); else login_screen("Diese Seite können Sie mit Ihren aktuellen Zugriffsrechten nicht benutzen, bitte melden Sie sich mit den benötigten Zugriffsrechten an!"); } function login_screen($why) { if (have_module('index')) { if (isset($_COOKIE['CLIENTCERT_AUTOLOGIN']) && $_COOKIE['CLIENTCERT_AUTOLOGIN'] == '1') { require_once('modules/index/include/x509.php'); do_ajax_cert_login(); } } require_once('inc/theme.php'); if ($why) { warning($why); } show_page('login'); die(); } ?>