dolibarr 19.0.3
events.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Load Dolibarr environment
26require '../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
28require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/core/class/events.class.php';
30
31
32if (!$user->admin) {
34}
35
36// Load translation files required by the page
37$langs->loadLangs(array("users", "admin", "other"));
38
39$action = GETPOST('action', 'aZ09');
40$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'auditeventslist'; // To manage different context of search
41$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
42
43// Load variable for pagination
44$limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
45$sortfield = GETPOST('sortfield', 'aZ09comma');
46$sortorder = GETPOST('sortorder', 'aZ09comma');
47$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
48if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
49 $page = 0;
50} // If $page is not defined, or '' or -1 or if we click on clear filters
51$offset = $limit * $page;
52$pageprev = $page - 1;
53$pagenext = $page + 1;
54
55$securityevent = new Events($db);
56$eventstolog = $securityevent->eventstolog;
57
58
59/*
60 * Actions
61 */
62
63if ($action == "save") {
64 $i = 0;
65
66 $db->begin();
67
68 foreach ($eventstolog as $key => $arr) {
69 $param = 'MAIN_LOGEVENTS_'.$arr['id'];
70 if (GETPOST($param, 'alphanohtml')) {
71 dolibarr_set_const($db, $param, GETPOST($param, 'alphanohtml'), 'chaine', 0, '', $conf->entity);
72 } else {
73 dolibarr_del_const($db, $param, $conf->entity);
74 }
75 }
76
77 $db->commit();
78 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
79}
80
81
82
83/*
84 * View
85 */
86
87$form = new Form($db);
88
89$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
90$selectedfields = '';
91$selectedfields .= $form->showCheckAddButtons('checkforselect', 1);
92
93$wikihelp = 'EN:Setup_Security|FR:Paramétrage_Sécurité|ES:Configuración_Seguridad';
94llxHeader('', $langs->trans("Audit"), $wikihelp);
95
96//$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
97print load_fiche_titre($langs->trans("SecuritySetup"), '', 'title_setup');
98
99print '<span class="opacitymedium">'.$langs->trans("LogEventDesc", $langs->transnoentitiesnoconv("AdminTools"), $langs->transnoentitiesnoconv("Audit"))."</span><br>\n";
100print "<br>\n";
101
102
103print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
104print '<input type="hidden" name="token" value="'.newToken().'">';
105print '<input type="hidden" name="action" value="save">';
106
107$head = security_prepare_head();
108
109print dol_get_fiche_head($head, 'audit', '', -1);
110
111print '<br>';
112
113print '<table class="noborder centpercent">';
114print '<tr class="liste_titre">';
115print getTitleFieldOfList("TrackableSecurityEvents", 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, '')."\n";
116print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
117print '</tr>'."\n";
118// Loop on each event type
119foreach ($eventstolog as $key => $arr) {
120 if ($arr['id']) {
121 print '<tr class="oddeven">';
122 print '<td>'.$arr['id'].'</td>';
123 print '<td class="center">';
124 $key = 'MAIN_LOGEVENTS_'.$arr['id'];
125 $value = getDolGlobalString($key);
126 print '<input class="oddeven checkforselect" type="checkbox" name="'.$key.'" value="1"'.($value ? ' checked' : '').'>';
127 print '</td></tr>'."\n";
128 }
129}
130print '</table>';
131
132print '<div class="center">';
133print '<input type="submit" name="save" class="button button-save" value="'.$langs->trans("Save").'">';
134print '</div>';
135
136print dol_get_fiche_end();
137
138print "</form>\n";
139
140
141$s = $langs->trans("SeeReportPage", '{s1}'.$langs->transnoentities("Home").' - '.$langs->transnoentities("AdminTools").' - '.$langs->transnoentities("Audit").'{s2}');
142print str_replace('{s2}', '</a>', str_replace('{s1}', '<a href="'.DOL_URL_ROOT.'/admin/tools/listevents.php" target="_blank">', $s));
143
144
145
146// End of page
147llxFooter();
148$db->close();
security_prepare_head()
Prepare array with list of tabs.
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Events class.
Class to manage generation of HTML components Only common components must be here.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.