blob: 35a78c323a43a5f140de362ae4171f3b8fe6d5f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?php
#===============================================================================
# DEFINE: Administration
#===============================================================================
const ADMINISTRATION = TRUE;
const AUTHENTICATION = TRUE;
#===============================================================================
# INCLUDE: Initialization
#===============================================================================
require '../../core/application.php';
#===============================================================================
# Get repositories
#===============================================================================
$CategoryRepository = Application::getRepository('Category');
#===============================================================================
# Pagination
#===============================================================================
$site_size = Application::get('ADMIN.CATEGORY.LIST_SIZE');
$count = $CategoryRepository->getCount();
$lastSite = ceil($count / $site_size);
$currentSite = HTTP::GET('site') ?? 1;
$currentSite = intval($currentSite);
#===============================================================================
# Redirect to category create form if no category exists
#===============================================================================
if($count === 0) {
HTTP::redirect(Application::getAdminURL('category/insert.php'));
}
if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) {
Application::error404();
}
#===============================================================================
# Get paginated category list
#===============================================================================
$categories = $CategoryRepository->getPaginatedTree(
$site_size, ($currentSite-1) * $site_size);
foreach($categories as $Category) {
$templates[] = generateCategoryItemTemplate($Category, TRUE);
}
#===============================================================================
# Build document
#===============================================================================
$ListTemplate = Template\Factory::build('category/index');
$ListTemplate->set('LIST', [
'CATEGORIES' => $templates ?? []
]);
$ListTemplate->set('PAGINATION', [
'THIS' => $currentSite,
'LAST' => $lastSite,
'HTML' => createPaginationTemplate(
$currentSite, $lastSite, Application::getAdminURL('category/')
)
]);
$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('NAME', $Language->text('title_category_overview', $currentSite));
$MainTemplate->set('HTML', $ListTemplate);
echo $MainTemplate;
|