Размер файла: 2.5Kb
<?php
#-----------------------------------------------------#
# ********* ROTORCMS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/header.php');
if (isset($_GET['start'])) {
$start = abs(intval($_GET['start']));
} else {
$start = 0;
}
if (is_admin(array(101, 102, 103))) {
show_title('site.png', 'Список забаненых');
$config['newtitle'] = 'Список забаненых';
$total = DB::run() -> querySingle("SELECT count(*) FROM `users` WHERE `users_ban`=? AND `users_timeban`>?;", array(1, SITETIME));
if ($total > 0) {
if ($start >= $total) {
$start = 0;
}
$queryusers = DB::run() -> query("SELECT * FROM `users` WHERE `users_ban`=? AND `users_timeban`>? ORDER BY `users_timelastban` DESC LIMIT ".$start.", ".$config['reglist'].";", array(1, SITETIME));
while ($data = $queryusers -> fetch()) {
echo '<div class="b">';
echo user_gender($data['users_login']).' <b>'.profile($data['users_login']).'</b> (Забанен: '.date_fixed($data['users_timelastban']).')</div>';
echo '<div>До окончания бана осталось '.formattime($data['users_timeban'] - SITETIME).'<br />';
echo 'Забанил: <b>'.profile($data['users_loginsendban']).'</b><br />';
echo 'Причина: '.bb_code($data['users_reasonban']).'<br />';
echo '<img src="../images/img/edit.gif" alt="image" /> <a href="zaban.php?act=edit&uz='.$data['users_login'].'&'.SID.'">Редактировать</a></div>';
}
page_strnavigation('banlist.php?', $config['banlist'], $start, $total);
echo 'Всего забанено: <b>'.$total.'</b><br /><br />';
} else {
show_error('Пользователей еще нет!');
}
echo '<img src="../images/img/panel.gif" alt="image" /> <a href="index.php?'.SID.'">В админку</a><br />';
} else {
redirect(BASEDIR.'index.php?'.SID);
}
include_once ('../themes/footer.php');
?>