litebans-php/bans.php
2015-06-07 17:37:46 +02:00

89 lines
3.4 KiB
PHP

<?php require 'includes/page.php'; ?>
<title>Tempbans - <?php echo $name; ?></title>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Bans</h1>
<ol class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li class="active">Bans</li>
</ol>
</div>
</div>
<br/>
<!-- Ban check form -->
<form onsubmit="captureForm(event);" class="form-inline">
<div class="form-group">
<input type="text" class="form-control" id="user" placeholder="Player">
</div>
<button type="submit" class="btn btn-default">Check</button>
</form>
<script type="text/javascript">
function captureForm(e) {
$.ajax({
type: 'POST',
url: 'check.php',
data: {name: document.getElementById('user').value, table: 'bans'}
}).done(function (msg) {
document.getElementById('output').innerHTML = msg;
});
e.preventDefault();
return false;
}
</script>
<div id="output"></div>
<!-- End ban check form -->
<div class="row" style="margin-bottom:60px;">
<div class="col-lg-12">
<table class="table table-hover table-bordered table-condensed">
<thead>
<tr>
<th>
<div style="text-align: center;">Name</div>
</th>
<th>
<div style="text-align: center;">Banned By</div>
</th>
<th>
<div style="text-align: center;">Reason</div>
</th>
<th>
<div style="text-align: center;">Banned On</div>
</th>
<th>
<div style="text-align: center;">Banned Until</div>
</th>
</tr>
</thead>
<tbody>
<?php
global $table_bans, $conn, $show_inactive_bans;
$result = run_query($table_bans);
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 Ban';
}
if ($show_inactive_bans && $row['active'] == 0) {
$expiresResult .= ' (Unbanned)';
}
echo $expiresResult;
?>
</td>
</tr>
<?php }
?>
</tbody>
</table>
</div>
</div>
<?php include 'includes/footer.php'; ?>
</div>