Используем новый класс
This commit is contained in:
parent
19dae67b95
commit
3af2758b3c
@ -27,6 +27,11 @@ class User
|
||||
public $room;
|
||||
public $block;
|
||||
|
||||
// Пока несуществующие, для совместимости.
|
||||
public $married;
|
||||
public $exp;
|
||||
public $stats;
|
||||
|
||||
public function __construct($user)
|
||||
{
|
||||
$user_query = db::c()->query('SELECT * FROM users WHERE id = ?i OR login = "?s"', $user, $user)->fetch_assoc();
|
||||
|
62
inf.php
62
inf.php
@ -9,7 +9,8 @@ $uid = $_SESSION['uid'] ?? null;
|
||||
// WHERE `login` = "?s" OR `id` = "?s"', $login, $login)->fetch_assoc();
|
||||
$user = new User($_SESSION['uid']);
|
||||
$own = db::c()->query('SELECT `align`,`admin` FROM `users` WHERE `id` = "?s"', $uid)->fetch_assoc();
|
||||
$presents = db::c()->query('SELECT img, sender FROM `users_presents` WHERE expiration_date >= "?s" AND owner = ?i', date('Y-m-d'), $user->id);
|
||||
//$presents = db::c()->query('SELECT img, sender FROM `users_presents` WHERE expiration_date >= "?s" AND owner = ?i', date('Y-m-d'), $user->id);
|
||||
$presents = [];
|
||||
|
||||
if (empty($user->id)): ?>
|
||||
<!doctype html>
|
||||
@ -32,30 +33,30 @@ if (empty($user->id)): ?>
|
||||
<link href="css/main.css" rel="stylesheet">
|
||||
</head>
|
||||
<BODY onload="<?= topsethp() ?>">
|
||||
<?php if ($user['admin'] == 1 && $own['admin'] != 1 && file_exists('customuserdata/' . $user['id'])) {die(file_get_contents('customuserdata/' . $user['id']));} ?>
|
||||
<?php if ($user->admin === 1 && $own['admin'] != 1 && file_exists('customuserdata/' . $user['id'])) {die(file_get_contents('customuserdata/' . $user['id']));} ?>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<td style="width: 250px; vertical-align: top;">
|
||||
<?= showinf_pers($user['id']);
|
||||
if (!empty($user['married'])): ?>
|
||||
<a href="inf.php?<?= $user['married'] ?>" target=_blank>
|
||||
<img alt="В браке с <?= $user['married'] ?>" src="i/married.gif" title="В браке с <?= $user['married'] ?>">
|
||||
if (!empty($user->married)): ?>
|
||||
<a href="inf.php?<?= $user->married ?>" target=_blank>
|
||||
<img alt="В браке с <?= $user->married ?>" src="i/married.gif" title="В браке с <?= $user->married ?>">
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td style="vertical-align: top; width: 100px; text-align: center;">
|
||||
<img src="i/zodiac/<?= star_sign(substr($user['borndate'], 3, 2), substr($user['borndate'], 0, 2)); ?>.png">
|
||||
<img src="i/zodiac/<?= star_sign(substr($user->borndate, 3, 2), substr($user->borndate, 0, 2)); ?>.png">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<!-- Нижняя часть -->
|
||||
<?php
|
||||
$effect = db::c()->query('SELECT `time` FROM `effects` WHERE `owner` = ?i AND `type` = ?i ', $user['id'], 5)->fetch_assoc();
|
||||
$effect = db::c()->query('SELECT `time` FROM `effects` WHERE `owner` = ?i AND `type` = ?i ', $user->id, 5)->fetch_assoc();
|
||||
if ($effect['time'] && ($own['admin'] != 1)) {die('<h3>Персонаж обезличен!</h3>');}
|
||||
if (!empty($user['realname'])) {echo "Имя: " . $user['realname'] . "<br>";}
|
||||
if (!empty($user->realname)) {echo "Имя: " . $user->realname . "<br>";}
|
||||
?>
|
||||
<p style="font-family: Consolas,monospace;"><?= nl2br($user['info']) ?></p>
|
||||
<p style="font-family: Consolas,monospace;"><?= nl2br($user->info) ?></p>
|
||||
<hr>
|
||||
<?php if ($presents->getNumRows()): ?>
|
||||
<div>
|
||||
@ -66,27 +67,17 @@ if (!empty($user['realname'])) {echo "Имя: " . $user['realname'] . "<br>";}
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($user['prof1']) || !empty($user['prof2'])): ?>
|
||||
<div>
|
||||
<legend>Лицензии</legend>
|
||||
<?php
|
||||
if ($user['prof2'] == 21) {echo ' <img src="i/prof21.png" title="Лицензия наемника"> ';}
|
||||
if ($user['prof2'] == 22) {echo ' <img src="i/prof22.png" title="Лицензия лекаря"> ';}
|
||||
if ($user['prof1'] == 1) {echo ' <img src="i/prof1.png" title="Лицензия кузнеца"> ';}
|
||||
?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
# Секретный раздел
|
||||
$showModeratorInfo = false;
|
||||
|
||||
# Если я любой паладин, и смотрю не админа, или я сам админ.
|
||||
if ((($own['align'] == 1) && (!$user['admin'])) || (!empty($own['admin']))) {$showModeratorInfo = true;}
|
||||
if ((($own['align'] == 1) && (!$user->admin)) || (!empty($own['admin']))) {$showModeratorInfo = true;}
|
||||
|
||||
if ($showModeratorInfo == 1) {
|
||||
$ld = db::c()->query('SELECT * FROM `lichka` WHERE `pers` = ?i ORDER BY `id` ASC', $user['id']);
|
||||
|
||||
//$ld = db::c()->query('SELECT * FROM `lichka` WHERE `pers` = ?i ORDER BY `id` ASC', $user['id']);
|
||||
$ld = db::c()->query();
|
||||
echo "<H4>Личное дело</H4>";
|
||||
while ($row_ld = $ld->fetch_assoc()) {
|
||||
$dat = date("d.m.Y H:i", $row_ld['date']);
|
||||
@ -94,25 +85,22 @@ if ($showModeratorInfo == 1) {
|
||||
}
|
||||
|
||||
echo "<H4>Дополнительные сведения</H4>";
|
||||
if (!empty($user['id'])) {echo "ID: " . $user['id'] . "<br>";}
|
||||
if (!empty($user['email'])) {echo "E-mail: " . $user['email'] . "<br>";}
|
||||
if (!empty($user['borndate'])) {echo "День рождения: " . $user['borndate'] . "<br>";}
|
||||
if (!empty($user['ip'])) {echo "IP при регистрации: " . $user['ip'] . "<br>";}
|
||||
if (!empty($user->id)) {echo "ID: " . $user->id . "<br>";}
|
||||
if (!empty($user->email)) {echo "E-mail: " . $user->email . "<br>";}
|
||||
if (!empty($user->borndate)) {echo "День рождения: " . $user->borndate . "<br>";}
|
||||
if (!empty($user->ip)) {echo "IP при регистрации: " . $user->ip . "<br>";}
|
||||
}
|
||||
|
||||
if ($own['admin'] == 1) {
|
||||
if (!empty($user['exp'])) {echo "Oпыт: " . $user['exp'] . "<br>";}
|
||||
if (!empty($user['stats'])) {echo "Число неиспользованных UP-ов: " . $user['stats'] . "<br>";}
|
||||
if (!empty($user['money'])) {echo "Кредитов: " . $user['money'] . "<br>";}
|
||||
if (!empty($user['room'])) {echo "Комната: " . $user['room'] . "<br>";}
|
||||
if (!empty($user['reputation'])) {echo "Всего Репутации: " . $user['reputation'] . "<br>";}
|
||||
if (!empty($user['doblest'])) {echo "Репутации: " . $user['doblest'] . "<br>";}
|
||||
if (!empty($user->exp)) {echo "Oпыт: " . $user->exp . "<br>";}
|
||||
if (!empty($user->stats)) {echo "Число неиспользованных UP-ов: " . $user->stats . "<br>";}
|
||||
if (!empty($user->money)) {echo "Кредитов: " . $user->money . "<br>";}
|
||||
if (!empty($user->room)) {echo "Комната: " . $user->room . "<br>";}
|
||||
|
||||
if ($user_bank = db::c()->query('SELECT `id`,`cr`,`ekr` FROM `bank` WHERE `id` = ?i', $user['id'])) {
|
||||
echo "<H4>Банковские счета</H4>";
|
||||
while ($row_user_bank = $user_bank->fetch_assoc())
|
||||
{echo "№ " . $row_user_bank['id'] . ": " . $row_user_bank['cr'] . " кр, " . $row_user_bank['ekr'] . " екр.";}
|
||||
}
|
||||
echo "<H4>Банковские счета</H4>";
|
||||
$bankInfo = new Bank($user->id);
|
||||
echo "Счет: " . $bankInfo->user_id.PHP_EOL;
|
||||
echo "Деньги на счету: " . $bankInfo->money.PHP_EOL;
|
||||
}
|
||||
?>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user