summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-03 03:22:48 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-03 03:22:48 +0100
commit356b2582f3e6a43ecf2607acad4a7fe0b37f659a (patch)
treee02c9214b23a0b9ec33aa725db962d565bd30a82 /public
parentd71e7bbfad2f07f82df0c515608996d250fd4182 (diff)
PPHDoc, formatting, fixes, cleanup
Diffstat (limited to 'public')
-rw-r--r--public/index.php109
1 files changed, 56 insertions, 53 deletions
diff --git a/public/index.php b/public/index.php
index 8c3d6913..90cc5c81 100644
--- a/public/index.php
+++ b/public/index.php
@@ -20,135 +20,134 @@ $free_pages = [
];
// Gewünschte Seite/Funktion
-$page = "";
+$page = '';
+$title = '';
+$content = '';
+
if (!isset($_REQUEST['p'])) {
- $_REQUEST['p'] = isset($user) ? "news" : "login";
+ $_REQUEST['p'] = isset($user) ? 'news' : 'login';
}
if (
isset($_REQUEST['p'])
- && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p'])
+ && preg_match('/^[a-z0-9_]*$/i', $_REQUEST['p'])
&& (
in_array($_REQUEST['p'], $free_pages)
- || in_array($_REQUEST['p'], $privileges)
+ || (isset($privileges) && in_array($_REQUEST['p'], $privileges))
)
) {
$page = $_REQUEST['p'];
$title = $page;
- $content = "";
- if ($page == "api") {
+ if ($page == 'api') {
+ error('Api disabled temporily.');
+ redirect(page_link_to());
require_once realpath(__DIR__ . '/../includes/controller/api.php');
- error("Api disabled temporily.");
- redirect(page_link_to('login'));
api_controller();
- } elseif ($page == "ical") {
+ } elseif ($page == 'ical') {
require_once realpath(__DIR__ . '/../includes/pages/user_ical.php');
user_ical();
- } elseif ($page == "atom") {
+ } elseif ($page == 'atom') {
require_once realpath(__DIR__ . '/../includes/pages/user_atom.php');
user_atom();
- } elseif ($page == "shifts_json_export") {
+ } elseif ($page == 'shifts_json_export') {
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
shifts_json_export_controller();
- } elseif ($page == "shifts_json_export_all") {
+ } elseif ($page == 'shifts_json_export_all') {
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
shifts_json_export_all_controller();
- } elseif ($page == "stats") {
+ } elseif ($page == 'stats') {
require_once realpath(__DIR__ . '/../includes/pages/guest_stats.php');
guest_stats();
- } elseif ($page == "user_password_recovery") {
+ } elseif ($page == 'user_password_recovery') {
require_once realpath(__DIR__ . '/../includes/controller/users_controller.php');
$title = user_password_recovery_title();
$content = user_password_recovery_controller();
- } elseif ($page == "angeltypes") {
+ } elseif ($page == 'angeltypes') {
list($title, $content) = angeltypes_controller();
- } elseif ($page == "shifts") {
+ } elseif ($page == 'shifts') {
list($title, $content) = shifts_controller();
- } elseif ($page == "users") {
+ } elseif ($page == 'users') {
list($title, $content) = users_controller();
- } elseif ($page == "user_angeltypes") {
+ } elseif ($page == 'user_angeltypes') {
list($title, $content) = user_angeltypes_controller();
- } elseif ($page == "user_driver_licenses") {
+ } elseif ($page == 'user_driver_licenses') {
list($title, $content) = user_driver_licenses_controller();
- } elseif ($page == "shifttypes") {
+ } elseif ($page == 'shifttypes') {
list($title, $content) = shifttypes_controller();
- } elseif ($page == "admin_event_config") {
+ } elseif ($page == 'admin_event_config') {
list($title, $content) = event_config_edit_controller();
- } elseif ($page == "rooms") {
+ } elseif ($page == 'rooms') {
list($title, $content) = rooms_controller();
- } elseif ($page == "news") {
+ } elseif ($page == 'news') {
$title = news_title();
$content = user_news();
- } elseif ($page == "news_comments") {
+ } elseif ($page == 'news_comments') {
require_once realpath(__DIR__ . '/../includes/pages/user_news.php');
$title = user_news_comments_title();
$content = user_news_comments();
- } elseif ($page == "user_meetings") {
+ } elseif ($page == 'user_meetings') {
$title = meetings_title();
$content = user_meetings();
- } elseif ($page == "user_myshifts") {
+ } elseif ($page == 'user_myshifts') {
$title = myshifts_title();
$content = user_myshifts();
- } elseif ($page == "user_shifts") {
+ } elseif ($page == 'user_shifts') {
$title = shifts_title();
$content = user_shifts();
- } elseif ($page == "user_messages") {
+ } elseif ($page == 'user_messages') {
$title = messages_title();
$content = user_messages();
- } elseif ($page == "user_questions") {
+ } elseif ($page == 'user_questions') {
$title = questions_title();
$content = user_questions();
- } elseif ($page == "user_settings") {
+ } elseif ($page == 'user_settings') {
$title = settings_title();
$content = user_settings();
- } elseif ($page == "login") {
+ } elseif ($page == 'login') {
$title = login_title();
$content = guest_login();
- } elseif ($page == "register") {
+ } elseif ($page == 'register') {
$title = register_title();
$content = guest_register();
- } elseif ($page == "logout") {
+ } elseif ($page == 'logout') {
$title = logout_title();
$content = guest_logout();
- } elseif ($page == "admin_questions") {
+ } elseif ($page == 'admin_questions') {
$title = admin_questions_title();
$content = admin_questions();
- } elseif ($page == "admin_user") {
+ } elseif ($page == 'admin_user') {
$title = admin_user_title();
$content = admin_user();
- } elseif ($page == "admin_arrive") {
+ } elseif ($page == 'admin_arrive') {
$title = admin_arrive_title();
$content = admin_arrive();
- } elseif ($page == "admin_active") {
+ } elseif ($page == 'admin_active') {
$title = admin_active_title();
$content = admin_active();
- } elseif ($page == "admin_free") {
+ } elseif ($page == 'admin_free') {
$title = admin_free_title();
$content = admin_free();
- } elseif ($page == "admin_news") {
+ } elseif ($page == 'admin_news') {
require_once realpath(__DIR__ . '/../includes/pages/admin_news.php');
$content = admin_news();
- } elseif ($page == "admin_rooms") {
+ } elseif ($page == 'admin_rooms') {
$title = admin_rooms_title();
$content = admin_rooms();
- } elseif ($page == "admin_groups") {
+ } elseif ($page == 'admin_groups') {
$title = admin_groups_title();
$content = admin_groups();
- } elseif ($page == "admin_language") {
- require_once realpath(__DIR__ . '/../includes/pages/admin_language.php');
- $content = admin_language();
- } elseif ($page == "admin_import") {
+ } elseif ($page == 'admin_import') {
$title = admin_import_title();
$content = admin_import();
- } elseif ($page == "admin_shifts") {
+ } elseif ($page == 'admin_shifts') {
$title = admin_shifts_title();
$content = admin_shifts();
- } elseif ($page == "admin_log") {
+ } elseif ($page == 'admin_log') {
$title = admin_log_title();
$content = admin_log();
- } elseif ($page == "credits") {
+ } elseif ($page == 'credits') {
require_once realpath(__DIR__ . '/../includes/pages/guest_credits.php');
$title = credits_title();
$content = guest_credits();
@@ -159,11 +158,11 @@ if (
} else {
// Wenn schon eingeloggt, keine-Berechtigung-Seite anzeigen
if (isset($user)) {
- $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!");
+ $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!');
} else {
// Sonst zur Loginseite leiten
- redirect(page_link_to("login"));
+ redirect(page_link_to('login'));
}
}
@@ -172,12 +171,16 @@ $event_config = EventConfig();
echo template_render(__DIR__ . '/../templates/layout.html', [
'theme' => isset($user) ? $user['color'] : $default_theme,
'title' => $title,
- 'atom_link' => ($page == 'news' || $page == 'user_meetings') ? '<link href="' . page_link_to('atom') . (($page == 'user_meetings') ? '&amp;meetings=1' : '') . '&amp;key=' . $user['api_key'] . '" type="application/atom+xml" rel="alternate" title="Atom Feed">' : '',
+ 'atom_link' => ($page == 'news' || $page == 'user_meetings')
+ ? ' <link href="' . page_link_to('atom') . (($page == 'user_meetings') ? '&meetings=1' : '')
+ . '&amp;key=' . (isset($user) ? $user['api_key'] : '')
+ . '" type = "application/atom+xml" rel = "alternate" title = "Atom Feed">'
+ : '',
'menu' => make_menu(),
'content' => msg() . $content,
'header_toolbar' => header_toolbar(),
'faq_url' => $faq_url,
'contact_email' => $contact_email,
'locale' => locale(),
- 'event_info' => EventConfig_info($event_config) . '<br />'
+ 'event_info' => EventConfig_info($event_config) . ' < br />'
]);