mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 03:31:10 +03:00
fix xss
This commit is contained in:
parent
8b63f67985
commit
e01de93290
8 changed files with 240 additions and 229 deletions
|
@ -17,13 +17,13 @@ class Comment {
|
||||||
<span class="message_date">'.Date::zmdate($this->c['posted_at']).'</span><br>
|
<span class="message_date">'.Date::zmdate($this->c['posted_at']).'</span><br>
|
||||||
</div>
|
</div>
|
||||||
<a name="2681468"></a><a name="last"></a>
|
<a name="2681468"></a><a name="last"></a>
|
||||||
<div><img src="'.$user->i('photourl').'" width="32" style="border-radius: 3px; margin-right: 5px;"><b><a href="/author/'.$this->c['user_id'].'/" class="message_author">'.$user->i('username').'</a></b> ·
|
<div><img src="'.$user->i('photourl').'" width="32" style="border-radius: 3px; margin-right: 5px;"><b><a href="/author/'.$this->c['user_id'].'/" class="message_author">'.htmlspecialchars($user->i('username')).'</a></b> ·
|
||||||
<span class="flag">';
|
<span class="flag">';
|
||||||
if (json_decode($user->i('content'), true)['aboutrid']['value'] != null) {
|
if (json_decode($user->i('content'), true)['aboutrid']['value'] != null) {
|
||||||
echo '<img src="https://kamenphoto.ru/img/r/'.json_decode($user->i('content'), true)['aboutrid']['value'].'.gif">';
|
echo '<img src="https://kamenphoto.ru/img/r/'.json_decode($user->i('content'), true)['aboutrid']['value'].'.gif">';
|
||||||
}
|
}
|
||||||
if (json_decode($user->i('content'), true)['aboutlive']['value'] != null) {
|
if (json_decode($user->i('content'), true)['aboutlive']['value'] != null) {
|
||||||
echo ' '.json_decode($user->i('content'), true)['aboutlive']['value'];
|
echo ' '.htmlspecialchars(json_decode($user->i('content'), true)['aboutlive']['value']);
|
||||||
}
|
}
|
||||||
if ((int)Vote::countcommrates($this->c['id'], -1) >= 1) {
|
if ((int)Vote::countcommrates($this->c['id'], -1) >= 1) {
|
||||||
$commclass = 'pro';
|
$commclass = 'pro';
|
||||||
|
@ -36,7 +36,7 @@ class Comment {
|
||||||
}
|
}
|
||||||
echo '</span></div>
|
echo '</span></div>
|
||||||
<div class="rank">Фото: '.Photo::fetchAll($this->c['user_id']).'</div>
|
<div class="rank">Фото: '.Photo::fetchAll($this->c['user_id']).'</div>
|
||||||
<div class="message-text">'.$this->c['body'].'</div>
|
<div class="message-text">'.htmlspecialchars($this->c['body']).'</div>
|
||||||
<div class="comment-votes-block">
|
<div class="comment-votes-block">
|
||||||
<div class="wvote" wid="'.$this->c['id'].'">
|
<div class="wvote" wid="'.$this->c['id'].'">
|
||||||
<a href="#" vote="1" class="w-btn s2"><span>+</span></a>
|
<a href="#" vote="1" class="w-btn s2"><span>+</span></a>
|
||||||
|
|
|
@ -36,7 +36,7 @@ use \App\Models\User;
|
||||||
<?php
|
<?php
|
||||||
$admins = DB::query('SELECT * FROM users WHERE admin=1');
|
$admins = DB::query('SELECT * FROM users WHERE admin=1');
|
||||||
foreach ($admins as $a) {
|
foreach ($admins as $a) {
|
||||||
echo '<li><b><a href="/author/'.$a['id'].'/"><img src="'.$a['photourl'].'" width="32" style="border-radius: 3px; margin-right: 5px;">'.$a['username'].'</a></b></li>';
|
echo '<li><b><a href="/author/'.$a['id'].'/"><img src="'.$a['photourl'].'" width="32" style="border-radius: 3px; margin-right: 5px;">'.htmlspecialchars($a['username']).'</a></b></li>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -105,7 +105,7 @@ foreach ($photos as $pd) {
|
||||||
foreach ($photos as $p) {
|
foreach ($photos as $p) {
|
||||||
$bck = 'background-image:url("' . $p['photourl'] . '")';
|
$bck = 'background-image:url("' . $p['photourl'] . '")';
|
||||||
echo ' <div class="prw-grid-item">
|
echo ' <div class="prw-grid-item">
|
||||||
<div class="prw-wrapper"><span style="word-spacing:-1px"><b>' . $p['place'] . '</b></span>
|
<div class="prw-wrapper"><span style="word-spacing:-1px"><b>' . htmlspecialchars($p['place']) . '</b></span>
|
||||||
<div>' . Date::zmdate($p['posted_at']) . '</div>
|
<div>' . Date::zmdate($p['posted_at']) . '</div>
|
||||||
</div>
|
</div>
|
||||||
'; ?>
|
'; ?>
|
||||||
|
@ -128,7 +128,7 @@ foreach ($photos as $pd) {
|
||||||
foreach ($photos as $p) {
|
foreach ($photos as $p) {
|
||||||
$bck = 'background-image:url("' . $p['photourl'] . '")';
|
$bck = 'background-image:url("' . $p['photourl'] . '")';
|
||||||
echo ' <div class="prw-grid-item">
|
echo ' <div class="prw-grid-item">
|
||||||
<div class="prw-wrapper"><span style="word-spacing:-1px"><b>' . $p['place'] . '</b></span>
|
<div class="prw-wrapper"><span style="word-spacing:-1px"><b>' . htmlspecialchars($p['place']) . '</b></span>
|
||||||
<div>' . Date::zmdate($p['posted_at']) . '</div>
|
<div>' . Date::zmdate($p['posted_at']) . '</div>
|
||||||
</div>
|
</div>
|
||||||
'; ?>
|
'; ?>
|
||||||
|
@ -148,7 +148,7 @@ foreach ($photos as $pd) {
|
||||||
<?php
|
<?php
|
||||||
$online = DB::query('SELECT * FROM users WHERE online>=:time-300 ORDER BY online DESC', array(':time'=>time()));
|
$online = DB::query('SELECT * FROM users WHERE online>=:time-300 ORDER BY online DESC', array(':time'=>time()));
|
||||||
foreach ($online as $o) {
|
foreach ($online as $o) {
|
||||||
echo '<a href="/author/'.$o['id'].'/">'.$o['username'].'</a>, ';
|
echo '<a href="/author/'.$o['id'].'/">'.htmlspecialchars($o['username']).'</a>, ';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ $id = explode('/', $_SERVER['REQUEST_URI'])[2];
|
||||||
$photo = new \App\Models\Photo($id);
|
$photo = new \App\Models\Photo($id);
|
||||||
if ($photo->i('id') !== null) {
|
if ($photo->i('id') !== null) {
|
||||||
$photouser = new \App\Models\User($photo->i('user_id'));
|
$photouser = new \App\Models\User($photo->i('user_id'));
|
||||||
if (DB::query('SELECT * FROM photos_views WHERE user_id=:uid AND photo_id=:pid ORDER BY id DESC LIMIT 1', array(':uid'=>Auth::userid(), ':pid'=>$id))[0]['time'] <= time()-86400) {
|
if (DB::query('SELECT * FROM photos_views WHERE user_id=:uid AND photo_id=:pid ORDER BY id DESC LIMIT 1', array(':uid' => Auth::userid(), ':pid' => $id))[0]['time'] <= time() - 86400) {
|
||||||
DB::query('INSERT INTO photos_views VALUES (\'0\', :uid, :pid, :time)', array(':uid'=>Auth::userid(), ':pid'=>$id, ':time'=>time()));
|
DB::query('INSERT INTO photos_views VALUES (\'0\', :uid, :pid, :time)', array(':uid' => Auth::userid(), ':pid' => $id, ':time' => time()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,11 +21,11 @@ if ($photo->i('id') !== null) {
|
||||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/LoadHead.php'); ?>
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/LoadHead.php'); ?>
|
||||||
|
|
||||||
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
|
||||||
<meta name="description" content="<?=NGALLERY['root']['description']?>">
|
<meta name="description" content="<?= NGALLERY['root']['description'] ?>">
|
||||||
<meta name="keywords" content="<?=NGALLERY['root']['keywords']?>">
|
<meta name="keywords" content="<?= NGALLERY['root']['keywords'] ?>">
|
||||||
<meta property="og:title" content="<?=$photo->i('title')?> — Фото">
|
<meta property="og:title" content="<?= $photo->i('title') ?> — Фото">
|
||||||
<link rel="alternate" hreflang="x-default" href="<?=$_SERVER['REQUEST_URI']?>">
|
<link rel="alternate" hreflang="x-default" href="<?= $_SERVER['REQUEST_URI'] ?>">
|
||||||
<meta property="og:image" content="<?=$photo->i('photourl')?>">
|
<meta property="og:image" content="<?= $photo->i('photourl') ?>">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,85 +34,89 @@ if ($photo->i('id') !== null) {
|
||||||
<table class="tmain">
|
<table class="tmain">
|
||||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Navbar.php'); ?>
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Navbar.php'); ?>
|
||||||
<tr>
|
<tr>
|
||||||
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
|
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
|
||||||
<style>
|
<style>
|
||||||
#map_canvas {
|
#map_canvas {
|
||||||
width: 600px !important;
|
width: 600px !important;
|
||||||
}
|
}
|
||||||
#photobar {
|
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
#photobar {
|
||||||
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
}
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
#photobar {
|
}
|
||||||
background-color: #000;
|
|
||||||
}
|
#photobar {
|
||||||
#photobar {
|
background-color: #000;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
}
|
||||||
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
|
||||||
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
#photobar {
|
||||||
}
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
#photobar {
|
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
margin: 0 -20px;
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
position: relative;
|
}
|
||||||
background-color: #333;
|
|
||||||
}
|
#photobar {
|
||||||
</style>
|
margin: 0 -20px;
|
||||||
|
position: relative;
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<td class="main">
|
<td class="main">
|
||||||
<?php
|
<?php
|
||||||
if ($photo->i('id') !== null) {
|
if ($photo->i('id') !== null) {
|
||||||
?>
|
?>
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="photobar">
|
|
||||||
<div id="prev" title="Переход по профилю ТС"><span><</span></div>
|
<div id="photobar">
|
||||||
<div id="next" title="Переход по профилю ТС"><span>></span></div>
|
<div id="prev" title="Переход по профилю ТС"><span><</span></div>
|
||||||
<div style="display:inline-block">
|
<div id="next" title="Переход по профилю ТС"><span>></span></div>
|
||||||
<div id="underphoto_frame">
|
<div style="display:inline-block">
|
||||||
<div id="ph_frame">
|
<div id="underphoto_frame">
|
||||||
<img class="nozoom" id="ph" src="<?= $photo->i('photourl') ?>" alt="" title="Фотография">
|
<div id="ph_frame">
|
||||||
<?php
|
<img class="nozoom" id="ph" src="<?= $photo->i('photourl') ?>" alt="" title="Фотография">
|
||||||
if ($photo->i('priority') === 1) { ?>
|
<?php
|
||||||
<div class="underphoto s17" style="cursor:help" title="Фотография не удовлетворяет действующим на момент публикации критериям качества снимков."><i style="position:relative; top:1px" class="fas fa-info-circle"></i> <b class="dot">Условная публикация</b></div>
|
if ($photo->i('priority') === 1) { ?>
|
||||||
<?php } else if ($photo->i('priority') === 2) { ?>
|
<div class="underphoto s17" style="cursor:help" title="Фотография не удовлетворяет действующим на момент публикации критериям качества снимков."><i style="position:relative; top:1px" class="fas fa-info-circle"></i> <b class="dot">Условная публикация</b></div>
|
||||||
<div class="underphoto s19" style="cursor:help" title="Изображение будет удалено с сайта через некоторое время"><i style="position:relative; top:1px" class="fas fa-clock"></i> <b class="dot">Временная публикация</b></div>
|
<?php } else if ($photo->i('priority') === 2) { ?>
|
||||||
<?php } ?>
|
<div class="underphoto s19" style="cursor:help" title="Изображение будет удалено с сайта через некоторое время"><i style="position:relative; top:1px" class="fas fa-clock"></i> <b class="dot">Временная публикация</b></div>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<script>
|
||||||
<script>
|
function checkPhotoSize() {
|
||||||
function checkPhotoSize() {
|
var photo = $('#ph');
|
||||||
var photo = $('#ph');
|
if (!photo.length) return;
|
||||||
if (!photo.length) return;
|
|
||||||
|
|
||||||
var w = photo[0].naturalWidth;
|
var w = photo[0].naturalWidth;
|
||||||
var h = photo[0].naturalHeight;
|
var h = photo[0].naturalHeight;
|
||||||
|
|
||||||
var pw = photo.width();
|
var pw = photo.width();
|
||||||
var ww = $(window).width();
|
var ww = $(window).width();
|
||||||
var wh = $(window).height();
|
var wh = $(window).height();
|
||||||
|
|
||||||
if (h > w && w < ww)
|
if (h > w && w < ww)
|
||||||
photo.addClass('v-zoom');
|
photo.addClass('v-zoom');
|
||||||
else photo.removeClass('v-zoom');
|
else photo.removeClass('v-zoom');
|
||||||
|
|
||||||
if (w === undefined || w == 0 || w > pw || w > ww || (h > wh && h > w)) {
|
if (w === undefined || w == 0 || w > pw || w > ww || (h > wh && h > w)) {
|
||||||
photo.removeClass('nozoom').off('click').on('click', function() {
|
photo.removeClass('nozoom').off('click').on('click', function() {
|
||||||
photo.toggleClass('zoomed');
|
photo.toggleClass('zoomed');
|
||||||
});
|
});
|
||||||
} else photo.addClass('nozoom').off('click');
|
} else photo.addClass('nozoom').off('click');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Масштабирование фото
|
// Масштабирование фото
|
||||||
$('#ph').on('load', checkPhotoSize);
|
$('#ph').on('load', checkPhotoSize);
|
||||||
$(window).on('resize', checkPhotoSize);
|
$(window).on('resize', checkPhotoSize);
|
||||||
checkPhotoSize();
|
checkPhotoSize();
|
||||||
</script>
|
</script>
|
||||||
</center>
|
</center>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
@ -132,11 +136,11 @@ if ($photo->i('id') !== null) {
|
||||||
<div style="padding-top:8px"><?= $photo->content('comment') ?></div>
|
<div style="padding-top:8px"><?= $photo->content('comment') ?></div>
|
||||||
</div><br>
|
</div><br>
|
||||||
<?php
|
<?php
|
||||||
if ($photo->i('posted_at') === 943909200) {
|
if ($photo->i('posted_at') === 943909200) {
|
||||||
$date = 'не указана';
|
$date = 'не указана';
|
||||||
} else {
|
} else {
|
||||||
$date = Date::zmdate($photo->i('posted_at'));
|
$date = Date::zmdate($photo->i('posted_at'));
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<div>Прислал <a href="/author/<?= $photo->i('user_id') ?>/"><?= $photouser->i('username') ?></a> Дата: <b><?= $date ?></b></div>
|
<div>Прислал <a href="/author/<?= $photo->i('user_id') ?>/"><?= $photouser->i('username') ?></a> Дата: <b><?= $date ?></b></div>
|
||||||
<table id="pp-items">
|
<table id="pp-items">
|
||||||
|
@ -159,10 +163,14 @@ if ($photo->i('id') !== null) {
|
||||||
<div class="star" pid="1361063"></div>
|
<div class="star" pid="1361063"></div>
|
||||||
<?php
|
<?php
|
||||||
if (Auth::userid() > 0) { ?>
|
if (Auth::userid() > 0) { ?>
|
||||||
<div class="vote" pid="<?= $id ?>">
|
<div class="vote" pid="<?= $id ?>">
|
||||||
<a href="#" vote="1" class="vote_btn <?php if (Vote::photo(Auth::userid(), $id) === 1) { echo 'voted'; } ?>"><span>Интересная фотография!</span></a>
|
<a href="#" vote="1" class="vote_btn <?php if (Vote::photo(Auth::userid(), $id) === 1) {
|
||||||
<a href="#" vote="0" class="vote_btn <?php if (Vote::photo(Auth::userid(), $id) === 0) { echo 'voted'; } ?>"><span>Мне не нравится</span></a>
|
echo 'voted';
|
||||||
</div>
|
} ?>"><span>Интересная фотография!</span></a>
|
||||||
|
<a href="#" vote="0" class="vote_btn <?php if (Vote::photo(Auth::userid(), $id) === 0) {
|
||||||
|
echo 'voted';
|
||||||
|
} ?>"><span>Мне не нравится</span></a>
|
||||||
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<div id="votes" class="votes">
|
<div id="votes" class="votes">
|
||||||
<table class="vblock pro">
|
<table class="vblock pro">
|
||||||
|
@ -171,7 +179,7 @@ if ($photo->i('id') !== null) {
|
||||||
foreach ($votespos as $ps) {
|
foreach ($votespos as $ps) {
|
||||||
$uservote = new User($ps['user_id']);
|
$uservote = new User($ps['user_id']);
|
||||||
echo ' <tr>
|
echo ' <tr>
|
||||||
<td><a href="/author/' . $ps['user_id'] . '/">' . $uservote->i('username') . '</a></td>
|
<td><a href="/author/' . $ps['user_id'] . '/">' . htmlspecialchars($uservote->i('username')) . '</a></td>
|
||||||
<td class="vv">+1</td>
|
<td class="vv">+1</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
@ -184,7 +192,7 @@ if ($photo->i('id') !== null) {
|
||||||
foreach ($votespos as $ps) {
|
foreach ($votespos as $ps) {
|
||||||
$uservote = new User($ps['user_id']);
|
$uservote = new User($ps['user_id']);
|
||||||
echo ' <tr>
|
echo ' <tr>
|
||||||
<td><a href="/author/' . $ps['user_id'] . '/">' . $uservote->i('username') . '</a></td>
|
<td><a href="/author/' . $ps['user_id'] . '/">' . htmlspecialchars($uservote->i('username')) . '</a></td>
|
||||||
<td class="vv">-1</td>
|
<td class="vv">-1</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
@ -205,173 +213,176 @@ if ($photo->i('id') !== null) {
|
||||||
|
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td id="pp-main-col">
|
<td id="pp-main-col">
|
||||||
<div id="pp-item-vdata">
|
<div id="pp-item-vdata">
|
||||||
<?php
|
<?php
|
||||||
if ($photo->content('type') != 'none') {
|
if ($photo->content('type') != 'none') {
|
||||||
?>
|
?>
|
||||||
<div class="p0" id="pp-item-exif">
|
<div class="p0" id="pp-item-exif">
|
||||||
<h4 class="pp-item-header">Параметры съёмки</h4>
|
<h4 class="pp-item-header">Параметры съёмки</h4>
|
||||||
<div class="pp-item-body">
|
<div class="pp-item-body">
|
||||||
<table class="linetable" id="exif">
|
<table class="linetable" id="exif">
|
||||||
<?php
|
<?php
|
||||||
$data = json_decode($photo->i('exif'), true);
|
$data = json_decode($photo->i('exif'), true);
|
||||||
|
|
||||||
foreach ($data as $key => $value) {
|
foreach ($data as $key => $value) {
|
||||||
if ($key === 'FILE.FileDateTime') {
|
if ($key === 'FILE.FileDateTime') {
|
||||||
$value = Date::zmdate($value);
|
$value = Date::zmdate($value);
|
||||||
}
|
}
|
||||||
if (is_array($value)) {
|
if (is_array($value)) {
|
||||||
$value = implode(', ', $value); // Convert array to a comma-separated string
|
$value = implode(', ', $value); // Convert array to a comma-separated string
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<tr class="s11 h21">
|
<tr class="s11 h21">
|
||||||
<td class="ds nw" width="30%">' . htmlspecialchars($key) . ':</td>
|
<td class="ds nw" width="30%">' . htmlspecialchars($key) . ':</td>
|
||||||
<td class="ds">' . htmlspecialchars($value) . '</td>
|
<td class="ds">' . htmlspecialchars($value) . '</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if ($photo->content('lat') != null && $photo->content('lng') != null) { ?>
|
if ($photo->content('lat') != null && $photo->content('lng') != null) { ?>
|
||||||
<div class="p0" id="pp-item-exif">
|
<div class="p0" id="pp-item-exif">
|
||||||
|
|
||||||
<h4 class="pp-item-header">Место на карте</h4>
|
|
||||||
<div class="pp-item-body">
|
|
||||||
<table class="linetable" id="exif">
|
|
||||||
<tr class="upl-map">
|
|
||||||
<div id="map_frame" class="s11 p20" style="display:inline-block; padding:3px">
|
|
||||||
<div id="map_canvas"></div></div>
|
|
||||||
<script>
|
|
||||||
// Координаты выбранной точки
|
|
||||||
const selectedPoint = {
|
|
||||||
lat: <?=$photo->content('lat')?>, // Пример: Широта Москвы
|
|
||||||
lng: <?=$photo->content('lng')?> // Пример: Долгота Москвы
|
|
||||||
};
|
|
||||||
|
|
||||||
// Создание карты
|
<h4 class="pp-item-header">Место на карте</h4>
|
||||||
const map = L.map('map_canvas').setView([selectedPoint.lat, selectedPoint.lng], 13);
|
<div class="pp-item-body">
|
||||||
|
<table class="linetable" id="exif">
|
||||||
|
<tr class="upl-map">
|
||||||
|
<div id="map_frame" class="s11 p20" style="display:inline-block; padding:3px">
|
||||||
|
<div id="map_canvas"></div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
// Координаты выбранной точки
|
||||||
|
const selectedPoint = {
|
||||||
|
lat: <?= $photo->content('lat') ?>, // Пример: Широта Москвы
|
||||||
|
lng: <?= $photo->content('lng') ?> // Пример: Долгота Москвы
|
||||||
|
};
|
||||||
|
|
||||||
// Добавление базового слоя карты (OpenStreetMap)
|
// Создание карты
|
||||||
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
const map = L.map('map_canvas').setView([selectedPoint.lat, selectedPoint.lng], 13);
|
||||||
maxZoom: 19,
|
|
||||||
attribution: '© OpenStreetMap contributors'
|
|
||||||
}).addTo(map);
|
|
||||||
|
|
||||||
// Добавление маркера на выбранной точке
|
// Добавление базового слоя карты (OpenStreetMap)
|
||||||
const marker = L.marker([selectedPoint.lat, selectedPoint.lng]).addTo(map);
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||||
|
maxZoom: 19,
|
||||||
|
attribution: '© OpenStreetMap contributors'
|
||||||
|
}).addTo(map);
|
||||||
|
|
||||||
// Установка всплывающего окна на маркере
|
// Добавление маркера на выбранной точке
|
||||||
marker.bindPopup("<b>Выбранная точка</b>").openPopup();
|
const marker = L.marker([selectedPoint.lat, selectedPoint.lng]).addTo(map);
|
||||||
|
|
||||||
</script>
|
// Установка всплывающего окна на маркере
|
||||||
</tr>
|
marker.bindPopup("<b>Выбранная точка</b>").openPopup();
|
||||||
|
</script>
|
||||||
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
|
|
||||||
<div class="p0" id="pp-item-comments">
|
<div class="p0" id="pp-item-comments">
|
||||||
<h4 class="pp-item-header">Комментарии<span style="font-weight:normal"> <span style="color:#aaa">·</span> 1</span></h4>
|
<h4 class="pp-item-header">Комментарии<span style="font-weight:normal"> <span style="color:#aaa">·</span> 1</span></h4>
|
||||||
<div id="posts">
|
<div id="posts">
|
||||||
<?php
|
<?php
|
||||||
$comments = DB::query('SELECT * FROM photos_comments WHERE photo_id=:pid', array(':pid'=>$id));
|
$comments = DB::query('SELECT * FROM photos_comments WHERE photo_id=:pid', array(':pid' => $id));
|
||||||
foreach ($comments as $c) {
|
foreach ($comments as $c) {
|
||||||
$comm = new Comment($c);
|
$comm = new Comment($c);
|
||||||
$comm->i();
|
$comm->i();
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<div class="cmt-write s1">
|
<div class="cmt-write s1">
|
||||||
<h4 class="pp-item-header">Ваш комментарий</h4>
|
<h4 class="pp-item-header">Ваш комментарий</h4>
|
||||||
<div style="padding:0 11px 11px">
|
<div style="padding:0 11px 11px">
|
||||||
<form action="/comment.php" method="post" id="f1">
|
<form action="/comment.php" method="post" id="f1">
|
||||||
<input type="hidden" name="sid" value="hgdl6old9r9qodmvkn1r4t7d6h">
|
<input type="hidden" name="sid" value="hgdl6old9r9qodmvkn1r4t7d6h">
|
||||||
<input type="hidden" name="last_comment_rand" value="893329610">
|
<input type="hidden" name="last_comment_rand" value="893329610">
|
||||||
<input type="hidden" name="id" id="id" value="<?=$id?>">
|
<input type="hidden" name="id" id="id" value="<?= $id ?>">
|
||||||
<input type="hidden" name="subj" id="subj" value="p">
|
<input type="hidden" name="subj" id="subj" value="p">
|
||||||
<textarea name="wtext" id="wtext"></textarea><br>
|
<textarea name="wtext" id="wtext"></textarea><br>
|
||||||
<div class="cmt-submit"><input type="submit" value="Добавить комментарий" id="sbmt">  Ctrl + Enter
|
<div class="cmt-submit"><input type="submit" value="Добавить комментарий" id="sbmt">  Ctrl + Enter
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr></tbody></table>
|
</tr>
|
||||||
<?php } else { ?>
|
</tbody>
|
||||||
<center>
|
|
||||||
<h1>Изображение не найдено</h1>
|
|
||||||
<div class="p20w" style="margin-bottom:20px; padding:10px 30px">
|
|
||||||
<img src="/static/img/pnp.jpg" alt="Пусто" width="400" height="205" border="0">
|
|
||||||
<p>Изображения с таким номером нет на сайте.<br />Может быть, его здесь никогда и не было.<br />Если Вы уверены, что что-то здесь всё-таки было, значит, администратор по каким-то причинам это удалил.</p>
|
|
||||||
</div>
|
|
||||||
</center>
|
|
||||||
<?php } ?>
|
|
||||||
<table width="100%" style="margin-top: 30px;"><tbody>
|
|
||||||
<tr>
|
|
||||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Footer.php'); ?>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
</table>
|
||||||
<script>
|
<?php } else { ?>
|
||||||
$(document).ready(function() {
|
<center>
|
||||||
$('#f1').submit(function(e) {
|
<h1>Изображение не найдено</h1>
|
||||||
e.preventDefault();
|
<div class="p20w" style="margin-bottom:20px; padding:10px 30px">
|
||||||
$.ajax({
|
<img src="/static/img/pnp.jpg" alt="Пусто" width="400" height="205" border="0">
|
||||||
type: "POST",
|
<p>Изображения с таким номером нет на сайте.<br />Может быть, его здесь никогда и не было.<br />Если Вы уверены, что что-то здесь всё-таки было, значит, администратор по каким-то причинам это удалил.</p>
|
||||||
url: '/api/photo/comment',
|
</div>
|
||||||
data: $(this).serialize(),
|
</center>
|
||||||
success: function(response) {
|
<?php } ?>
|
||||||
var jsonData = JSON.parse(response);
|
<table width="100%" style="margin-top: 30px;">
|
||||||
if (jsonData.errorcode == "1") {
|
<tbody>
|
||||||
Notify.noty('danger', 'Комментарий неккоректен');
|
<tr>
|
||||||
//$("#result").html("<div class='alert alert-dangernew container mt-5' role='alert'>Неправильная почта или пароль!</div>");
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Footer.php'); ?>
|
||||||
} else if (jsonData.errorcode == "2") {
|
</tr>
|
||||||
Notify.noty('warning', 'Пожалуйста, подождите...');
|
</tbody>
|
||||||
setTimeout(function(){
|
</table>
|
||||||
window.location.replace(jsonData.twofaurl);
|
<script>
|
||||||
}, 1000);
|
$(document).ready(function() {
|
||||||
} else if (jsonData.errorcode == "0") {
|
$('#f1').submit(function(e) {
|
||||||
$('#wtext').val('');
|
e.preventDefault();
|
||||||
Notify.noty('success', 'Комментарий отправлен!');
|
$.ajax({
|
||||||
//$("#result").html("<div class='alert alert-successnew container mt-5' role='alert'>Успешный вход!</div>");
|
type: "POST",
|
||||||
$.ajax({
|
url: '/api/photo/comment',
|
||||||
|
data: $(this).serialize(),
|
||||||
|
success: function(response) {
|
||||||
|
var jsonData = JSON.parse(response);
|
||||||
|
if (jsonData.errorcode == "1") {
|
||||||
|
Notify.noty('danger', 'Комментарий неккоректен');
|
||||||
|
//$("#result").html("<div class='alert alert-dangernew container mt-5' role='alert'>Неправильная почта или пароль!</div>");
|
||||||
|
} else if (jsonData.errorcode == "2") {
|
||||||
|
Notify.noty('warning', 'Пожалуйста, подождите...');
|
||||||
|
setTimeout(function() {
|
||||||
|
window.location.replace(jsonData.twofaurl);
|
||||||
|
}, 1000);
|
||||||
|
} else if (jsonData.errorcode == "0") {
|
||||||
|
$('#wtext').val('');
|
||||||
|
Notify.noty('success', 'Комментарий отправлен!');
|
||||||
|
//$("#result").html("<div class='alert alert-successnew container mt-5' role='alert'>Успешный вход!</div>");
|
||||||
|
$.ajax({
|
||||||
|
|
||||||
|
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: "/api/photo/getcomments/<?=$id?>",
|
url: "/api/photo/getcomments/<?= $id ?>",
|
||||||
processData: false,
|
processData: false,
|
||||||
async: true,
|
async: true,
|
||||||
success: function(r) {
|
success: function(r) {
|
||||||
$('#posts').html(r)
|
$('#posts').html(r)
|
||||||
|
|
||||||
|
|
||||||
},
|
},
|
||||||
error: function(r) {
|
error: function(r) {
|
||||||
console.log(r)
|
console.log(r)
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
} else {
|
||||||
|
Notify.noty('danger', 'Неизвестная ошибка');
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
} else {
|
|
||||||
Notify.noty('danger', 'Неизвестная ошибка');
|
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ $userprofile = new User(explode('/', $_SERVER['REQUEST_URI'])[2]);
|
||||||
<td class="main">
|
<td class="main">
|
||||||
<?php
|
<?php
|
||||||
if ($userprofile->i('id') === explode('/', $_SERVER['REQUEST_URI'])[2]) { ?>
|
if ($userprofile->i('id') === explode('/', $_SERVER['REQUEST_URI'])[2]) { ?>
|
||||||
<h1><?= $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('id') === Auth::userid()) { ?>
|
if ($userprofile->i('id') === Auth::userid()) { ?>
|
||||||
|
@ -44,21 +44,21 @@ $userprofile = new User(explode('/', $_SERVER['REQUEST_URI'])[2]);
|
||||||
if ($userprofile->content('location') !== null) { ?>
|
if ($userprofile->content('location') !== null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Откуда:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Откуда:</td>
|
||||||
<td><?= $userprofile->content('location') ?></td>
|
<td><?= htmlspecialchars($userprofile->content('location')) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutlive']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutlive']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Откуда:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Откуда:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutlive']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutlive']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutbirthday']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutbirthday']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">День рождения:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">День рождения:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutbirthday']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutbirthday']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</col></table>
|
</col></table>
|
||||||
|
@ -69,63 +69,63 @@ $userprofile = new User(explode('/', $_SERVER['REQUEST_URI'])[2]);
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutlangs']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutlangs']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Владение языками:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Владение языками:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutlangs']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutlangs']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['abouttelegram']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['abouttelegram']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Telegram:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Telegram:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['abouttelegram']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['abouttelegram']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutvk']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutvk']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">ВКонтакте:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">ВКонтакте:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutvk']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutvk']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['abouttwitter']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['abouttwitter']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Twitter/X:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Twitter/X:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['abouttwitter']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['abouttwitter']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutyoutube']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutyoutube']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Twitter/X:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Twitter/X:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutyoutube']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutyoutube']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutemail']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutemail']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Почта:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Почта:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutemail']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutemail']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutinstagram']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutinstagram']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Instagram:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Instagram:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutinstagram']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutinstagram']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['abouttransphoto']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['abouttransphoto']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">TransPhoto:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">TransPhoto:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['abouttransphoto']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['abouttransphoto']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutwebsite']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutwebsite']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Личный сайт:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Личный сайт:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutwebsite']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutwebsite']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</table>
|
</table>
|
||||||
|
@ -136,21 +136,21 @@ $userprofile = new User(explode('/', $_SERVER['REQUEST_URI'])[2]);
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutfavs_trains']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutfavs_trains']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Любимые модели поездов:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Любимые модели поездов:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutfavs_trains']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutfavs_trains']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutfavs_countries']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutfavs_countries']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Любимые страны:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Любимые страны:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutfavs_countries']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutfavs_countries']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php
|
<?php
|
||||||
if (json_decode($userprofile->i('content'), true)['aboutfavs_cities']['value'] != null) { ?>
|
if (json_decode($userprofile->i('content'), true)['aboutfavs_cities']['value'] != null) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="sm" style="padding:3px 10px 3px 0">Любимые города:</td>
|
<td class="sm" style="padding:3px 10px 3px 0">Любимые города:</td>
|
||||||
<td><?= json_decode($userprofile->i('content'), true)['aboutfavs_cities']['value'] ?></td>
|
<td><?= htmlspecialchars(json_decode($userprofile->i('content'), true)['aboutfavs_cities']['value']) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -56,8 +56,8 @@ use \App\Models\User;
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="d">
|
<td class="d">
|
||||||
<p><span style="word-spacing:-1px"><b>'.$p['place'].'</b></span></p>
|
<p><span style="word-spacing:-1px"><b>'.htmlspecialchars($p['place']).'</b></span></p>
|
||||||
<p class="sm"><b>'.Date::zmdate($p['posted_at']).'</b><br>Автор: <a href="/author/'.$p['user_id'].'/">'.$author->i('username').'</a></p>
|
<p class="sm"><b>'.Date::zmdate($p['posted_at']).'</b><br>Автор: <a href="/author/'.$p['user_id'].'/">'.htmlspecialchars($author->i('username')).'</a></p>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td class="c" style="padding:10px">
|
<td class="c" style="padding:10px">
|
||||||
|
|
|
@ -20,7 +20,7 @@ $user = new User(Auth::userid());
|
||||||
<tr>
|
<tr>
|
||||||
<td class="main">
|
<td class="main">
|
||||||
<h1>Общая информация</h1>
|
<h1>Общая информация</h1>
|
||||||
<h4>Здравствуйте, <a href="/author/<?=Auth::userid()?>/"><?=$user->i('username')?></a>!</h4>
|
<h4>Здравствуйте, <a href="/author/<?=Auth::userid()?>/"><?=htmlspecialchars($user->i('username'))?></a>!</h4>
|
||||||
<p>
|
<p>
|
||||||
Количество ваших фотографий на сайте: <b><?=DB::query('SELECT COUNT(*) FROM photos WHERE user_id=:uid', array(':uid'=>Auth::userid()))[0]['COUNT(*)']?></b></p>
|
Количество ваших фотографий на сайте: <b><?=DB::query('SELECT COUNT(*) FROM photos WHERE user_id=:uid', array(':uid'=>Auth::userid()))[0]['COUNT(*)']?></b></p>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -32,9 +32,9 @@ use App\Services\{Router, Auth, DB, Date};
|
||||||
</a></td>
|
</a></td>
|
||||||
<td class="pb_descr">
|
<td class="pb_descr">
|
||||||
|
|
||||||
<p><b class="pw-place">'.$p['place'].'</b></p>
|
<p><b class="pw-place">'.htmlspecialchars($p['place']).'</b></p>
|
||||||
<span class="pw-descr">'.$p['postbody'].'</span>
|
<span class="pw-descr">'.htmlspecialchars($p['postbody']).'</span>
|
||||||
<p class="sm"><b>'.Date::zmdate($p['timeupload']).'</b><br>Автор: <a href="/author/'.$p['user_id'].'/">'.$p['username'].'</a></p>
|
<p class="sm"><b>'.Date::zmdate($p['timeupload']).'</b><br>Автор: <a href="/author/'.$p['user_id'].'/">'.htmlspecialchars($p['username']).'</a></p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in a new issue