blob: 2b57c76d59d5b8091a003430541c985ab3ff513d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.inc"; global $title; global $isLoggedIn; global $isLowerLoggedIn; global $lang; global $pages;
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc';
if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/alphabet.json")) file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/alphabet.json", "{}");
$cache = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/alphabet.json"), true);
function page(): void
{ global $lang; global $pages; ?>
<div id="page-content">
<h2><?= $pages["alphabet"]["name"][$lang["_name"]] ?></h2>
<?php $members = scoreOrderGlobal(); ?>
<div>
<?php foreach (str_split("abcdefghijklmnopqrstuvwxyz") as $letter): ?>
<div style="display:inline-grid;grid-template-columns: max-content 1fr;min-height:32px;">
<div style="display:flex;align-items:center;justify-content:center;font-weight: bold;margin-right:10px;" class="font-monospace"><?= $letter ?>.</div>
<div>
<?php foreach ($members as $member): if (isset($member["proxy_tags"][0]) && isset($member["proxy_tags"][0]["prefix"]) && str_starts_with(strtolower($member["proxy_tags"][0]["prefix"]), strtolower($letter)) && strlen($member["proxy_tags"][0]["prefix"]) === 2): ?><a href="/<?= $member["name"] ?>" title="<b><?= $member["display_name"] ?></b> (<code class='text-white'><?= $member["proxy_tags"][0]["prefix"] ?></code>)" data-bs-toggle="tooltip" data-bs-html="true"><img src="<?= getAsset($member['system'], $member["id"], "heads") ?>" style="width:24px;"></a><?php endif; endforeach; ?>
</div>
</div>
<?php foreach (str_split("abcdefghijklmnopqrstuvwxyz") as $letter2): $list = array_filter($members, function ($member) use ($letter, $letter2) {
return isset($member["proxy_tags"][0]) && isset($member["proxy_tags"][0]["prefix"]) && str_starts_with(strtolower($member["proxy_tags"][0]["prefix"]), strtolower($letter . $letter2)) && strlen($member["proxy_tags"][0]["prefix"]) === 3;
}); if (count($list) > 0): ?>
(<div style="display:inline-grid;grid-template-columns: max-content 1fr;min-height:32px;">
<div style="display:flex;align-items:center;justify-content:center;" class="font-monospace"><?= $letter . $letter2 ?>.</div>
<div>
<?php foreach ($list as $member): ?><a href="/<?= $member["name"] ?>" title="<b><?= $member["display_name"] ?></b> (<code class='text-white'><?= $member["proxy_tags"][0]["prefix"] ?></code>)" data-bs-toggle="tooltip" data-bs-html="true"><img src="<?= getAsset($member['system'], $member["id"], "heads") ?>" style="width:24px;"></a><?php endforeach; ?>
</div>
</div>)
<?php endif; endforeach; ?>
<br>
<?php endforeach; ?>
</div>
</div>
<?php }
?>
<br>
<div class="container">
<?php if (!isset($cache["private"]) || !isset($cache["public"])) {
ob_start();
$isLoggedInOldState = $isLoggedIn;
$isLowerLoggedInOldState = $isLowerLoggedIn;
$isLoggedIn = true;
$isLowerLoggedIn = true;
page();
$isLoggedIn = $isLoggedInOldState;
$isLowerLoggedIn = $isLowerLoggedInOldState;
$cache["private"] = ob_get_contents();
ob_end_clean();
ob_start();
$isLoggedInOldState = $isLoggedIn;
$isLowerLoggedInOldState = $isLowerLoggedIn;
$isLoggedIn = false;
$isLowerLoggedIn = false;
page();
$isLoggedIn = $isLoggedInOldState;
$isLowerLoggedIn = $isLowerLoggedInOldState;
$cache["public"] = ob_get_contents();
ob_end_clean();
}
echo($isLoggedIn ? $cache["private"] : $cache["public"]); file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/alphabet.json", json_encode($cache)); ?>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/footer.inc'; ?>
|