blob: 1f29473117eb486862f51b0e5ea5c8939535cd4f (
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
|
<?php
#===============================================================================
# INCLUDE: Main configuration
#===============================================================================
require_once '../../core/application.php';
$site_size = Application::get('USER.LIST_SIZE');
$site_sort = Application::get('USER.LIST_SORT');
$lastSite = ceil($Database->query(sprintf('SELECT COUNT(id) FROM %s', User\Attribute::TABLE))->fetchColumn() / $site_size);
$currentSite = HTTP::GET('site') ?? 1;
$currentSite = abs(intval($currentSite));
if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) {
Application::exit(404);
}
#===============================================================================
# TRY: Template\Exception
#===============================================================================
try {
$execSQL = "SELECT id FROM %s ORDER BY {$site_sort} LIMIT ".(($currentSite-1) * $site_size).", {$site_size}";
$userIDs = $Database->query(sprintf($execSQL, User\Attribute::TABLE))->fetchAll($Database::FETCH_COLUMN);
foreach($userIDs as $userID) {
try {
$User = User\Factory::build($userID);
$ItemTemplate = generateUserItemTemplate($User);
$users[] = $ItemTemplate;
} catch(User\Exception $Exception){}
}
$ListTemplate = Template\Factory::build('user/list');
$ListTemplate->set('PAGINATION', [
'THIS' => $currentSite,
'LAST' => $lastSite,
'HTML' => generateUserNaviTemplate($currentSite)
]);
$ListTemplate->set('LIST', [
'USERS' => $users ?? []
]);
$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('HTML', $ListTemplate);
$MainTemplate->set('HEAD', [
'NAME' => $Language->text('title_user_overview', $currentSite)
]);
echo $MainTemplate;
}
#===============================================================================
# CATCH: Template\Exception
#===============================================================================
catch(Template\Exception $Exception) {
$Exception->defaultHandler();
}
?>
|