mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-14 19:19:08 +03:00
feed page
This commit is contained in:
parent
bec7156e53
commit
f1dfb96864
4 changed files with 106 additions and 1 deletions
|
@ -52,6 +52,11 @@ class MainController
|
|||
{
|
||||
Page::set('Vehicle');
|
||||
|
||||
}
|
||||
public static function feed()
|
||||
{
|
||||
Page::set('Feed');
|
||||
|
||||
}
|
||||
public static function favauthors()
|
||||
{
|
||||
|
|
|
@ -26,6 +26,7 @@ class Routes
|
|||
Router::get('/rules/pub', 'MainController@publicationRules');
|
||||
Router::get('/rules/photo', 'MainController@photoRules');
|
||||
Router::get('/rules/video', 'MainController@videoRules');
|
||||
Router::get('/feed', 'MainController@feed');
|
||||
Router::get('/update', 'MainController@update');
|
||||
Router::get('/top30', 'MainController@top30');
|
||||
Router::get('/photoext', 'PhotoController@photoext');
|
||||
|
|
|
@ -50,7 +50,7 @@ if ($noncheckedimgs > 0) {
|
|||
<div>
|
||||
<ul class="mm-level-2">
|
||||
<li><a href="/update.php?time=24" class="mm-item"><span class="mm-label">Новые фотографии</span></a></li>
|
||||
<li><a href="/feed.php" class="mm-item"><span class="mm-label">Лента обновлений</span></a></li>
|
||||
<li><a href="/feed" class="mm-item"><span class="mm-label">Лента обновлений</span></a></li>
|
||||
<li><a href="/fav_authors" class="mm-item"><span class="mm-label">Фотографии избранных авторов</span><?=$nonrw?></a></li>
|
||||
<li><a href="/update.php" class="mm-item"><span class="mm-label">Архив обновлений по датам</span></a></li>
|
||||
</ul>
|
||||
|
|
99
views/pages/Feed.php
Normal file
99
views/pages/Feed.php
Normal file
|
@ -0,0 +1,99 @@
|
|||
<?php
|
||||
|
||||
use App\Services\{DB, Auth, Date, Json};
|
||||
use App\Models\{User, Vote, Comment};
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/LoadHead.php'); ?>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<style>
|
||||
.ix-country {
|
||||
padding-top: 3px;
|
||||
white-space: nowrap;
|
||||
font-family: var(--narrow-font);
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.ix-country>a>b {
|
||||
border-bottom: dotted 1px;
|
||||
}
|
||||
|
||||
.ix-cities {
|
||||
padding: 5px 0 15px 15px;
|
||||
}
|
||||
|
||||
.ix-arrow {
|
||||
display: inline-block;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
background: url("/img/arrow_blue.png") no-repeat;
|
||||
transition: transform .1s ease-out;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.ix-arrow.ix-arrow-expanded {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
<div id="backgr"></div>
|
||||
<table class="tmain">
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Navbar.php'); ?>
|
||||
<tr>
|
||||
<td class="main">
|
||||
<h1>Лента обновлений</h1>
|
||||
|
||||
<div class="sm" style="margin:-15px 0 5px">Показаны последние 100 фотографий</div><br />
|
||||
<div id="upd_anchor"></div>
|
||||
<?php
|
||||
$photos = DB::query('SELECT * FROM photos WHERE moderated=1 ORDER BY id DESC LIMIT 100');
|
||||
foreach ($photos as $p) {
|
||||
$user = new User($p['user_id']);
|
||||
echo ' <div class="p5h" style="padding:0 5px">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="pb-pre">'.Date::zmdate($p['timeupload']).'</td>
|
||||
<td class="pb_photo" id="p2017137"><a href="/photo/'.$p['id'].'" target="_blank" class="prw"><img class="f" src="/api/photo/compress?url=' . $p['photourl'] . '" alt="598 КБ">
|
||||
<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>'.htmlspecialchars($p['postbody']).'</p>
|
||||
<p><b class="pw-place">'.htmlspecialchars($p['place']).'</b></p>
|
||||
<p class="sm"><b>'.Date::zmdate($p['posted_at']).'</b><br>Автор: <a href="/author/'.$p['user_id'].'/">'.$user->i('username').'</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><br>';
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<div id="scroll_anchor"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Footer.php'); ?>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue