2022-09-13 13:14:49 +00:00
|
|
|
<?php
|
|
|
|
namespace Misuzu;
|
|
|
|
|
|
|
|
use Misuzu\Users\User;
|
|
|
|
|
|
|
|
require_once '../../../misuzu.php';
|
|
|
|
|
|
|
|
if(!User::hasCurrent() || !perms_check_user(MSZ_PERMS_NEWS, User::getCurrent()->getId(), MSZ_PERM_NEWS_MANAGE_CATEGORIES)) {
|
|
|
|
echo render_error(403);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-15 17:02:46 +00:00
|
|
|
$news = $msz->getNews();
|
|
|
|
$pagination = new Pagination($news->countAllCategories(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
|
|
|
$categories = $news->getAllCategories(true, $pagination);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
|
|
|
Template::render('manage.news.categories', [
|
|
|
|
'news_categories' => $categories,
|
2023-07-15 17:02:46 +00:00
|
|
|
'categories_pagination' => $pagination,
|
2022-09-13 13:14:49 +00:00
|
|
|
]);
|