misuzu/public-legacy/manage/news/posts.php

26 lines
561 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
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();
$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
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
]);