blob: fedb13c8c87fc3f0dcc2255a8982902afe98bc11 (
plain) (
blame)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<?php
class Page_mail_templates extends Page
{
private $templates = [];
protected function doPreprocess()
{
User::load();
if (!User::hasPermission('superadmin')) {
Message::addError('main.no-permission');
Util::redirect('?do=Main');
}
$action = Request::get('action', 'show', 'string');
if ($action === 'show') {
$this->fetchTemplates();
} elseif ($action === 'save') {
$this->handleSave();
}
}
private function enrichHtml() {
/* for each template */
foreach ($this->templates as $k => $t) {
$lis = "";
$optManVars = "";
$optVars = "";
foreach ($t['mandatory_variables'] as $var) {
$optManVars .= "<option selected=\"selected\" value=\"$var\">$var</option>";
$lis .= "<li><strong>$var</strong></li>";
}
foreach($t['optional_variables'] as $var) {
$optVars .= "<option selected=\"selected\" value=\"$var\">$var</option>";
$lis .= "<li>$var</li>";
}
/* also options for hidden inputs */
$this->templates[$k]['html_availableVariables'] = $lis;
$this->templates[$k]['html_mandatoryVariables'] = $optManVars;
$this->templates[$k]['html_optionalVariables'] = $optVars;
/* also for javascript */
$this->templates[$k]['list_mandatoryVariables'] =
implode(',', $this->templates[$k]['mandatory_variables']);
$this->templates[$k]['list_optionalVariables'] =
implode(',', $this->templates[$k]['optional_variables']);
}
}
protected function doRender()
{
//echo '<pre>';
//var_dump($this->templates);
//echo '</pre>';
//die();
$this->enrichHtml();
Render::addTemplate('templates', ['templates' => $this->templates]);
}
private function handleSave() {
$data = [];
$data['templates'] = Request::post('templates');
$data = $this->cleanTemplateArray($data);
if ($data!= NULL) {
$data = json_encode($data, JSON_PRETTY_PRINT);
//echo '<pre>';
//print_r($data);
//echo '</pre>';
//die();
Database::exec("UPDATE sat.configuration SET value = :value WHERE parameter = 'templates'", array('value' => $data));
Message::addSuccess('templates-saved');
Util::redirect('?do=dozmod§ion=templates&action=show');
} else {
die('error while encoding');
}
}
private function fetchTemplates() {
$templates= Database::queryFirst('SELECT value FROM sat.configuration WHERE parameter = :param', array('param' => 'templates'));
if ($templates != null) {
$templates = @json_decode($templates['value'], true);
if (is_array($templates)) {
$this->templates = $templates['templates'];
}
}
}
private function cleanTemplateArray($in) {
$out = [];
foreach ($in['templates'] as $t) {
$tcopy = $t;
$tcopy['mandatory_variables'] = $this->toArray($t['mandatory_variables']);
$tcopy['optional_variables'] = $this->toArray($t['optional_variables']);
$tcopy['description'] = $t['description'];
$tcopy['name'] = $t['name'];
$out['templates'][] = $tcopy;
}
return $out;
}
private function toArray($value) {
if (empty($value)) {
return [];
} else if(is_array($value)) {
return $value;
} else {
return array($value);
}
}
}
|