aboutsummaryrefslogtreecommitdiffstats
path: root/admin/page/search.php
blob: 8135b91d14d67123faf0c75f2f79508273d1a69c (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
<?php
#===============================================================================
# DEFINE: Administration
#===============================================================================
const ADMINISTRATION = TRUE;
const AUTHENTICATION = TRUE;

#===============================================================================
# INCLUDE: Initialization
#===============================================================================
require '../../core/application.php';

#===============================================================================
# Check for search request
#===============================================================================
if($search = HTTP::GET('q')) {
	$PageRepository = Application::getRepository('Page');
	$UserRepository = Application::getRepository('User');

	foreach($PageRepository->search($search) as $Page) {
		$User = $UserRepository->find($Page->get('user'));
		$templates[] = generatePageItemTemplate($Page, $User);
	}
}

#===============================================================================
# Build document
#===============================================================================
$SearchTemplate = Template\Factory::build('page/search');
$SearchTemplate->set('QUERY', $search);
$SearchTemplate->set('PAGES', $templates ?? []);

$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('NAME', $Language->text('title_page_search'));
$MainTemplate->set('HTML', $SearchTemplate);

echo $MainTemplate;