dolibarr  13.0.2
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  *
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 require '../../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.'/blockedlog/lib/blockedlog.lib.php';
27 require_once DOL_DOCUMENT_ROOT.'/blockedlog/class/blockedlog.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
29 
30 // Load translation files required by the page
31 $langs->loadLangs(array("admin", "other", "blockedlog"));
32 
33 if (!$user->admin || empty($conf->blockedlog->enabled)) accessforbidden();
34 
35 $action = GETPOST('action', 'aZ09');
36 $backtopage = GETPOST('backtopage', 'alpha');
37 
38 $withtab = GETPOST('withtab', 'int');
39 
40 
41 /*
42  * Actions
43  */
44 
45 $reg = array();
46 if (preg_match('/set_(.*)/', $action, $reg))
47 {
48  $code = $reg[1];
49  $values = GETPOST($code);
50  if (is_array($values)) $values = implode(',', $values);
51 
52  if (dolibarr_set_const($db, $code, $values, 'chaine', 0, '', $conf->entity) > 0)
53  {
54  header("Location: ".$_SERVER["PHP_SELF"].($withtab ? '?withtab='.$withtab : ''));
55  exit;
56  } else {
57  dol_print_error($db);
58  }
59 }
60 
61 if (preg_match('/del_(.*)/', $action, $reg))
62 {
63  $code = $reg[1];
64  if (dolibarr_del_const($db, $code, 0) > 0)
65  {
66  Header("Location: ".$_SERVER["PHP_SELF"].($withtab ? '?withtab='.$withtab : ''));
67  exit;
68  } else {
69  dol_print_error($db);
70  }
71 }
72 
73 
74 /*
75  * View
76  */
77 
78 $form = new Form($db);
79 $block_static = new BlockedLog($db);
80 
81 llxHeader('', $langs->trans("BlockedLogSetup"));
82 
83 $linkback = '';
84 if ($withtab) {
85  $linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php').'">'.$langs->trans("BackToModuleList").'</a>';
86 }
87 
88 print load_fiche_titre($langs->trans("ModuleSetup").' '.$langs->trans('BlockedLog'), $linkback);
89 
90 if ($withtab) {
92  print dol_get_fiche_head($head, 'blockedlog', '', -1);
93 }
94 
95 
96 print '<span class="opacitymedium">'.$langs->trans("BlockedLogDesc")."</span><br>\n";
97 
98 print '<br>';
99 
100 print '<table class="noborder centpercent">';
101 print '<tr class="liste_titre">';
102 print '<td>'.$langs->trans("Key").'</td>';
103 print '<td>'.$langs->trans("Value").'</td>';
104 print "</tr>\n";
105 
106 print '<tr class="oddeven">';
107 print '<td class="titlefield">';
108 print $langs->trans("CompanyInitialKey").'</td><td>';
109 print $block_static->getSignature();
110 print '</td></tr>';
111 
112 if (!empty($conf->global->BLOCKEDLOG_USE_REMOTE_AUTHORITY)) {
113  // Example with a yes / no select
114  print '<tr class="oddeven">';
115  print '<td>'.$langs->trans("BlockedLogAuthorityUrl").img_info($langs->trans('BlockedLogAuthorityNeededToStoreYouFingerprintsInNonAlterableRemote')).'</td>';
116  print '<td class="right" width="300">';
117 
118  print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
119  print '<input type="hidden" name="token" value="'.newToken().'">';
120  print '<input type="hidden" name="action" value="set_BLOCKEDLOG_AUTHORITY_URL">';
121  print '<input type="hidden" name="withtab" value="'.$withtab.'">';
122  print '<input type="text" name="BLOCKEDLOG_AUTHORITY_URL" value="'.$conf->global->BLOCKEDLOG_AUTHORITY_URL.'" size="40" />';
123  print '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
124  print '</form>';
125 
126  print '</td></tr>';
127 }
128 
129 print '<tr class="oddeven">';
130 print '<td>'.$langs->trans("BlockedLogDisableNotAllowedForCountry").'</td>';
131 print '<td>';
132 
133 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
134 print '<input type="hidden" name="token" value="'.newToken().'">';
135 print '<input type="hidden" name="action" value="set_BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY">';
136 print '<input type="hidden" name="withtab" value="'.$withtab.'">';
137 
138 $sql = "SELECT rowid, code as code_iso, code_iso as code_iso3, label, favorite";
139 $sql .= " FROM ".MAIN_DB_PREFIX."c_country";
140 $sql .= " WHERE active > 0";
141 
142 $countryArray = array();
143 $resql = $db->query($sql);
144 if ($resql)
145 {
146  while ($obj = $db->fetch_object($resql))
147  {
148  $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 : ''));
149  }
150 }
151 
152 $seledted = empty($conf->global->BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY) ? array() : explode(',', $conf->global->BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY);
153 
154 print $form->multiselectarray('BLOCKEDLOG_DISABLE_NOT_ALLOWED_FOR_COUNTRY', $countryArray, $seledted);
155 print '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
156 print '</form>';
157 
158 print '</td>';
159 
160 
161 print '<tr class="oddeven">';
162 print '<td class="titlefield">';
163 print $langs->trans("ListOfTrackedEvents").'</td><td>';
164 $arrayoftrackedevents = $block_static->trackedevents;
165 foreach ($arrayoftrackedevents as $key => $val)
166 {
167  print $key.' - '.$langs->trans($val).'<br>';
168 }
169 
170 print '</td></tr>';
171 
172 print '</tr>';
173 
174 print '</table>';
175 
176 if ($withtab)
177 {
179 }
180 
181 print '<br><br>';
182 
183 // End of page
184 llxFooter();
185 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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).
Definition: admin.lib.php:575
blockedlogadmin_prepare_head()
Define head array for tabs of blockedlog tools setup pages.
llxHeader()
Empty header.
Definition: wrapper.php:45
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.
dolibarr_del_const($db, $name, $entity=1)
Effacement d&#39;une constante dans la base de donnees.
Definition: admin.lib.php:499
Class to manage Blocked Log.
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
print $_SERVER["PHP_SELF"]
Edit parameters.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
Definition: index.php:1232
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
llxFooter()
Empty footer.
Definition: wrapper.php:59