28 require
'../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
38 $langs->loadLangs(array(
"admin",
"other"));
41 $action =
GETPOST(
'action',
'aZ09');
43 $syslogModules = array();
44 $activeModules = array();
46 if (!empty($conf->global->SYSLOG_HANDLERS)) {
47 $activeModules = json_decode($conf->global->SYSLOG_HANDLERS);
50 $dirsyslogs = array_merge(array(
'/core/modules/syslog/'), $conf->modules_parts[
'syslog']);
51 foreach ($dirsyslogs as $reldir) {
54 if (is_dir($newdir)) {
55 $handle = opendir($newdir);
57 if (is_resource($handle)) {
58 while (($file = readdir($handle)) !==
false) {
59 if (substr($file, 0, 11) ==
'mod_syslog_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
60 $file = substr($file, 0,
dol_strlen($file) - 4);
62 require_once $newdir.$file.
'.php';
67 if ($module->getVersion() ==
'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
70 if ($module->getVersion() ==
'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
74 $syslogModules[] = $file;
88 if ($action ==
'set') {
91 $newActiveModules = array();
92 $selectedModules = (
GETPOSTISSET(
'SYSLOG_HANDLERS') ?
GETPOST(
'SYSLOG_HANDLERS') : array());
95 foreach ($syslogModules as $syslogHandler) {
96 if (in_array($syslogHandler, $syslogModules)) {
97 $module =
new $syslogHandler;
99 if (in_array($syslogHandler, $selectedModules)) {
100 $newActiveModules[] = $syslogHandler;
102 foreach ($module->configure() as $option) {
111 $activeModules = $newActiveModules;
114 dolibarr_set_const($db,
'SYSLOG_HANDLERS', json_encode($activeModules),
'chaine', 0,
'', 0);
117 foreach ($activeModules as $modulename) {
121 $module =
new $modulename;
122 $error = $module->checkConfiguration();
136 if ($action ==
'setlevel') {
146 $file_saves =
GETPOST(
"file_saves");
148 dol_syslog(
"admin/syslog: file saves ".$file_saves);
167 llxHeader(
'', $langs->trans(
"SyslogSetup"));
171 $linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
172 print
load_fiche_titre($langs->trans(
"SyslogSetup"), $linkback,
'title_setup');
175 $syslogfacility = $defaultsyslogfacility =
dolibarr_get_const($db,
"SYSLOG_FACILITY", 0);
178 if (!$defaultsyslogfacility) {
179 $defaultsyslogfacility =
'LOG_USER';
181 if (!$defaultsyslogfile) {
182 $defaultsyslogfile =
'dolibarr.log';
185 if (!empty($conf->global->MAIN_MODULE_MULTICOMPANY) && $user->entity) {
186 print
'<div class="error">'.$langs->trans(
"ContactSuperAdminForChange").
'</div>';
187 $optionmc =
'disabled';
195 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
196 print
'<input type="hidden" name="token" value="'.newToken().
'">';
197 print
'<input type="hidden" name="action" value="set">';
198 print
'<table class="noborder centpercent">';
199 print
'<tr class="liste_titre">';
200 print
'<td>'.$langs->trans(
"Type").
'</td><td>'.$langs->trans(
"Value").
'</td>';
201 print
'<td class="right" colspan="2"><input type="submit" class="button" '.$optionmc.
' value="'.$langs->trans(
"Modify").
'"></td>';
204 foreach ($syslogModules as $moduleName) {
205 $module =
new $moduleName;
207 $moduleactive = (int) $module->isActive();
209 if (($moduleactive == -1) &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') == 0) {
214 print
'<tr class="oddeven">';
215 print
'<td width="140">';
216 print
'<input class="oddeven" type="checkbox" name="SYSLOG_HANDLERS[]" value="'.$moduleName.
'" '.(in_array($moduleName, $activeModules) ?
'checked' :
'').($moduleactive <= 0 ?
'disabled' :
'').
'> ';
217 print $module->getName();
218 if ($moduleName ==
'mod_syslog_syslog') {
219 if (!$module->isActive()) {
220 $langs->load(
"errors");
221 print
$form->textwithpicto(
'', $langs->trans(
"ErrorPHPNeedModule",
'SysLog'));
226 print
'<td class="nowrap">';
227 $setuparray = $module->configure();
229 foreach ($setuparray as $option) {
230 $tmpoption = $option[
'constant'];
231 if (!empty($tmpoption)) {
234 } elseif (!empty($conf->global->$tmpoption)) {
235 $value = $conf->global->$tmpoption;
238 $value = (isset($option[
'default']) ? $option[
'default'] :
'');
241 print $option[
'name'].
': <input type="text" class="flat" name="'.$option[
'constant'].
'" value="'.$value.
'"'.(isset($option[
'attr']) ?
' '.$option[
'attr'] :
'').
'>';
242 if (!empty($option[
'example'])) {
243 print
'<br>'.$langs->trans(
"Example").
': '.$option[
'example'];
246 if ($option[
'constant'] ==
'SYSLOG_FILE' && preg_match(
'/^DOL_DATA_ROOT\/[^\/]*$/', $value)) {
247 $filelogparam =
' (<a href="'.DOL_URL_ROOT.
'/document.php?modulepart=logs&file='.basename($value).
'">';
248 $filelogparam .= $langs->trans(
'Download');
249 $filelogparam .=
' '.basename($value).
'</a>)';
256 print
'<td class="left">';
257 if ($module->getInfo()) {
258 print
$form->textwithpicto(
'', $module->getInfo(), 1,
'help');
260 if ($module->getWarning()) {
261 print
$form->textwithpicto(
'', $module->getWarning(), 1,
'warning');
275 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
276 print
'<input type="hidden" name="token" value="'.newToken().
'">';
277 print
'<input type="hidden" name="action" value="setlevel">';
278 print
'<table class="noborder centpercent">';
279 print
'<tr class="liste_titre">';
280 print
'<td>'.$langs->trans(
"Parameter").
'</td><td>'.$langs->trans(
"Value").
'</td>';
281 print
'<td class="right"><input type="submit" class="button" '.$optionmc.
' value="'.$langs->trans(
"Modify").
'"></td>';
284 print
'<tr class="oddeven"><td width="140">'.$langs->trans(
"SyslogLevel").
'</td>';
285 print
'<td colspan="2"><select class="flat" name="level" '.$optionmc.
'>';
286 print
'<option value="'.LOG_EMERG.
'" '.($conf->global->SYSLOG_LEVEL == LOG_EMERG ?
'SELECTED' :
'').
'>LOG_EMERG ('.LOG_EMERG.
')</option>';
287 print
'<option value="'.LOG_ALERT.
'" '.($conf->global->SYSLOG_LEVEL == LOG_ALERT ?
'SELECTED' :
'').
'>LOG_ALERT ('.LOG_ALERT.
')</option>';
288 print
'<option value="'.LOG_CRIT.
'" '.($conf->global->SYSLOG_LEVEL == LOG_CRIT ?
'SELECTED' :
'').
'>LOG_CRIT ('.LOG_CRIT.
')</option>';
289 print
'<option value="'.LOG_ERR.
'" '.($conf->global->SYSLOG_LEVEL == LOG_ERR ?
'SELECTED' :
'').
'>LOG_ERR ('.LOG_ERR.
')</option>';
290 print
'<option value="'.LOG_WARNING.
'" '.($conf->global->SYSLOG_LEVEL == LOG_WARNING ?
'SELECTED' :
'').
'>LOG_WARNING ('.LOG_WARNING.
')</option>';
291 print
'<option value="'.LOG_NOTICE.
'" '.($conf->global->SYSLOG_LEVEL == LOG_NOTICE ?
'SELECTED' :
'').
'>LOG_NOTICE ('.LOG_NOTICE.
')</option>';
292 print
'<option value="'.LOG_INFO.
'" '.($conf->global->SYSLOG_LEVEL == LOG_INFO ?
'SELECTED' :
'').
'>LOG_INFO ('.LOG_INFO.
')</option>';
293 print
'<option value="'.LOG_DEBUG.
'" '.($conf->global->SYSLOG_LEVEL >= LOG_DEBUG ?
'SELECTED' :
'').
'>LOG_DEBUG ('.LOG_DEBUG.
')</option>';
297 if (!empty($conf->loghandlers[
'mod_syslog_file']) &&
isModEnabled(
'cron')) {
298 print
'<tr class="oddeven"><td width="140">'.$langs->trans(
"SyslogFileNumberOfSaves").
'</td>';
299 print
'<td colspan="2"><input type="number" name="file_saves" placeholder="14" min="0" step="1" value="'.getDolGlobalString(
'SYSLOG_FILE_SAVES').
'" />';
300 print
' (<a href="'.dol_buildpath(
'/cron/list.php', 1).
'?search_label=CompressSyslogs&status=-1">'.$langs->trans(
'ConfigureCleaningCronjobToSetFrequencyOfSaves').
'</a>)</td></tr>';