dolibarr 21.0.0-beta
blockedlog.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 ATM Consulting <contact@atm-consulting.fr>
3 * Copyright (C) 2017-2018 Laurent Destailleur <eldy@destailleur.fr>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
27// Load Dolibarr environment
28require '../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/blockedlog/lib/blockedlog.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/blockedlog/class/blockedlog.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
32
41// Load translation files required by the page
42$langs->loadLangs(array('admin', 'blockedlog', 'other'));
43
44// Access Control
45if (!$user->admin || empty($conf->blockedlog->enabled)) {
47}
48
49// Get Parameters
50$action = GETPOST('action', 'aZ09');
51$backtopage = GETPOST('backtopage', 'alpha');
52$withtab = GETPOSTINT('withtab');
53
54
55/*
56 * Actions
57 */
58
59$reg = array();
60if (preg_match('/set_(.*)/', $action, $reg)) {
61 $code = $reg[1];
62 $values = GETPOST($code);
63 if (is_array($values)) {
64 $values = implode(',', $values);
65 }
66
67 if (dolibarr_set_const($db, $code, $values, 'chaine', 0, '', $conf->entity) > 0) {
68 header("Location: ".$_SERVER["PHP_SELF"].($withtab ? '?withtab='.$withtab : ''));
69 exit;
70 } else {
71 dol_print_error($db);
72 }
73}
74
75if (preg_match('/del_(.*)/', $action, $reg)) {
76 $code = $reg[1];
77 if (dolibarr_del_const($db, $code, 0) > 0) {
78 header("Location: ".$_SERVER["PHP_SELF"].($withtab ? '?withtab='.$withtab : ''));
79 exit;
80 } else {
81 dol_print_error($db);
82 }
83}
84
85
86/*
87 * View
88 */
89
90$form = new Form($db);
91$block_static = new BlockedLog($db);
92$block_static->loadTrackedEvents();
93
94$title = $langs->trans("BlockedLogSetup");
95$help_url="EN:Module_Unalterable_Archives_-_Logs|FR:Module_Archives_-_Logs_Inaltérable";
96
97llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-blockedlog page-admin_blockedlog');
98
99$linkback = '';
100if ($withtab) {
101 $linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php').'">'.$langs->trans("BackToModuleList").'</a>';
102}
103
104print load_fiche_titre($langs->trans("ModuleSetup").' '.$langs->trans('BlockedLog'), $linkback);
105
106if ($withtab) {
108 print dol_get_fiche_head($head, 'blockedlog', '', -1);
109}
110
111
112print '<span class="opacitymedium">'.$langs->trans("BlockedLogDesc")."</span><br>\n";
113
114print '<br>';
115
116print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
117print '<table class="noborder centpercent">';
118print '<tr class="liste_titre">';
119print '<td>'.$langs->trans("Key").'</td>';
120print '<td>'.$langs->trans("Value").'</td>';
121print "</tr>\n";
122
123print '<tr class="oddeven">';
124print '<td class="titlefield">';
125print $langs->trans("CompanyInitialKey").'</td><td>';
126print $block_static->getSignature();
127print '</td></tr>';
128
129if (getDolGlobalString('BLOCKEDLOG_USE_REMOTE_AUTHORITY')) {
130 // Example with a yes / no select
131 print '<tr class="oddeven">';
132 print '<td>'.$langs->trans("BlockedLogAuthorityUrl").img_info($langs->trans('BlockedLogAuthorityNeededToStoreYouFingerprintsInNonAlterableRemote')).'</td>';
133 print '<td class="right" width="300">';
134
135 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
136 print '<input type="hidden" name="token" value="'.newToken().'">';
137 print '<input type="hidden" name="action" value="set_BLOCKEDLOG_AUTHORITY_URL">';
138 print '<input type="hidden" name="withtab" value="'.$withtab.'">';
139 print '<input type="text" name="BLOCKEDLOG_AUTHORITY_URL" value="' . getDolGlobalString('BLOCKEDLOG_AUTHORITY_URL').'" size="40" />';
140 print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
141 print '</form>';
142
143 print '</td></tr>';
144}
145
146print '<tr class="oddeven">';
147print '<td>'.$langs->trans("BlockedLogDisableNotAllowedForCountry").'</td>';
148print '<td>';
149
150print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
151print '<input type="hidden" name="token" value="'.newToken().'">';
152print '<input type="hidden" name="action" value="set_BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY">';
153print '<input type="hidden" name="withtab" value="'.$withtab.'">';
154
155$sql = "SELECT rowid, code as code_iso, code_iso as code_iso3, label, favorite";
156$sql .= " FROM ".MAIN_DB_PREFIX."c_country";
157$sql .= " WHERE active > 0";
158
159$countryArray = array();
160$resql = $db->query($sql);
161if ($resql) {
162 while ($obj = $db->fetch_object($resql)) {
163 $countryArray[$obj->code_iso] = ($obj->code_iso && $langs->transnoentitiesnoconv("Country".$obj->code_iso) != "Country".$obj->code_iso ? $langs->transnoentitiesnoconv("Country".$obj->code_iso) : ($obj->label != '-' ? $obj->label : ''));
164 }
165}
166
167$selected = !getDolGlobalString('BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY') ? array() : explode(',', getDolGlobalString('BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY'));
168
169print $form->multiselectarray('BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY', $countryArray, $selected);
170print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
171print '</form>';
172
173print '</td>';
174
175
176print '<tr class="oddeven">';
177print '<td class="titlefield">';
178print $langs->trans("ListOfTrackedEvents").'</td><td>';
179$arrayoftrackedevents = $block_static->trackedevents;
180foreach ($arrayoftrackedevents as $key => $val) {
181 print $key.' - '.$langs->trans($val).'<br>';
182}
183
184print '</td></tr>';
185
186print '</tr>';
187
188print '</table>';
189print '</div>';
190
191if ($withtab) {
192 print dol_get_fiche_end();
193}
194
195print '<br><br>';
196
197// End of page
198llxFooter();
199$db->close();
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($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
blockedlogadmin_prepare_head()
Define head array for tabs of blockedlog tools setup pages.
Class to manage Blocked Log.
Class to manage generation of HTML components Only common components must be here.
llxFooter()
Footer empty.
Definition document.php:107
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.