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

28 lines
674 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
2024-12-02 02:28:08 +00:00
if(!isset($msz) || !($msz instanceof \Misuzu\MisuzuContext))
die('Script must be called through the Misuzu route dispatcher.');
if(!$msz->authInfo->getPerms('global')->check(Perm::G_NEWS_POSTS_MANAGE))
Template::throwError(403);
2022-09-13 13:14:49 +00:00
$pagination = new Pagination($msz->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
$posts = $msz->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
]);