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
|
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.inc"; global $title; global $isLoggedIn; global $lang; global $pages;
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc';
if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/splitting.json")) file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/splitting.json", "{}");
$cache = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/splitting.json"), true);
?>
<br>
<div class="container">
<?php if (!isset($cache["content"])): ob_start(); ?>
<div id="page-content">
<h2>Members by splitting date</h2>
<?php $members = scoreOrderGlobal(); uasort($members, function ($a, $b) {
return strtotime($a["created"]) - strtotime($b["created"]);
}); foreach ($members as $member): ?>
<div class="relation" style="background-color:rgba(255, 255, 255, .1);margin-bottom:10px;padding:10px;border-radius:10px;display:grid;grid-template-columns: 1fr 2fr max-content;">
<a class="relation-intro" style="background-color:rgba(255, 255, 255, .05);border-right:1px solid rgba(255, 255, 255, .1);margin:-10px;padding:10px;border-top-left-radius:10px;border-bottom-left-radius:10px;color: white;display:flex;align-items:center;text-decoration: none;" href="/<?= $member["name"] ?>">
<img src="<?= getAsset($member["system"], $member["id"], "heads") ?>" style="width:24px;"> <?= $member["display_name"] ?? $member["name"] ?>
</a>
<div class="relation-item" style="display:flex;align-items:center;margin-left:10px;padding:0 20px;">
Formed at least <?= timeAgo($member["created"]) ?> (<?= date('l j F Y', strtotime($member["created"])) ?>)
</div>
</div>
<?php endforeach; ?>
</div>
<style>
@media (max-width: 991px) {
.relation {
grid-template-columns: 1fr !important;
}
.relation-intro {
text-align: center;
border-bottom-left-radius: 0 !important;
border-top-right-radius: 10px;
border-right: none !important;
border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.relation-item-marefriends {
margin-top: 20px !important;
}
.relation-item {
margin-top: 10px;
margin-left: 0 !important;
padding: 10px 0 !important;
text-align: center;
}
}
</style>
<?php $cache["content"] = ob_get_contents(); ob_end_clean(); endif;
echo($cache["content"]); file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/splitting.json", json_encode($cache)); ?>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/footer.inc'; ?>
|