]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - channels/index.php
Add the footer back
[irc/unrealircd/unrealircd-webpanel.git] / channels / index.php
CommitLineData
90dc8f2b 1<?php
a44ced16
BM
2require_once "../common.php";
3require_once UPATH . "/header.php";
90dc8f2b
VP
4
5if (!empty($_POST))
6{
7 do_log($_POST);
8
9 /* Nothing being posted yet */
10
11}
12
13$channels = $rpc->channel()->getAll();
14
15?>
0d846731 16<h4>Channels Overview</h4><br>
75c101fd 17<table class="container-xxl table table-responsive caption-top table-striped">
d1d9caa9 18 <thead class="table-primary">
90dc8f2b 19 <th>Name</th>
f2a87326 20 <th>Users</th>
90dc8f2b 21 <th>Modes</th>
f2a87326
BM
22 <th>Topic</th>
23 <th>Created</th>
def32bb1
BM
24</thead>
25<tbody>
90dc8f2b
VP
26 <?php
27 foreach($channels as $channel)
28 {
29 echo "<tr>";
30 echo "<td>".$channel->name."</td>";
90dc8f2b 31 echo "<td>".$channel->num_users."</td>";
90dc8f2b
VP
32 $modes = (isset($channel->modes)) ? "+" . $channel->modes : "<none>";
33 echo "<td>".$modes."</td>";
f2a87326
BM
34 $topic = (isset($channel->topic)) ? $channel->topic : "";
35 echo "<td>".$topic."</td>";
36 echo "<td>".$channel->creation_time."</td>";
90dc8f2b 37 }
809f7483
VP
38
39 require_once("../footer.php");
def32bb1
BM
40 ?>
41</tbody>
42</table>