mirror of
https://github.com/WerySkok/nativegallery.git
synced 2024-11-15 19:49:16 +03:00
62 lines
No EOL
2.3 KiB
PHP
62 lines
No EOL
2.3 KiB
PHP
<?php
|
|
|
|
use \App\Services\{Auth, DB, Date};
|
|
use \App\Models\{User, Photo};
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/LoadHead.php'); ?>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div id="backgr"></div>
|
|
<table class="tmain">
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Navbar.php'); ?>
|
|
<tr>
|
|
<td class="main">
|
|
<h1>Фотографии избранных авторов</h1>
|
|
<?php
|
|
$followimgs = DB::query('SELECT * FROM followers_notifications WHERE follower_id=:id AND checked=1', array(':id'=>Auth::userid()));
|
|
foreach ($followimgs as $f) {
|
|
$author = new User($p['user_id']);
|
|
$p = new Photo($f['photo_id']);
|
|
echo ' <div class="p20p">
|
|
<table>
|
|
<tr>
|
|
|
|
<td class="pb_photo" id="p1941865"><a href="/photo/'.$f['photo_id'].'/" target="_blank" class="prw"><img class="f" src="'.$p['photourl'].'" alt="620 КБ">
|
|
<div class="hpshade">
|
|
<div class="eye-icon">'.DB::query('SELECT COUNT(*) FROM photos_views WHERE photo_id=:id', array(':id'=>$p['id']))[0]['COUNT(*)'].'</div>
|
|
</div>
|
|
</a></td>
|
|
<td class="pb_descr">
|
|
|
|
<p><b class="pw-place">'.htmlspecialchars($p['place']).'</b></p>
|
|
<span class="pw-descr">'.htmlspecialchars($p['postbody']).'</span>
|
|
<p class="sm"><b>'.Date::zmdate($p['timeupload']).'</b><br>Автор: <a href="/author/'.$author->i('user_id').'/">'.htmlspecialchars($author->i('username')).'</a></p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>';
|
|
}
|
|
?>
|
|
|
|
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Footer.php'); ?>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|