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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?php
#===============================================================================
# DEFINE: Administration
#===============================================================================
define('ADMINISTRATION', TRUE);
define('AUTHENTICATION', TRUE);
#===============================================================================
# INCLUDE: Initialization
#===============================================================================
require '../../core/application.php';
#===============================================================================
# TRY: Page\Exception
#===============================================================================
try {
$Page = Page\Factory::build(HTTP::GET('id'));
$Attribute = $Page->getAttribute();
if(HTTP::issetPOST('user', 'slug', 'name', 'body', 'argv', 'time_insert', 'time_update', 'update')) {
$Attribute->set('user', HTTP::POST('user'));
$Attribute->set('slug', HTTP::POST('slug') ? HTTP::POST('slug') : generateSlug(HTTP::POST('name')));
$Attribute->set('name', HTTP::POST('name') ? HTTP::POST('name') : NULL);
$Attribute->set('body', HTTP::POST('body') ? HTTP::POST('body') : NULL);
$Attribute->set('argv', HTTP::POST('argv') ? HTTP::POST('argv') : NULL);
$Attribute->set('time_insert', HTTP::POST('time_insert') ?: date('Y-m-d H:i:s'));
$Attribute->set('time_update', HTTP::POST('time_update') ?: date('Y-m-d H:i:s'));
if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) {
try {
$Attribute->databaseUPDATE($Database);
} catch(PDOException $Exception) {
$messages[] = $Exception->getMessage();
}
}
else {
$messages[] = $Language->text('error_security_csrf');
}
}
#===============================================================================
# TRY: Template\Exception
#===============================================================================
try {
$userIDs = $Database->query(sprintf('SELECT id FROM %s ORDER BY fullname ASC', User\Attribute::TABLE));
foreach($userIDs->fetchAll($Database::FETCH_COLUMN) as $userID) {
$User = User\Factory::build($userID);
$userAttributes[] = [
'ID' => $User->attr('id'),
'FULLNAME' => $User->attr('fullname'),
'USERNAME' => $User->attr('username'),
];
}
$FormTemplate = Template\Factory::build('page/form');
$FormTemplate->set('FORM', [
'TYPE' => 'UPDATE',
'INFO' => $messages ?? [],
'DATA' => array_change_key_case($Attribute->getAll(), CASE_UPPER),
'USER_LIST' => $userAttributes ?? [],
'TOKEN' => Application::getSecurityToken()
]);
$PageUpdateTemplate = Template\Factory::build('page/update');
$PageUpdateTemplate->set('HTML', $FormTemplate);
$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('NAME', $Language->text('title_page_update'));
$MainTemplate->set('HTML', $PageUpdateTemplate);
echo $MainTemplate;
}
#===============================================================================
# CATCH: Template\Exception
#===============================================================================
catch(Template\Exception $Exception) {
Application::exit($Exception->getMessage());
}
}
#===============================================================================
# CATCH: Page\Exception
#===============================================================================
catch(Page\Exception $Exception) {
Application::error404();
}
|