dolibarr  17.0.4
const.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
27 // Load Dolibarr environment
28 require '../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/security.lib.php';
31 
32 // Load translation files required by the page
33 $langs->load("admin");
34 
35 $rowid = GETPOST('rowid', 'int');
36 $entity = GETPOST('entity', 'int');
37 $action = GETPOST('action', 'aZ09');
38 $debug = GETPOST('debug', 'int');
39 $consts = GETPOST('const', 'array');
40 $constname = GETPOST('constname', 'alphanohtml');
41 $constvalue = GETPOST('constvalue', 'restricthtml'); // We should be able to send everything here
42 $constnote = GETPOST('constnote', 'alpha');
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');
48 if (empty($page) || $page == -1 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha') || (empty($toselect) && $massaction === '0')) {
49  $page = 0;
50 } // If $page is not defined, or '' or -1 or if we click on clear filters or if we select empty mass action
51 $offset = $limit * $page;
52 $pageprev = $page - 1;
53 $pagenext = $page + 1;
54 if (empty($sortfield)) {
55  $sortfield = 'entity,name';
56 }
57 if (empty($sortorder)) {
58  $sortorder = 'ASC';
59 }
60 
61 if ($action == 'add' && GETPOST('update')) { // Click on button update must be used in priority before param $action
62  $action = 'update';
63 }
64 if ($action == 'add' && GETPOST('delete')) { // Click on button update must be used in priority before param $action
65  $action = 'delete';
66 }
67 /*if ($action == 'update' && GETPOST('add')) { // 'add' button is always clicked as it is the first in form.
68  $action = 'add';
69 }*/
70 if ($action == 'delete' && GETPOST('add')) { // Click on button add must be used in priority before param $action
71  $action = 'add';
72 }
73 
74 if (!$user->admin) {
76 }
77 
78 
79 /*
80  * Actions
81  */
82 
83 // Add a new record
84 if ($action == 'add') {
85  $error = 0;
86 
87  if (empty($constname)) {
88  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Name")), null, 'errors');
89  $error++;
90  }
91  if ($constvalue == '') {
92  setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Value")), null, 'errors');
93  $error++;
94  }
95 
96  if (!$error) {
97  if (dolibarr_set_const($db, $constname, $constvalue, 'chaine', 1, $constnote, $entity) >= 0) {
98  setEventMessages($langs->trans("RecordSaved"), null, 'mesgs');
99  $action = "";
100  $constname = "";
101  $constvalue = "";
102  $constnote = "";
103  } else {
104  dol_print_error($db);
105  }
106  }
107 }
108 
109 // Mass update
110 if (!empty($consts) && $action == 'update') {
111  $nbmodified = 0;
112  foreach ($consts as $const) {
113  if (!empty($const["check"])) {
114  if (dolibarr_set_const($db, $const["name"], $const["value"], $const["type"], 1, $const["note"], $const["entity"]) >= 0) {
115  $nbmodified++;
116  } else {
117  dol_print_error($db);
118  }
119  }
120  }
121  if ($nbmodified > 0) {
122  setEventMessages($langs->trans("RecordSaved"), null, 'mesgs');
123  }
124  $action = '';
125 }
126 
127 // Mass delete
128 if (!empty($consts) && $action == 'delete') {
129  $nbdeleted = 0;
130  foreach ($consts as $const) {
131  if (!empty($const["check"])) { // Is checkbox checked
132  if (dolibarr_del_const($db, $const["rowid"], -1) >= 0) {
133  $nbdeleted++;
134  } else {
135  dol_print_error($db);
136  }
137  }
138  }
139  if ($nbdeleted > 0) {
140  setEventMessages($langs->trans("RecordDeleted"), null, 'mesgs');
141  }
142  $action = '';
143 }
144 
145 // Delete line from delete picto
146 if ($action == 'delete') {
147  if (dolibarr_del_const($db, $rowid, $entity) >= 0) {
148  setEventMessages($langs->trans("RecordDeleted"), null, 'mesgs');
149  } else {
150  dol_print_error($db);
151  }
152 }
153 
154 
155 /*
156  * View
157  */
158 
159 $form = new Form($db);
160 
161 $wikihelp = 'EN:Setup_Other|FR:Paramétrage_Divers|ES:Configuración_Varios';
162 llxHeader('', $langs->trans("Setup"), $wikihelp);
163 
164 // Add logic to show/hide buttons
165 if ($conf->use_javascript_ajax) {
166  ?>
167 <script type="text/javascript">
168 jQuery(document).ready(function() {
169  jQuery("#updateconst").hide();
170  jQuery("#delconst").hide();
171  jQuery(".checkboxfordelete").click(function() {
172  jQuery("#delconst").show();
173  });
174  jQuery(".inputforupdate").keyup(function() { // keypress does not support back
175  var field_id = jQuery(this).attr("id");
176  var row_num = field_id.split("_");
177  jQuery("#updateconst").show();
178  jQuery("#action").val('update'); // so default action if we type enter will be update, but correct action is also detected correctly without that when clicking on "Update" button.
179  jQuery("#check_" + row_num[1]).prop("checked",true);
180  });
181 });
182 </script>
183  <?php
184 }
185 
186 print load_fiche_titre($langs->trans("OtherSetup"), '', 'title_setup');
187 
188 print '<span class="opacitymedium">'.$langs->trans("ConstDesc")."</span><br>\n";
189 print "<br>\n";
190 
191 $param = '';
192 
193 print '<form action="'.$_SERVER["PHP_SELF"].((empty($user->entity) && $debug) ? '?debug=1' : '').'" method="POST">';
194 print '<input type="hidden" name="token" value="'.newToken().'">';
195 print '<input type="hidden" id="action" name="action" value="add">';
196 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
197 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
198 
199 print '<div class="div-table-responsive-no-min">';
200 print '<table class="noborder centpercent">';
201 print '<tr class="liste_titre">';
202 print getTitleFieldOfList('Name', 0, $_SERVER['PHP_SELF'], 'name', '', $param, '', $sortfield, $sortorder, '') . "\n";
203 print getTitleFieldOfList("Value", 0, $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder);
204 print getTitleFieldOfList("Comment", 0, $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder);
205 print getTitleFieldOfList('DateModificationShort', 0, $_SERVER['PHP_SELF'], 'tms', '', $param, '', $sortfield, $sortorder, 'center ') . "\n";
206 if (isModEnabled('multicompany') && !$user->entity) {
207  print getTitleFieldOfList('Entity', 0, $_SERVER['PHP_SELF'], 'tms', '', $param, '', $sortfield, $sortorder, 'center ') . "\n";
208 }
209 print getTitleFieldOfList("", 0, $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder, 'center ');
210 print "</tr>\n";
211 
212 
213 // Line to add new record
214 print "\n";
215 
216 print '<tr class="oddeven nohover"><td>';
217 print '<input type="text" class="flat minwidth300" name="constname" value="'.$constname.'">';
218 print '</td>'."\n";
219 print '<td>';
220 print '<input type="text" class="flat minwidth100" name="constvalue" value="'.$constvalue.'">';
221 print '</td>';
222 print '<td>';
223 print '<input type="text" class="flat minwidth100" name="constnote" value="'.$constnote.'">';
224 print '</td>';
225 print '<td>';
226 print '</td>';
227 // Limit to superadmin
228 if (isModEnabled('multicompany') && !$user->entity) {
229  print '<td>';
230  print '<input type="text" class="flat" size="1" name="entity" value="' . $conf->entity . '">';
231  print '</td>';
232  print '<td class="center">';
233 } else {
234  print '<td class="center">';
235  print '<input type="hidden" name="entity" value="' . $conf->entity . '">';
236 }
237 print '<input type="submit" class="button button-add small" id="add" name="add" value="'.$langs->trans("Add").'">';
238 print "</td>\n";
239 print '</tr>';
240 
241 
242 // Show constants
243 $sql = "SELECT";
244 $sql .= " rowid";
245 $sql .= ", ".$db->decrypt('name')." as name";
246 $sql .= ", ".$db->decrypt('value')." as value";
247 $sql .= ", type";
248 $sql .= ", note";
249 $sql .= ", tms";
250 $sql .= ", entity";
251 $sql .= " FROM ".MAIN_DB_PREFIX."const";
252 $sql .= " WHERE entity IN (".$db->sanitize($user->entity.",".$conf->entity).")";
253 if ((empty($user->entity) || $user->admin) && $debug) {
254 } elseif (!GETPOST('visible') || GETPOST('visible') != 'all') {
255  // to force for superadmin to debug
256  $sql .= " AND visible = 1"; // We must always have this. Otherwise, array is too large and submitting data fails due to apache POST or GET limits
257 }
258 if (GETPOST('name')) {
259  $sql .= natural_search("name", GETPOST('name'));
260 }
261 $sql .= $db->order($sortfield, $sortorder);
262 
263 dol_syslog("Const::listConstant", LOG_DEBUG);
264 $result = $db->query($sql);
265 if ($result) {
266  $num = $db->num_rows($result);
267  $i = 0;
268 
269  while ($i < $num) {
270  $obj = $db->fetch_object($result);
271 
272  $value = dolDecrypt($obj->value);
273 
274  print "\n";
275 
276  print '<tr class="oddeven" data-checkbox-id="check_'.$i.'"><td>'.dol_escape_htmltag($obj->name).'</td>'."\n";
277 
278  // Value
279  print '<td>';
280  print '<input type="hidden" name="const['.$i.'][rowid]" value="'.$obj->rowid.'">';
281  print '<input type="hidden" name="const['.$i.'][name]" value="'.$obj->name.'">';
282  print '<input type="hidden" name="const['.$i.'][type]" value="'.$obj->type.'">';
283  print '<input type="text" id="value_'.$i.'" class="flat inputforupdate minwidth150" name="const['.$i.'][value]" value="'.htmlspecialchars($value).'">';
284  print '</td>';
285 
286  // Note
287  print '<td>';
288  print '<input type="text" id="note_'.$i.'" class="flat inputforupdate minwidth200" name="const['.$i.'][note]" value="'.htmlspecialchars($obj->note, 1).'">';
289  print '</td>';
290 
291  // Date last change
292  print '<td class="nowraponall center">';
293  print dol_print_date($db->jdate($obj->tms), 'dayhour');
294  print '</td>';
295 
296  // Entity limit to superadmin
297  if (isModEnabled('multicompany') && !$user->entity) {
298  print '<td>';
299  print '<input type="text" class="flat" size="1" name="const['.$i.'][entity]" value="'.((int) $obj->entity).'">';
300  print '</td>';
301  print '<td class="center">';
302  } else {
303  print '<td class="center">';
304  print '<input type="hidden" name="const['.$i.'][entity]" value="'.((int) $obj->entity).'">';
305  }
306 
307  if ($conf->use_javascript_ajax) {
308  print '<input type="checkbox" class="flat checkboxfordelete" id="check_'.$i.'" name="const['.$i.'][check]" value="1">';
309  } else {
310  print '<a href="'.$_SERVER['PHP_SELF'].'?rowid='.$obj->rowid.'&entity='.$obj->entity.'&action=delete&token='.newToken().((empty($user->entity) && $debug) ? '&debug=1' : '').'">'.img_delete().'</a>';
311  }
312 
313  print "</td></tr>\n";
314 
315  print "\n";
316  $i++;
317  }
318 }
319 
320 
321 print '</table>';
322 print '</div>';
323 
324 if ($conf->use_javascript_ajax) {
325  print '<br>';
326  print '<div id="updateconst" class="right">';
327  print '<input type="submit" class="button button-edit marginbottomonly" name="update" value="'.$langs->trans("Modify").'">';
328  print '</div>';
329  print '<div id="delconst" class="right">';
330  print '<input type="submit" class="button button-cancel marginbottomonly" name="delete" value="'.$langs->trans("Delete").'">';
331  print '</div>';
332 }
333 
334 print "</form>\n";
335 
336 // End of page
337 llxFooter();
338 $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).
Definition: admin.lib.php:632
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
Definition: admin.lib.php:556
if(GETPOSTISSET('MAIN_AGENDA_XCAL_EXPORTKEY')) if(GETPOSTISSET('MAIN_AGENDA_EXPORT_PAST_DELAY')) if(GETPOSTISSET('MAIN_AGENDA_EXPORT_CACHE')) if(GETPOSTISSET('AGENDA_EXPORT_FIX_TZ')) if($actionsave) if(!isset($conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)) $wikihelp
View.
Definition: agenda_xcal.php:90
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:119
dolDecrypt($chain, $key='')
Decode a string with a symetric encryption.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.