mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 03:31:10 +03:00
add labels Администратор & Фотомодератор
по просьбе Дани
This commit is contained in:
parent
b986e5aeb6
commit
aa92a27e3a
1 changed files with 5 additions and 1 deletions
|
@ -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 } ?>
|
||||||
|
|
Loading…
Reference in a new issue