aboutsummaryrefslogtreecommitdiffstats
path: root/core/include/category/list.php
blob: 3a5720bcfeda2627269ac5bdaad28212c1d2072a (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
<?php
#===============================================================================
# Get instances
#===============================================================================
$Language = Application::getLanguage();

#===============================================================================
# Get repositories
#===============================================================================
$CategoryRepository = Application::getRepository('Category');
$PostRepository = Application::getRepository('Post');

#===============================================================================
# Pagination
#===============================================================================
$site_size = Application::get('CATEGORY.LIST_SIZE');

$count = $CategoryRepository->getCount();
$lastSite = ceil($count / $site_size);

$currentSite = HTTP::GET('site') ?? 1;
$currentSite = intval($currentSite);

if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) {
	Application::error404();
}

#===============================================================================
# Single redirect
#===============================================================================
if(Application::get('CATEGORY.SINGLE_REDIRECT') === TRUE AND $count === 1) {
	$Category = $CategoryRepository->getLast();
	HTTP::redirect(Application::getEntityURL($Category));
}

#===============================================================================
# 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/list');
$ListTemplate->set('PAGINATION', [
	'THIS' => $currentSite,
	'LAST' => $lastSite,
	'HTML' => createPaginationTemplate(
		$currentSite, $lastSite, Application::getCategoryURL())
]);
$ListTemplate->set('LIST', [
	'CATEGORIES' => $templates ?? []
]);

$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('HTML', $ListTemplate);
$MainTemplate->set('HEAD', [
	'NAME' => $Language->text('title_category_overview', $currentSite)
]);

echo $MainTemplate;