2005-09-10 19:25:43 +02:00
|
|
|
<?php
|
2015-05-14 16:37:12 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/engelsystem_provider.php');
|
2011-06-01 14:30:29 +02:00
|
|
|
|
2013-12-26 13:34:48 +01:00
|
|
|
$free_pages = array(
|
2016-09-27 17:49:13 +02:00
|
|
|
'admin_event_config',
|
|
|
|
'angeltypes',
|
2014-01-05 19:30:06 +01:00
|
|
|
'api',
|
2016-09-27 17:49:13 +02:00
|
|
|
'atom',
|
2014-03-09 13:39:04 +01:00
|
|
|
'credits',
|
2014-12-12 23:49:16 +01:00
|
|
|
'ical',
|
2016-09-27 17:49:13 +02:00
|
|
|
'login',
|
2014-12-19 22:41:55 +01:00
|
|
|
'shifts',
|
2016-09-27 17:49:13 +02:00
|
|
|
'shifts_json_export',
|
|
|
|
'shifts_json_export_all',
|
|
|
|
'stats',
|
|
|
|
'users',
|
|
|
|
'user_driver_licenses',
|
|
|
|
'user_password_recovery'
|
2013-12-09 17:10:07 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// Gewünschte Seite/Funktion
|
2014-08-23 01:55:18 +02:00
|
|
|
$p = "";
|
2013-12-26 17:31:05 +01:00
|
|
|
if (! isset($_REQUEST['p']))
|
2013-12-26 17:29:29 +01:00
|
|
|
$_REQUEST['p'] = isset($user) ? "news" : "login";
|
2013-12-26 13:34:48 +01:00
|
|
|
if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (in_array($_REQUEST['p'], $free_pages) || in_array($_REQUEST['p'], $privileges))) {
|
2013-09-10 14:27:31 +02:00
|
|
|
$p = $_REQUEST['p'];
|
2014-12-16 09:01:39 +01:00
|
|
|
|
2014-12-06 21:40:16 +01:00
|
|
|
$title = $p;
|
|
|
|
$content = "";
|
2014-12-16 09:01:39 +01:00
|
|
|
|
2013-12-29 15:08:21 +01:00
|
|
|
if ($p == "api") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/controller/api.php');
|
2013-12-29 15:24:54 +01:00
|
|
|
error("Api disabled temporily.");
|
|
|
|
redirect(page_link_to('login'));
|
2014-01-05 19:35:23 +01:00
|
|
|
api_controller();
|
2013-12-29 15:08:21 +01:00
|
|
|
} elseif ($p == "ical") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/user_ical.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
user_ical();
|
|
|
|
} elseif ($p == "atom") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/user_atom.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
user_atom();
|
|
|
|
} elseif ($p == "shifts_json_export") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
shifts_json_export_controller();
|
|
|
|
} elseif ($p == "shifts_json_export_all") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
shifts_json_export_all_controller();
|
|
|
|
} elseif ($p == "stats") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/guest_stats.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
guest_stats();
|
|
|
|
} elseif ($p == "user_password_recovery") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/controller/users_controller.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
$title = user_password_recovery_title();
|
|
|
|
$content = user_password_recovery_controller();
|
2014-01-05 19:30:06 +01:00
|
|
|
} elseif ($p == "angeltypes") {
|
|
|
|
list($title, $content) = angeltypes_controller();
|
2014-12-19 22:41:55 +01:00
|
|
|
} elseif ($p == "shifts") {
|
|
|
|
list($title, $content) = shifts_controller();
|
2014-08-22 22:34:13 +02:00
|
|
|
} elseif ($p == "users") {
|
|
|
|
list($title, $content) = users_controller();
|
2014-01-05 19:30:06 +01:00
|
|
|
} elseif ($p == "user_angeltypes") {
|
|
|
|
list($title, $content) = user_angeltypes_controller();
|
2015-12-19 23:31:08 +01:00
|
|
|
} elseif ($p == "user_driver_licenses") {
|
|
|
|
list($title, $content) = user_driver_licenses_controller();
|
2014-12-16 09:25:36 +01:00
|
|
|
} elseif ($p == "shifttypes") {
|
|
|
|
list($title, $content) = shifttypes_controller();
|
2016-09-27 17:49:13 +02:00
|
|
|
} elseif ($p == "admin_event_config") {
|
|
|
|
list($title, $content) = event_config_edit_controller();
|
2013-12-26 13:34:48 +01:00
|
|
|
} elseif ($p == "news") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = news_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_news();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "news_comments") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/user_news.php');
|
2013-11-25 21:56:56 +01:00
|
|
|
$title = user_news_comments_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_news_comments();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "user_meetings") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = meetings_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_meetings();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "user_myshifts") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = myshifts_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_myshifts();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "user_shifts") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = shifts_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_shifts();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "user_messages") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = messages_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_messages();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "user_questions") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = questions_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_questions();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "user_settings") {
|
2013-11-25 21:56:56 +01:00
|
|
|
$title = settings_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = user_settings();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "login") {
|
2013-11-25 21:56:56 +01:00
|
|
|
$title = login_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = guest_login();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "register") {
|
2013-11-25 21:56:56 +01:00
|
|
|
$title = register_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = guest_register();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "logout") {
|
2013-11-25 21:56:56 +01:00
|
|
|
$title = logout_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = guest_logout();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_questions") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_questions_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_questions();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_user") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_user_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_user();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_arrive") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_arrive_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_arrive();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_active") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_active_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_active();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_free") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_free_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_free();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_news") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/admin_news.php');
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_news();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_rooms") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_rooms_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_rooms();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_groups") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_groups_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_groups();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_language") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/admin_language.php');
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_language();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_import") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_import_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_import();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_shifts") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_shifts_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_shifts();
|
2013-10-13 00:52:44 +02:00
|
|
|
} elseif ($p == "admin_log") {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = admin_log_title();
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = admin_log();
|
2013-12-26 13:34:48 +01:00
|
|
|
} elseif ($p == "credits") {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/guest_credits.php');
|
2013-12-26 13:34:48 +01:00
|
|
|
$title = credits_title();
|
|
|
|
$content = guest_credits();
|
2013-09-10 14:27:31 +02:00
|
|
|
} else {
|
2014-09-08 08:38:08 +02:00
|
|
|
require_once realpath(__DIR__ . '/../includes/pages/guest_start.php');
|
2013-09-10 14:27:31 +02:00
|
|
|
$content = guest_start();
|
|
|
|
}
|
2011-06-02 00:48:29 +02:00
|
|
|
} else {
|
2013-09-10 14:27:31 +02:00
|
|
|
// Wenn schon eingeloggt, keine-Berechtigung-Seite anzeigen
|
2013-10-13 00:52:44 +02:00
|
|
|
if (isset($user)) {
|
2013-11-25 21:04:58 +01:00
|
|
|
$title = _("No Access");
|
|
|
|
$content = _("You don't have permission to view this page. You probably have to sign in or register in order to gain access!");
|
2013-09-10 14:27:31 +02:00
|
|
|
} else {
|
|
|
|
// Sonst zur Loginseite leiten
|
|
|
|
redirect(page_link_to("login"));
|
|
|
|
}
|
2011-06-02 00:48:29 +02:00
|
|
|
}
|
|
|
|
|
2016-09-29 09:25:06 +02:00
|
|
|
$event_config = EventConfig();
|
|
|
|
if ($event_config === false) {
|
|
|
|
engelsystem_error("Unable to load event config.");
|
|
|
|
}
|
|
|
|
|
2013-11-25 19:12:19 +01:00
|
|
|
echo template_render('../templates/layout.html', array(
|
2013-10-13 00:52:44 +02:00
|
|
|
'theme' => isset($user) ? $user['color'] : $default_theme,
|
|
|
|
'title' => $title,
|
|
|
|
'atom_link' => ($p == 'news' || $p == 'user_meetings') ? '<link href="' . page_link_to('atom') . (($p == 'user_meetings') ? '&meetings=1' : '') . '&key=' . $user['api_key'] . '" type="application/atom+xml" rel="alternate" title="Atom Feed">' : '',
|
|
|
|
'menu' => make_menu(),
|
2014-12-06 21:40:16 +01:00
|
|
|
'content' => msg() . $content,
|
2013-12-03 16:28:37 +01:00
|
|
|
'header_toolbar' => header_toolbar(),
|
2014-08-23 15:59:18 +02:00
|
|
|
'faq_url' => $faq_url,
|
2015-11-01 21:10:02 +01:00
|
|
|
'contact_email' => $contact_email,
|
2016-09-28 11:46:40 +02:00
|
|
|
'locale' => locale(),
|
2016-09-29 09:25:06 +02:00
|
|
|
'event_info' => EventConfig_info($event_config) . '<br />'
|
2011-06-02 00:48:29 +02:00
|
|
|
));
|
2011-06-02 01:09:03 +02:00
|
|
|
|
2005-09-10 19:25:43 +02:00
|
|
|
?>
|