<h1>Жалобы на задания</h1>
<?php
$page = 1;
if(is_numeric($_GET['page'])){
$page = $_GET['page'];
}
$page_2 = $page*10;
$page_1 = $page_2-10;
$conf = array();
if (($h = @fopen(F."/config/db-uVSkt1hJwiGB19WQLVODeawWHWTBF8yG.conf", "r"))) {
while (($c = fgets($h, 4096)) !== false) {
$c = explode(':',$c);
if(!empty($c[0]) && !empty($c[1])){
$conf[trim($c[0])] = trim($c[1]);
}
}
fclose($h);
}
$dbh_complaint = mysqli_connect($conf['host'], $conf['login'], $conf['pass'], $conf['db']);
$task = array();
if (($h = @fopen(F."/config/task-i1A9nj779lr2PD7mFyQGvv5i6daGV0K8.conf", "r"))) {
while (($c = fgets($h, 4096)) !== false) {
$c = explode(':',$c);
if(!empty($c[0]) && !empty($c[1])){
$task[trim($c[0])] = trim($c[1]);
}
}
fclose($h);
}
if(is_numeric($_GET['delid'])){
$delid = $_GET['delid'];
$complaint = mysqli_query($dbh_complaint, "DELETE FROM `mod_task_complaint` WHERE `id`='$delid'");
echo '<div class="alert alert-success"><strong>Жалоба удалена успешно</strong></div>';
}
if(is_numeric($_POST['delid'])){
$delid = $_GET['delid'];
$complaint = mysqli_query($dbh_complaint, "DELETE FROM `mod_task_complaint`");
echo '<div class="alert alert-success"><strong>Жалобы удалены успешно</strong></div>';
}
?>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Автоматическая блокировка заданий</h3>
</div>
<span>Автоматически блокировать задания, если набралось <?php echo $task['complaints']; ?> жалоб (изменить можно в файле /config/task.conf (complaints:))</span>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Список жалоб <form method="POST" style="display: inline;"><input type="hidden" name="delid" value="1"><input type="submit" value="Удалить все жалобы"></form></h3>
</div>
<table class="table table-striped table-hover table-condensed">
<thead>
<tr>
<th><button class="btn-link btn_sort">№ </button></th>
<th><button class="btn-link btn_sort">№ Задания </button></th>
<th><button style="font-size: 12px;" class="btn-link btn_sort">№ Пользователя </button></th>
<th><button style="font-size: 12px;" class="btn-link btn_sort">Текст жалобы </button></th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$complaint = mysqli_query($dbh_complaint, "SELECT * FROM `mod_task_complaint` ORDER BY `id` DESC LIMIT $page_2, $page_1");
$dbh_complaint = null;
while($row = mysqli_fetch_assoc($complaint)){
echo '<tr>';
echo '<td style="max-width: 100px;">'.$row['id'].'</td>';
echo '<td style="max-width: 100px;">'.$row['idtask'].'</td>';
echo '<td style="max-width: 100px;">'.$row['iduser'].'</td>';
echo '<td>'.$row['text'].'</td>';
echo '<td><a href="/'.$GLOBALS['adm'].'/mav_task?Id='.$row['idtask'].'" target="_blank" alt="Включить задание" style="padding: 4px;margin: 1px;"><i class="fa fa-link"></i></a><br><a href="/'.$GLOBALS['adm'].'/mav_task/user?TaskId='.$row['idtask'].'&UserId='.$row['iduser'].'" target="_blank" alt="Оплатить отчёт" style="padding: 4px;margin: 1px;"><i class="fa fa-check"></i></a><br><a href="?delid='.$row['id'].'" target="_blank" alt="Удалить жалобу" style="padding: 4px;margin: 1px;"><i class="fa fa-trash"></i></a></td>';
echo '</tr>';
}
?>
</tbody>
</table>
</div>
<?php
if($page>1){
$a = $page-1;
echo '<a href="?page='.$a.'" style="padding: 16px; background: #000; border-radius: 12px; color: #fff;"><-----</a>';
}
if(mysqli_num_rows($complaint)==10){
$b = $page+1;
echo '<a href="?page='.$b.'" style="padding: 16px; background: #000; border-radius: 12px; color: #fff;">-----></a>';
}
?>