mirror of
https://github.com/claradex/nativegallery.git
synced 2025-06-05 05:47:00 +03:00
197 lines
No EOL
7.4 KiB
PHP
197 lines
No EOL
7.4 KiB
PHP
<?php
|
|
|
|
use \App\Services\{Auth, DB, Date};
|
|
use \App\Models\{User, Vehicle};
|
|
|
|
|
|
$user = new \App\Models\User(Auth::userid());
|
|
|
|
if (!isset($_GET['type']) || $_GET['type'] != 'Photo') {
|
|
if ($user->i('admin') === 2) {
|
|
header('Location: ?type=Photo');
|
|
}
|
|
}
|
|
|
|
$nonreviewedentities = DB::query('SELECT COUNT(*) FROM entities_requests WHERE status=0')[0]['COUNT(*)'];
|
|
if ($nonreviewedentities > 0) {
|
|
$nonr_e = '<span id="mdlnum" class="badge text-bg-danger">' . $nonreviewedentities . '</span>';
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
|
|
<link rel="stylesheet" href="/static/css/notie.css<?php if (NGALLERY['root']['cloudflare-caching'] === true) {
|
|
echo '?' . time();
|
|
} ?>">
|
|
<script src="/static/js/notie.js<?php if (NGALLERY['root']['cloudflare-caching'] === true) {
|
|
echo '?' . time();
|
|
} ?>"></script>
|
|
|
|
<script>
|
|
notie.setOptions({
|
|
transitionCurve: 'cubic-bezier(0.2, 0, 0.2, 1)'
|
|
});
|
|
var Notify = {
|
|
noty: function(status, text) {
|
|
|
|
if (status == 'danger') status = 'error';
|
|
|
|
return notie.alert({
|
|
type: status,
|
|
text: text
|
|
})
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<?= \App\Controllers\AdminController::loadMenu(); ?>
|
|
<?= \App\Controllers\AdminController::loadContent(); ?>
|
|
<h1><b>Модели</b></h1>
|
|
<div class="v-header__tabs">
|
|
<div class="v-tabs">
|
|
<div class="v-tabs__scroll">
|
|
<div class="v-tabs__content"><a href="#" onclick="changeTab('list')" id="list" class="v-tab v-tab-b v-tab--active"><span class="v-tab__label">
|
|
Список
|
|
|
|
</span></a><a href="#" onclick="changeTab('moderate')" id="moderate" class="v-tab v-tab-b"><span class="v-tab__label">
|
|
Заявки на добавление <?= $nonr_e ?>
|
|
|
|
</span></a>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="list__block" class="active__block">
|
|
<a href="?type=ModelsCreate" class="btn btn-primary mt-3">Создать</a>
|
|
<div class="p20w" style="display:block">
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th width="100">ID</th>
|
|
<th width="20%">Название</th>
|
|
<th width="50%">Сущность</th>
|
|
<th>Действия</th>
|
|
</tr>
|
|
|
|
<?php
|
|
$photos = DB::query('SELECT * FROM entities_data ORDER BY id DESC');
|
|
foreach ($photos as $p) {
|
|
$entity = new Vehicle($p['entityid']);
|
|
|
|
echo ' <tr id="pht' . $p['id'] . '" class="' . $color . '">
|
|
<td>
|
|
' . $p['id'] . '
|
|
</td>
|
|
<td>
|
|
' . $p['title'] . '
|
|
|
|
</td>
|
|
<td>
|
|
' . $entity->i('title') . '
|
|
|
|
</td>
|
|
<td class="c">
|
|
';
|
|
|
|
echo '<a href="/admin?type=EntityEdit&id=' . $p['id'] . '&mod=1" class="btn btn-primary">Редактировать</a>
|
|
<a data-bs-toggle="modal" data-bs-target="#declinePhotoModal' . $p['id'] . '" href="#" class="btn btn-danger">Удалить</a>
|
|
|
|
</td>';
|
|
|
|
echo '
|
|
</tr>
|
|
|
|
|
|
|
|
';
|
|
}
|
|
?>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
</div><br>
|
|
</div>
|
|
<div style="display: none;" id="moderate__block">
|
|
<div class="p20w" style="display:block">
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th width="100">ID</th>
|
|
<th width="20%">Название</th>
|
|
<th width="35%">Сущность</th>
|
|
<th width="50%">Данные</th>
|
|
<th width="50%">Действия</th>
|
|
</tr>
|
|
|
|
<?php
|
|
$photos = DB::query('SELECT * FROM entities_requests WHERE status=0 ORDER BY id DESC');
|
|
foreach ($photos as $p) {
|
|
$entity = new Vehicle($p['entityid']);
|
|
$vehiclevariables = json_decode($entity->i('sampledata'), true);
|
|
$vehicledatavariables = json_decode($p['data'], true);
|
|
$vhhtml = '';
|
|
$num = 1;
|
|
foreach ($vehiclevariables as $vb) {
|
|
$vhhtml .= '<b>' . $vb['name'] . ': </b>' . $vehicledatavariables[$num]['value'] . '<br>';
|
|
$num++;
|
|
}
|
|
echo '<tr id="mdl' . $p['id'] . '">
|
|
<td>
|
|
' . $p['id'] . '
|
|
</td>
|
|
<td>
|
|
' . $p['title'] . '
|
|
|
|
</td>
|
|
<td>
|
|
' . $entity->i('title') . '
|
|
|
|
</td>
|
|
<td>
|
|
'.$vhhtml.'
|
|
|
|
|
|
</td>
|
|
<td class="c">
|
|
';
|
|
|
|
echo '<a onclick="handleModelRequest('.$p['id'].', `accept`); return false;" class="btn btn-primary">Принять</a>
|
|
<a onclick="handleModelRequest('.$p['id'].', `decline`); return false;" class="btn btn-danger">Отклонить</a>
|
|
|
|
</td>';
|
|
|
|
echo '
|
|
</tr>
|
|
|
|
|
|
|
|
';
|
|
}
|
|
?>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
</div><br>
|
|
</div>
|
|
<?php
|
|
$entities = DB::query('SELECT * FROM entities');
|
|
foreach ($entities as $e) {
|
|
}
|
|
?>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|