tilde.chat/stats/index.php

35 lines
912 B
PHP
Raw Normal View History

2018-10-27 06:36:10 +00:00
<?php
$title="stats page";
2018-06-20 21:19:13 +00:00
$desc="stats about tilde.chat and its channels";
2018-10-27 06:36:10 +00:00
$stats = json_decode(file_get_contents("../stats.json"));
include __DIR__."/../header.php";
2018-06-20 21:19:13 +00:00
?>
2018-10-27 06:36:10 +00:00
<h1>stats</h1>
<hr>
2018-07-19 14:44:08 +00:00
<p>There are <?=$stats->usercount?> users across <?=$stats->channelcount?> channels.</p>
2018-10-27 06:36:10 +00:00
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Name</th>
<th>Users</th>
<th>Topic</th>
</tr>
</thead>
<tbody data-link="row" class="rowlink">
<?php foreach($stats->channels as $channel): ?>
<tr>
<td><a href="<?=$channel->webchatlink?>"><?=$channel->name?></a></td>
<td><?=$channel->usercount?></td><td><?=$channel->topic?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
2018-06-20 21:19:13 +00:00
<hr>
2018-10-15 22:29:34 +00:00
<p>Available in <a href="/stats.json">JSON format</a>.</p>
2018-10-27 06:36:10 +00:00
2018-10-15 22:29:34 +00:00
<?php include __DIR__."/../footer.php"; ?>