summaryrefslogtreecommitdiff
path: root/includes/init.inc
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-10-10 20:51:39 +0200
committerMinteck <contact@minteck.org>2022-10-10 20:51:39 +0200
commit108525534c28013cfe1897c30e4565f9893f3766 (patch)
treedd3e5132971f96ab5f05e7f3f8f6dbbf379a19bd /includes/init.inc
parent2162eaa06f7e4764eb3dcfe130ec2c711d0c62ab (diff)
downloadpluralconnect-108525534c28013cfe1897c30e4565f9893f3766.tar.gz
pluralconnect-108525534c28013cfe1897c30e4565f9893f3766.tar.bz2
pluralconnect-108525534c28013cfe1897c30e4565f9893f3766.zip
Update
Diffstat (limited to 'includes/init.inc')
-rw-r--r--includes/init.inc28
1 files changed, 28 insertions, 0 deletions
diff --git a/includes/init.inc b/includes/init.inc
new file mode 100644
index 0000000..7265c0e
--- /dev/null
+++ b/includes/init.inc
@@ -0,0 +1,28 @@
+<?php
+
+global $title;
+global $toplevel;
+global $emergencyHeader;
+global $pages;
+
+$pages = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/pages.json"), true);
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.inc"; global $isLoggedIn;
+
+if (in_array($toplevel, array_keys($pages))) {
+ $title = $pages[$toplevel]["name"];
+
+ if ($pages[$toplevel]["admin"]) {
+ $readOnly = false;
+ @file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/.test", "hello");
+
+ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/.test")) {
+ unlink($_SERVER['DOCUMENT_ROOT'] . "/includes/data/.test");
+ } else {
+ $readOnly = true;
+ }
+
+ if (!$isLoggedIn || ($readOnly && !$emergencyHeader)) header("Location: /-/login/?return=$toplevel") and die();
+ }
+} else {
+ $title = $toplevel;
+} \ No newline at end of file