-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.php
160 lines (134 loc) · 5.44 KB
/
setup.php
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
/* Copyright (C) 2022-2024 EVARISK <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* \file admin/setup.php
* \ingroup saturne
* \brief Saturne setup page
*/
// Load Saturne environment
if (file_exists('../saturne.main.inc.php')) {
require_once __DIR__ . '/../saturne.main.inc.php';
} elseif (file_exists('../../saturne.main.inc.php')) {
require_once __DIR__ . '/../../saturne.main.inc.php';
} else {
die('Include of saturne main fails');
}
// Load Dolibarr libraries
require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php';
// Load Saturne libraries
require_once __DIR__ . '/../lib/saturne.lib.php';
// Global variables definitions
global $conf, $db, $langs, $user;
// Load translation files required by the page
saturne_load_langs(['admin']);
// Initialize view objects
$form = new Form($db);
// Get parameters
$action = GETPOST('action', 'alpha');
$value = GETPOST('value', 'alpha');
$backtopage = GETPOST('backtopage', 'alpha');
// Security check - Protection if external user
$permissiontoread = $user->rights->saturne->adminpage->read;
saturne_check_access($permissiontoread);
/*
* Actions
*/
if ($action == 'update_settings_config') {
$mediaResolution = GETPOST('mediaResolution', 'alpha');
$result = dolibarr_set_const($db, 'SATURNE_MEDIA_RESOLUTION_USED', $mediaResolution, 'chaine', 0, '', $conf->entity);
if ($result > 0) {
setEventMessage($langs->trans('SavedConfig'));
} else {
setEventMessage($langs->trans('ErrorSavedConfig'), 'errors');
}
}
/*
* View
*/
$title = $langs->trans('ModuleSetup', 'Saturne');
$help_url = 'FR:Module_Saturne#Configuration';
saturne_header(0,'', $title, $help_url);
// Subheader
$linkback = '<a href="' . ($backtopage ?: DOL_URL_ROOT . '/admin/modules.php?restore_lastsearch_values=1') . '">' . $langs->trans('BackToModuleList') . '</a>';
print load_fiche_titre($title, $linkback, 'title_setup');
// Configuration header
$head = saturne_admin_prepare_head();
print dol_get_fiche_head($head, 'settings', $title, -1, 'saturne_color@saturne');
print load_fiche_titre($langs->trans('GeneralConfig'), '', '');
print '<form method="POST" action="' . $_SERVER['PHP_SELF'] . '" name="settings_form">';
print '<input type="hidden" name="token" value="' . newToken() . '">';
print '<input type="hidden" name="action" value="update_settings_config">';
print '<div class="div-table-responsive-no-min">';
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
print '<td>' . $langs->trans('Name') . '</td>';
print '<td>' . $langs->trans('Description') . '</td>';
print '<td class="center">' . $langs->trans('Status') . '</td>';
print '</tr>';
// Enable public interface
print '<tr class="oddeven"><td>';
print $langs->trans('EnablePublicInterface');
print '</td><td>';
print $langs->trans('EnablePublicInterfaceDescription');
print '</td><td class="center">';
print ajax_constantonoff('SATURNE_ENABLE_PUBLIC_INTERFACE');
print '</td></tr>';
// Show logo for company
print '<tr class="oddeven"><td>';
print $langs->trans('ShowCompanyLogo');
print '</td><td>';
print $langs->trans('ShowCompanyLogoDescription');
print '</td><td class="center">';
print ajax_constantonoff('SATURNE_SHOW_COMPANY_LOGO');
print '</td></tr>';
// Use captcha
print '<tr class="oddeven"><td>';
print $langs->trans('UseCaptcha');
print '</td><td>';
print $langs->trans('UseCaptchaDescription');
print '</td><td class="center">';
print ajax_constantonoff('SATURNE_USE_CAPTCHA');
print '</td></tr>';
// Use all email mode
print '<tr class="oddeven"><td>';
print $langs->trans('UseAllEmailMode');
print '</td><td>';
print $langs->trans('UseAllEmailModeDescription');
print '</td><td class="center">';
print ajax_constantonoff('SATURNE_USE_ALL_EMAIL_MODE');
print '</td></tr>';
// Use fast upload improvement
print '<tr class="oddeven"><td>';
print $langs->trans('UseFastUploadImprovement');
print '</td><td>';
print $langs->transnoentities('UseFastUploadImprovementDescription');
if (getDolGlobalInt('SATURNE_USE_FAST_UPLOAD_IMPROVEMENT')) {
$mediaResolution = ['sd-720x480' => 'SD (720x480 pixels)', 'hd-1280x720' => 'HD (1280x720 pixels)', 'fullHD-1920x1080' => 'Full HD (1920x1080 pixels)', 'ultraHD4k-3840x2160' => 'Ultra HD 4K (3840x2160 pixels)', 'ultraHD8k-7680x4320' => 'Ultra HD 8K (7680x4320 pixels)'];
print '<span class="marginrightonly">' . $langs->trans('MediaResolutionDescription') . '</span>';
print $form::selectarray('mediaResolution', $mediaResolution, getDolGlobalString('SATURNE_MEDIA_RESOLUTION_USED', 'fullHD-1920x1080'));
print '<input type="submit" class="button" name="save" value="' . $langs->trans('Save') . '">';
}
print '</td><td class="center">';
print ajax_constantonoff('SATURNE_USE_FAST_UPLOAD_IMPROVEMENT');
print '</td></tr>';
print '</table>';
print '</div>';
print '</form>';
// Page end
print dol_get_fiche_end();
llxFooter();
$db->close();