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

32 lines
656 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
use Misuzu\Users\User;
if(!User::hasCurrent() || !perms_check_user(MSZ_PERMS_NEWS, User::getCurrent()->getId(), MSZ_PERM_NEWS_MANAGE_POSTS)) {
echo render_error(403);
return;
}
2023-07-15 17:02:46 +00:00
$news = $msz->getNews();
$pagination = new Pagination($news->countAllPosts(
includeScheduled: true,
includeDeleted: true
), 15);
2022-09-13 13:14:49 +00:00
2023-07-15 17:02:46 +00:00
if(!$pagination->hasValidOffset()) {
2022-09-13 13:14:49 +00:00
echo render_error(404);
return;
}
2023-07-15 17:02:46 +00:00
$posts = $news->getAllPosts(
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
]);