mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 08:29:06 +00:00
56 lines
2.3 KiB
PHP
56 lines
2.3 KiB
PHP
<?php require './includes/page.php'; ?>
|
|
<title>TempMutes - <?php echo $name; ?></title>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header">Mutes</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="index.php">Home</a></li>
|
|
<li class="active">Mutes</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<div class="row" style="margin-bottom:60px;">
|
|
<div class="col-lg-12">
|
|
<table class="table table-hover table-bordered table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: center;">Name</th>
|
|
<th style="text-align: center;">Muted By</th>
|
|
<th style="text-align: center;">Reason</th>
|
|
<th style="text-align: center;">Muted On</th>
|
|
<th style="text-align: center;">Muted Until</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
global $table_mutes, $conn, $show_inactive_bans;
|
|
$result = run_query($table_mutes);
|
|
while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
|
|
$timeResult = millis_to_date($row['time']);
|
|
$expiresResult = millis_to_date($row['until']);
|
|
?>
|
|
<tr>
|
|
<td><?php echo get_avatar($row['name']); ?></td>
|
|
<td><?php echo get_avatar($row['banned_by_name']); ?></td>
|
|
<td style="width: 30%;"><?php echo clean($row['reason']); ?></td>
|
|
<td><?php echo $timeResult; ?></td>
|
|
<td>
|
|
<?php if ($row['until'] <= 0) {
|
|
$expiresResult = 'Permanent Mute';
|
|
}
|
|
if ($show_inactive_bans && $row['active'] == 0) {
|
|
$expiresResult .= ' (Unmuted)';
|
|
}
|
|
echo $expiresResult;
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php }
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?php include './includes/footer.php'; ?>
|
|
</div>
|