add labels Администратор & Фотомодератор

по просьбе Дани
This commit is contained in:
themohooks 2024-07-18 18:30:44 +03:00
parent b986e5aeb6
commit aa92a27e3a

View file

@ -24,8 +24,12 @@ $userprofile = new User(explode('/', $_SERVER['REQUEST_URI'])[2]);
<?php <?php
if ((int)$userprofile->i('id') === (int)explode('/', $_SERVER['REQUEST_URI'])[2]) { ?> if ((int)$userprofile->i('id') === (int)explode('/', $_SERVER['REQUEST_URI'])[2]) { ?>
<h1><?= htmlspecialchars($userprofile->i('username')) ?><?php if ($userprofile->i('admin') === 1) { echo '<img width="32" src="/static/img/star.png">'; } ?></h1> <h1><?= htmlspecialchars($userprofile->i('username')) ?><?php if ($userprofile->i('admin') === 1) { echo '<img width="32" src="/static/img/star.png">'; } ?></h1>
<?php <?php
if ($userprofile->i('admin') === 1) {
echo 'Администратор сервера';
} else if ($userprofile->i('admin') === 2) {
echo 'Фотомодератор';
}
if ($userprofile->i('id') === Auth::userid()) { ?> if ($userprofile->i('id') === Auth::userid()) { ?>
<p><b><a href="/lk/profile">Редактировать мой профиль</a></b></p> <p><b><a href="/lk/profile">Редактировать мой профиль</a></b></p>
<?php } ?> <?php } ?>