diff options
Diffstat (limited to 'api/cloudburst-banners.php')
-rw-r--r-- | api/cloudburst-banners.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/api/cloudburst-banners.php b/api/cloudburst-banners.php deleted file mode 100644 index 62e6936..0000000 --- a/api/cloudburst-banners.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.inc"; global $isLoggedIn; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/bitset.inc"; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/banner.inc"; -if (!$isLoggedIn) header("Location: /-/login") and die(); - -$data = []; - -foreach (json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/ynmuc/members.json"), true) as $member) { - if ($member['name'] === "unknown") continue; - if ($member['name'] === "fusion") continue; - if ($member['name'] === "new") continue; - - $data[$member['name']] = getMemberBannerData($member['id'], "ynmuc"); -} - -header("Content-Type: application/json"); -die(json_encode($data, JSON_PRETTY_PRINT));
\ No newline at end of file |