battles/admin/edit_user.php

99 lines
3.1 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* Copyright (c) 2018.
* Author: Igor Barkov <lopar.4ever@gmail.com>
* Project name: Battles-Game
*/
use Battles\Database\Db;
use Battles\DressedItems;
use Battles\Template;
use Battles\User;
require_once "../functions.php";
if (!User::getInstance()->getAdmin()) {
header("HTTP/1.0 404 Not Found");
exit;
}
$player = $_POST['player'] ?? null;
$undress_char = $_POST['undress_char'] ?? null;
$end = $_POST['end'] ?? null;
$del = $_POST['del'] ?? null;
2022-12-16 23:20:43 +00:00
$inv = [];
if ($player) {
$row = Db::getInstance()->ofetch('select id, login from users where id = ? or login = ?', [$player, $player]);
$_SESSION['player_id'] = $row->id;
$_SESSION['player_name'] = $row->login;
unset($row);
}
if ($undress_char) {
DressedItems::undressAllItems($_SESSION['player_id']);
}
if ($end) {
unset($_SESSION['player_id']);
unset($_SESSION['player_name']);
}
if (isset($_SESSION['player_id'])) {
2022-12-16 23:20:43 +00:00
$inv = Db::getInstance()->fetchAll('SELECT item_id, name, image FROM inventory WHERE owner_id = ? ORDER BY item_id DESC', $_SESSION['player_id']);
}
if ($del) {
2022-12-16 23:20:43 +00:00
$itemdel = Db::getInstance()->fetch('SELECT item_type, dressed_slot FROM inventory WHERE item_id = ?', $del);
if ($itemdel['dressed_slot'] == 1) {
$item = new DressedItems($del);
$item->undressItem($itemdel['item_type']);
if ($itemdel['item_type'] == 5) {
$item->undressItem(6);
$item->undressItem(7);
}
}
2022-12-16 23:20:43 +00:00
Db::getInstance()->execute('delete from inventory where item_id = ?', $del);
}
Template::header('ᐰdminка инвентаря');
?>
2022-12-16 23:20:43 +00:00
<h1>Администрирование инвентаря <?php if (isset($_SESSION['player_name'])) { echo $_SESSION['player_name']; } ?></h1>
<table class='adm'>
<tr>
2022-12-16 23:20:43 +00:00
<th scope="col">ID</th>
<th scope="col">Название</th>
<th scope="col">Количество</th>
<th scope="col">Картинка</th>
<th scope="col"></th>
</tr>
<?php if (empty($_SESSION['player_id'])): ?>
<tr>
2022-12-16 23:20:43 +00:00
<th scope="col" colspan="5">
<form method="post">
2022-12-16 23:20:43 +00:00
<label>
<input placeholder="Логин или ID" name="player">
</label>
<input type="submit">
</form>
</th>
</tr>
2022-12-16 23:20:43 +00:00
<?php else: foreach ($inv as $row): ?>
<tr>
<td><?= $row['id'] ?></td>
<td><?= $row['name'] ?></td>
<td><?= $row['koll'] ?></td>
2022-12-16 23:20:43 +00:00
<td><img src='/i/sh/<?= $row['img'] ?>' alt=""></td>
<td>
<form method='post'>
<input name='del' type='hidden' value='<?= $row['id'] ?>'>
<input name='ok' type='submit' value='Удалить'>
</form>
</td>
</tr>
2022-12-16 23:20:43 +00:00
<?php endforeach; ?>
<th colspan='6'>
<form method='post'>
<input name='undress_char' type='submit' value='Стриптиз'>
</form>
<form method="post">
<input name='end' type='submit' value='Выйти'>
</form>
</th>
<?php endif; ?>
2022-12-16 23:20:43 +00:00
</table>