add photos limit

This commit is contained in:
themohooks 2024-07-06 10:28:50 +03:00
parent 7a86eb54be
commit a571c79dd7
4 changed files with 25 additions and 3 deletions

View file

@ -1,5 +1,7 @@
ngallery:
root:
title: "NativeGallery"
logo: "/static/img/logosmall.png"
maintenance: false
debug: true
botkey: ''

View file

@ -4,6 +4,19 @@ use \App\Services\Auth;
use \App\Models\User;
$user = new \App\Models\User(Auth::userid());
if (NGALLERY['root']['logo'] != null) {
$logo = NGALLERY['root']['logo'];
} else {
$logo = '/static/img/logosmall.png';
}
if (NGALLERY['root']['title'] != null) {
$title = NGALLERY['root']['title'];
} else {
$title = 'NativeGallery';
}
?>
<tr>
<td class="mm-bar">
@ -83,5 +96,5 @@ $user = new \App\Models\User(Auth::userid());
</td>
</tr>
<tr>
<td><a href="/" id="title"><img src="/static/img/logosmall.png" alt="TransPhoto"><span>NativeGallery</span></a></td>
<td><a href="/" id="title"><img src="<?=$logo?>" alt="<?=$title?>"><span><?=$title?></span></a></td>
</tr>

View file

@ -138,7 +138,7 @@ use App\Models\{User, Vote, Comment};
<h4 style="clear:both"><a href="/update.php?time=72">Недавно добавленные фотографии</a></h4>
<div id="recent-photos" class="ix-photos ix-photos-multiline" lastpid="1970527" firstpid="1970550">
<?php
$photos = DB::query('SELECT * FROM photos ORDER BY id DESC');
$photos = DB::query('SELECT * FROM photos ORDER BY id DESC LIMIT 30');
foreach ($photos as $p) {
$bck = 'background-image:url("' . $p['photourl'] . '")';
echo ' <div class="prw-grid-item">

View file

@ -111,7 +111,14 @@ $photouser = new \App\Models\User($photo->i('user_id'));
<div>
<div style="padding-top:8px"><?= $photo->content('comment') ?></div>
</div><br>
<div>Прислал <a href="/author/<?= $photo->i('user_id') ?>/"><?= $photouser->i('username') ?></a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Дата: <b><?= Date::zmdate($photo->i('posted_at')) ?></b></div>
<?php
if ($photo->i('posted_at') === 943909200) {
$date = 'не указана';
} else {
$date = Date::zmdate($photo->i('posted_at'));
}
?>
<div>Прислал <a href="/author/<?= $photo->i('user_id') ?>/"><?= $photouser->i('username') ?></a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Дата: <b><?= $date ?></b></div>
<table id="pp-items">
<tr>
<td id="pp-left-col">