This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/public-legacy/manage/news/categories.php

19 lines
487 B
PHP
Raw Normal View History

2022-09-13 15:14:49 +02:00
<?php
namespace Misuzu;
if(!$msz->getAuthInfo()->getPerms('global')->check(Perm::G_NEWS_CATEGORIES_MANAGE))
Template::throwError(403);
2022-09-13 15:14:49 +02:00
2023-07-15 17:02:46 +00:00
$news = $msz->getNews();
$pagination = new Pagination($news->countCategories(), 15);
2022-09-13 15:14:49 +02:00
if(!$pagination->hasValidOffset())
Template::throwError(404);
2022-09-13 15:14:49 +02:00
$categories = $news->getCategories(pagination: $pagination);
2022-09-13 15:14:49 +02:00
Template::render('manage.news.categories', [
'news_categories' => $categories,
2023-07-15 17:02:46 +00:00
'categories_pagination' => $pagination,
2022-09-13 15:14:49 +02:00
]);