2022-09-13 13:14:49 +00:00
|
|
|
<?php
|
|
|
|
namespace Misuzu;
|
|
|
|
|
2023-08-31 15:59:53 +00:00
|
|
|
if(!$msz->getAuthInfo()->getPerms('global')->check(Perm::G_NEWS_POSTS_MANAGE))
|
|
|
|
Template::throwError(403);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-07-15 17:02:46 +00:00
|
|
|
$news = $msz->getNews();
|
2023-08-05 13:50:15 +00:00
|
|
|
$pagination = new Pagination($news->countPosts(
|
2023-07-15 17:02:46 +00:00
|
|
|
includeScheduled: true,
|
|
|
|
includeDeleted: true
|
|
|
|
), 15);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-08-31 15:59:53 +00:00
|
|
|
if(!$pagination->hasValidOffset())
|
|
|
|
Template::throwError(404);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-09-08 20:40:48 +00:00
|
|
|
$posts = $news->getPosts(
|
2023-07-15 17:02:46 +00:00
|
|
|
includeScheduled: true,
|
|
|
|
includeDeleted: true,
|
|
|
|
pagination: $pagination
|
|
|
|
);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
|
|
|
Template::render('manage.news.posts', [
|
|
|
|
'news_posts' => $posts,
|
2023-07-15 17:02:46 +00:00
|
|
|
'posts_pagination' => $pagination,
|
2022-09-13 13:14:49 +00:00
|
|
|
]);
|