battles/inf.php

15 lines
690 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Battles\{Template, User};
use Battles\Models\Presents;
include_once 'config.php';
$presentsList = (new Presents())->getAll(User::getInstance($_SERVER['QUERY_STRING'])->getId());
Template::header('Информация о ' . User::getInstance($_SERVER['QUERY_STRING'])->getLogin());
if (!User::getInstance($_SERVER['QUERY_STRING'])->getId()) {
echo sprintf('Ошибка: персонаж <em>%s</em> не найден...<p><a style="color: #99f;" href="javascript:window.history.go(-1);">←назад</a></p>', urldecode($_SERVER['QUERY_STRING']));
exit;
}
User::getInstance($_SERVER['QUERY_STRING'])->userInfo()->showUserInfo();
include_once 'views/inf-presents.php';