dolibarr 21.0.0-alpha
conf.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2003 Xavier Dutoit <doli@sydesy.com>
4 * Copyright (C) 2004-2020 Laurent Destailleur <eldy@users.sourceforge.net>
5 * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2006 Jean Heimburger <jean@tiaris.info>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22
33class Conf extends stdClass
34{
38 public $file;
39
43 public $db;
44
48 public $global;
49
53 public $browser;
54
56 public $mycompany;
57 public $admin;
58 public $medias;
61
64 public $delivery_note;
65
66
72 public $currency;
73
77 public $theme; // Contains current theme ("eldy", "auguria", ...)
79
82 public $css; // Contains full path of css page ("/theme/eldy/style.css.php", ...)
83
84 public $email_from;
85
88
92 public $modules;
96 public $modules_parts;
97
101 public $cache;
102
106 public $headerdone;
107
111 public $logbuffer = array();
112
116 public $loghandlers = array();
117
121 public $entity = 1;
125 public $entities = array();
126
127 public $dol_hide_topmenu; // Set if we force param dol_hide_topmenu into login url
128 public $dol_hide_leftmenu; // Set if we force param dol_hide_leftmenu into login url
129 public $dol_optimize_smallscreen; // Set if we force param dol_optimize_smallscreen into login url or if browser is smartphone
130 public $dol_no_mouse_hover; // Set if we force param dol_no_mouse_hover into login url or if browser is smartphone
131 public $dol_use_jmobile; // Set if we force param dol_use_jmobile into login url. 0=default, 1=to say we use app from a webview app, 2=to say we use app from a webview app and keep ajax
132
133 public $format_date_short; // Format of day with PHP/C tags (strftime functions)
134 public $format_date_short_java; // Format of day with Java tags
135 public $format_hour_short;
136 public $format_hour_short_duration;
137 public $format_date_text_short;
138 public $format_date_text;
139 public $format_date_hour_short;
140 public $format_date_hour_sec_short;
141 public $format_date_hour_text_short;
142 public $format_date_hour_text;
143
144 public $liste_limit;
145 public $main_checkbox_left_column;
146
147 public $tzuserinputkey = 'tzserver'; // Use 'tzuserrel' to always store date in GMT and show date in time zone of user.
148
149
150 // TODO Remove this part.
151
155 public $fournisseur;
156
160 public $product;
161
165 public $produit;
166 public $service;
170 public $contrat;
171 public $contract;
172 public $actions;
173 public $agenda;
174 public $propal;
178 public $commande;
179 public $order;
183 public $facture;
184 public $invoice;
185 public $user;
189 public $adherent;
190 public $member;
191 public $bank;
192 public $notification;
193 public $expensereport;
194 public $productbatch;
198 public $projet;
199 public $project;
200 public $supplier_proposal;
201 public $supplier_order;
202 public $supplier_invoice;
203 public $category;
204
205
209 public function __construct()
210 {
211 // Properly declare multi-modules objects.
212 $this->file = new stdClass();
213 $this->db = new stdClass();
215 $this->file->character_set_client = 'UTF-8'; // UTF-8, ISO-8859-1
216
217 // Common objects that are not modules
218 $this->mycompany = new stdClass();
219 $this->admin = new stdClass();
220 $this->medias = new stdClass();
221 $this->global = new stdClass();
222
223 // Common objects that are not modules and set by the main and not into the this->setValues()
224 $this->browser = new stdClass();
225
226 // Common arrays
227 $this->cache = array();
228 $this->modules = array();
229 $this->modules_parts = array(
230 'css' => array(),
231 'js' => array(),
232 'tabs' => array(),
233 'triggers' => array(),
234 'login' => array(),
235 'substitutions' => array(),
236 'menus' => array(),
237 'theme' => array(),
238 'sms' => array(),
239 'tpl' => array(),
240 'barcode' => array(),
241 'models' => array(),
242 'societe' => array(),
243 'member' => array(),
244 'hooks' => array(),
245 'dir' => array(),
246 'syslog' => array(),
247 'websitetemplates' => array()
248 );
249
250 // First level object that are modules.
251 // TODO Remove this part.
252 $this->multicompany = new stdClass();
253 $this->fournisseur = new stdClass();
254 $this->product = new stdClass();
255 $this->service = new stdClass();
256 $this->contrat = new stdClass();
257 $this->actions = new stdClass();
258 $this->agenda = new stdClass();
259 $this->commande = new stdClass();
260 $this->propal = new stdClass();
261 $this->facture = new stdClass();
262 $this->user = new stdClass();
263 $this->adherent = new stdClass();
264 $this->bank = new stdClass();
265 $this->notification = new stdClass();
266 $this->expensereport = new stdClass();
267 $this->productbatch = new stdClass();
268 }
269
270
279 public function setEntityValues($db, $entity)
280 {
281 if ($this->entity != $entity) {
282 // If we ask to reload setup for a new entity
283 $this->entity = $entity;
284 return $this->setValues($db);
285 }
286
287 return 0;
288 }
289
297 public function setValues($db)
298 {
299 dol_syslog(get_class($this)."::setValues");
300
301 // Unset all old modules values
302 if (!empty($this->modules)) {
303 foreach ($this->modules as $m) {
304 if (isset($this->$m)) {
305 unset($this->$m);
306 }
307 }
308 }
309
310 // Common objects that are not modules
311 $this->mycompany = new stdClass();
312 $this->admin = new stdClass();
313 $this->medias = new stdClass();
314 $this->global = new stdClass();
315
316 // Common objects that are not modules and set by the main and not into the this->setValues()
317 //$this->browser = new stdClass(); // This is set by main and not into this setValues(), so we keep it intact.
318
319 // First level object
320 // TODO Remove this part.
321 $this->fournisseur = new stdClass();
322 $this->compta = new stdClass();
323 $this->product = new stdClass();
324 $this->service = new stdClass();
325 $this->contrat = new stdClass();
326 $this->actions = new stdClass();
327 $this->agenda = new stdClass();
328 $this->commande = new stdClass();
329 $this->propal = new stdClass();
330 $this->facture = new stdClass();
331 $this->user = new stdClass();
332 $this->adherent = new stdClass();
333 $this->bank = new stdClass();
334 $this->notification = new stdClass();
335 $this->expensereport = new stdClass();
336 $this->productbatch = new stdClass();
337
338 // Common arrays
339 $this->cache = array();
340 $this->modules = array();
341 $this->modules_parts = array(
342 'css' => array(),
343 'js' => array(),
344 'tabs' => array(),
345 'triggers' => array(),
346 'login' => array(),
347 'substitutions' => array(),
348 'menus' => array(),
349 'theme' => array(),
350 'sms' => array(),
351 'tpl' => array(),
352 'barcode' => array(),
353 'models' => array(),
354 'societe' => array(),
355 'member' => array(),
356 'hooks' => array(),
357 'dir' => array(),
358 'syslog' => array(),
359 'websitetemplates' => array(),
360 );
361
362 if (!is_null($db) && is_object($db)) {
363 include_once DOL_DOCUMENT_ROOT.'/core/lib/security.lib.php';
364
365 // Define all global constants into $this->global->key=value
366 $sql = "SELECT ".$db->decrypt('name')." as name,";
367 $sql .= " ".$db->decrypt('value')." as value, entity";
368 $sql .= " FROM ".$db->prefix()."const";
369 $sql .= " WHERE entity IN (0,".$this->entity.")";
370 $sql .= " ORDER BY entity"; // This is to have entity 0 first, then entity 1 that overwrite.
371
372 $resql = $db->query($sql);
373 if ($resql) {
374 $i = 0;
375 $numr = $db->num_rows($resql);
376 while ($i < $numr) {
377 $objp = $db->fetch_object($resql);
378 $key = $objp->name;
379 $value = $objp->value;
380 if ($key) {
381 // Allow constants values to be overridden by environment variables
382 if (isset($_SERVER['DOLIBARR_'.$key])) {
383 $value = $_SERVER['DOLIBARR_'.$key];
384 } elseif (isset($_ENV['DOLIBARR_'.$key])) {
385 $value = $_ENV['DOLIBARR_'.$key];
386 }
387
388 $this->global->$key = dolDecrypt($value); // decrypt data excrypted with dolibarr_set_const($db, $name, $value)
389
390 if ($value && strpos($key, 'MAIN_MODULE_') === 0) {
391 $reg = array();
392 // If this is constant for a new tab page activated by a module. It initializes modules_parts['tabs'].
393 if (preg_match('/^MAIN_MODULE_([0-9A-Z_]+)_TABS_/i', $key)) {
394 $partname = 'tabs';
395 $params = explode(':', $value, 2);
396 if (!is_array($this->modules_parts[$partname])) {
397 $this->modules_parts[$partname] = array();
398 }
399 $this->modules_parts[$partname][$params[0]][] = $value; // $value may be a string or an array
400 } elseif (preg_match('/^MAIN_MODULE_([0-9A-Z_]+)_([A-Z]+)$/i', $key, $reg)) {
401 // If this is a constant for all generic part activated by a module. It initializes
402 // modules_parts['login'], modules_parts['menus'], modules_parts['substitutions'], modules_parts['triggers'], modules_parts['tpl'],
403 // modules_parts['models'], modules_parts['theme']
404 // modules_parts['sms'],
405 // modules_parts['css'], modules_parts['js'],...
406
407 $modulename = strtolower($reg[1]);
408 $partname = strtolower($reg[2]);
409 if (!isset($this->modules_parts[$partname]) || !is_array($this->modules_parts[$partname])) {
410 $this->modules_parts[$partname] = array();
411 }
412
413 //$arrValue = json_decode($value, true, null, JSON_BIGINT_AS_STRING|JSON_THROW_ON_ERROR);
414 $arrValue = json_decode($value, true);
415 //var_dump($key); var_dump($value); var_dump($arrValue);
416
417 if (is_array($arrValue)) {
418 $newvalue = $arrValue;
419 } elseif (in_array($partname, array('login', 'menus', 'substitutions', 'triggers', 'tpl'))) {
420 $newvalue = '/'.$modulename.'/core/'.$partname.'/';
421 } elseif (in_array($partname, array('models', 'theme', 'websitetemplates'))) {
422 $newvalue = '/'.$modulename.'/';
423 } elseif ($value == 1) {
424 $newvalue = '/'.$modulename.'/core/modules/'.$partname.'/'; // ex: partname = societe
425 } else { // $partname can be any other value like 'sms', ...
426 $newvalue = $value;
427 }
428
429 if (!empty($newvalue)) {
430 $this->modules_parts[$partname] = array_merge($this->modules_parts[$partname], array($modulename => $newvalue)); // $value may be a string or an array
431 }
432 } elseif (preg_match('/^MAIN_MODULE_([0-9A-Z_]+)$/i', $key, $reg)) {
433 // If this is a module constant (must be at end)
434 $modulename = strtolower($reg[1]);
435 if ($modulename == 'propale') {
436 $modulename = 'propal';
437 }
438 if ($modulename == 'supplierproposal') {
439 $modulename = 'supplier_proposal';
440 }
441 $this->modules[$modulename] = $modulename; // Add this module in list of enabled modules
442
443 // deprecated in php 8.2
444 //if (version_compare(phpversion(), '8.2') < 0) {
445 if (!isset($this->$modulename) || !is_object($this->$modulename)) {
446 $this->$modulename = new stdClass(); // We need this to use the ->enabled and the ->multidir, ->dir...
447 }
448 $this->$modulename->enabled = true; // TODO Remove this
449
450 // Duplicate entry with the new name
451 /*
452 $mapping = $this->deprecatedProperties();
453 if (array_key_exists($modulename, $mapping)) {
454 $newmodulename = $mapping[$modulename];
455 $this->modules[$newmodulename] = $newmodulename;
456
457 if (!isset($this->$newmodulename) || !is_object($this->$newmodulename)) {
458 $this->$newmodulename = new stdClass(); // We need this to use the ->enabled and the ->multidir, ->dir...
459 }
460 $this->$newmodulename->enabled = true; // TODO Remove this
461 }
462 */
463 }
464 }
465 }
466 $i++;
467 }
468
469 $db->free($resql);
470 }
471
472 // Include other local file xxx/zzz_consts.php to overwrite some variables
473 if (!empty($this->global->LOCAL_CONSTS_FILES)) {
474 $filesList = explode(":", $this->global->LOCAL_CONSTS_FILES);
475 foreach ($filesList as $file) {
476 $file = dol_sanitizeFileName($file);
477 dol_include_once($file."/".$file."_consts.php"); // This file can run code like setting $this->global->XXX vars.
478 }
479 }
480
481 //var_dump($this->modules);
482 //var_dump($this->modules_parts['theme']);
483
484 // If you can't set timezone of your PHP, set this constant. Better is to set it to UTC.
485 // In future, this constant will be forced to 'UTC' so PHP server timezone will not have effect anymore.
486 //$this->global->MAIN_SERVER_TZ='Europe/Paris';
487 if (!empty($this->global->MAIN_SERVER_TZ) && $this->global->MAIN_SERVER_TZ != 'auto') {
488 try {
489 date_default_timezone_set($this->global->MAIN_SERVER_TZ);
490 } catch (Exception $e) {
491 dol_syslog("Error: Bad value for parameter MAIN_SERVER_TZ=".$this->global->MAIN_SERVER_TZ, LOG_ERR);
492 }
493 }
494
495 // Object $mc
496 if (!defined('NOREQUIREMC') && isModEnabled('multicompany')) {
497 global $mc;
498 $ret = @dol_include_once('/multicompany/class/actions_multicompany.class.php');
499 if ($ret && class_exists('ActionsMulticompany')) {
500 $mc = new ActionsMulticompany($db);
501 }
502 }
503
504 // Clean some variables
505 if (empty($this->global->MAIN_MENU_STANDARD)) {
506 $this->global->MAIN_MENU_STANDARD = "eldy_menu.php";
507 }
508 if (empty($this->global->MAIN_MENUFRONT_STANDARD)) {
509 $this->global->MAIN_MENUFRONT_STANDARD = "eldy_menu.php";
510 }
511 if (empty($this->global->MAIN_MENU_SMARTPHONE)) {
512 $this->global->MAIN_MENU_SMARTPHONE = "eldy_menu.php"; // Use eldy by default because smartphone does not work on all phones
513 }
514 if (empty($this->global->MAIN_MENUFRONT_SMARTPHONE)) {
515 $this->global->MAIN_MENUFRONT_SMARTPHONE = "eldy_menu.php"; // Use eldy by default because smartphone does not work on all phones
516 }
517 if (!isset($this->global->FACTURE_TVAOPTION)) {
518 $this->global->FACTURE_TVAOPTION = 1;
519 }
520
521 // Variable globales LDAP
522 if (empty($this->global->LDAP_FIELD_FULLNAME)) {
523 $this->global->LDAP_FIELD_FULLNAME = '';
524 }
525 if (!isset($this->global->LDAP_KEY_USERS)) {
526 $this->global->LDAP_KEY_USERS = $this->global->LDAP_FIELD_FULLNAME;
527 }
528 if (!isset($this->global->LDAP_KEY_GROUPS)) {
529 $this->global->LDAP_KEY_GROUPS = $this->global->LDAP_FIELD_FULLNAME;
530 }
531 if (!isset($this->global->LDAP_KEY_CONTACTS)) {
532 $this->global->LDAP_KEY_CONTACTS = $this->global->LDAP_FIELD_FULLNAME;
533 }
534 if (!isset($this->global->LDAP_KEY_MEMBERS)) {
535 $this->global->LDAP_KEY_MEMBERS = $this->global->LDAP_FIELD_FULLNAME;
536 }
537 if (!isset($this->global->LDAP_KEY_MEMBERS_TYPES)) {
538 $this->global->LDAP_KEY_MEMBERS_TYPES = $this->global->LDAP_FIELD_FULLNAME;
539 }
540
541 // Load translation object with current language
542 if (empty($this->global->MAIN_LANG_DEFAULT)) {
543 $this->global->MAIN_LANG_DEFAULT = "en_US";
544 }
545
546 $rootfordata = DOL_DATA_ROOT;
547 $rootforuser = DOL_DATA_ROOT;
548 // If multicompany module is enabled, we redefine the root of data
549 if (isModEnabled('multicompany') && !empty($this->entity) && $this->entity > 1) {
550 $rootfordata .= '/'.$this->entity;
551 }
552 // Set standard temporary folder name or global override
553 $rootfortemp = empty($this->global->MAIN_TEMP_DIR) ? $rootfordata : $this->global->MAIN_TEMP_DIR;
554
555 // Define default dir_output and dir_temp for directories of modules
556 foreach ($this->modules as $module) {
557 //var_dump($module);
558 // For multicompany sharings
559 $this->$module->multidir_output = array($this->entity => $rootfordata."/".$module);
560 $this->$module->multidir_temp = array($this->entity => $rootfortemp."/".$module."/temp");
561 // For backward compatibility
562 $this->$module->dir_output = $rootfordata."/".$module;
563 $this->$module->dir_temp = $rootfortemp."/".$module."/temp";
564 }
565
566 // External modules storage
567 if (!empty($this->modules_parts['dir'])) {
568 foreach ($this->modules_parts['dir'] as $module => $dirs) {
569 if (!empty($this->$module->enabled)) {
570 foreach ($dirs as $type => $name) { // $type is 'output' or 'temp'
571 $multidirname = 'multidir_'.$type;
572 $dirname = 'dir_'.$type;
573
574 if ($type != 'temp') {
575 // For multicompany sharings
576 $this->$module->$multidirname = array($this->entity => $rootfordata."/".$name);
577
578 // For backward compatibility
579 $this->$module->$dirname = $rootfordata."/".$name;
580 } else {
581 // For multicompany sharings
582 $this->$module->$multidirname = array($this->entity => $rootfortemp."/".$name."/temp");
583
584 // For backward compatibility
585 $this->$module->$dirname = $rootfortemp."/".$name."/temp";
586 }
587 }
588 }
589 }
590 }
591
592 // For mycompany storage
593 $this->mycompany->multidir_output = array($this->entity => $rootfordata."/mycompany");
594 $this->mycompany->multidir_temp = array($this->entity => $rootfortemp."/mycompany/temp");
595 // For backward compatibility
596 $this->mycompany->dir_output = $rootfordata."/mycompany";
597 $this->mycompany->dir_temp = $rootfortemp."/mycompany/temp";
598
599 // For admin storage
600 $this->admin->dir_output = $rootfordata.'/admin';
601 $this->admin->dir_temp = $rootfortemp.'/admin/temp';
602
603 // For user storage
604 $this->user->multidir_output = array($this->entity => $rootfordata."/users");
605 $this->user->multidir_temp = array($this->entity => $rootfortemp."/users/temp");
606 // For backward compatibility
607 $this->user->dir_output = $rootforuser."/users";
608 $this->user->dir_temp = $rootfortemp."/users/temp";
609
610 // For proposal storage
611 $this->propal->multidir_output = array($this->entity => $rootfordata."/propale");
612 $this->propal->multidir_temp = array($this->entity => $rootfortemp."/propale/temp");
613 // For backward compatibility
614 $this->propal->dir_output = $rootfordata."/propale";
615 $this->propal->dir_temp = $rootfortemp."/propale/temp";
616
617 // For medias storage
618 $this->medias->multidir_output = array($this->entity => $rootfordata."/medias");
619 $this->medias->multidir_temp = array($this->entity => $rootfortemp."/medias/temp");
620
621 // Exception: Some dir are not the name of module. So we keep exception here for backward compatibility.
622
623 // Module supplier is on
624 if (isModEnabled('fournisseur')) {
625 $this->fournisseur->commande = new stdClass();
626 $this->fournisseur->commande->multidir_output = array($this->entity => $rootfordata."/fournisseur/commande");
627 $this->fournisseur->commande->multidir_temp = array($this->entity => $rootfortemp."/fournisseur/commande/temp");
628 $this->fournisseur->commande->dir_output = $rootfordata."/fournisseur/commande"; // For backward compatibility
629 $this->fournisseur->commande->dir_temp = $rootfortemp."/fournisseur/commande/temp"; // For backward compatibility
630
631 $this->fournisseur->facture = new stdClass();
632 $this->fournisseur->facture->multidir_output = array($this->entity => $rootfordata."/fournisseur/facture");
633 $this->fournisseur->facture->multidir_temp = array($this->entity => $rootfortemp."/fournisseur/facture/temp");
634 $this->fournisseur->facture->dir_output = $rootfordata."/fournisseur/facture"; // For backward compatibility
635 $this->fournisseur->facture->dir_temp = $rootfortemp."/fournisseur/facture/temp"; // For backward compatibility
636
637 $this->supplier_proposal = new stdClass();
638 $this->supplier_proposal->multidir_output = array($this->entity => $rootfordata."/supplier_proposal");
639 $this->supplier_proposal->multidir_temp = array($this->entity => $rootfortemp."/supplier_proposal/temp");
640 $this->supplier_proposal->dir_output = $rootfordata."/supplier_proposal"; // For backward compatibility
641 $this->supplier_proposal->dir_temp = $rootfortemp."/supplier_proposal/temp"; // For backward compatibility
642
643 $this->fournisseur->payment = new stdClass();
644 $this->fournisseur->payment->multidir_output = array($this->entity => $rootfordata."/fournisseur/payment");
645 $this->fournisseur->payment->multidir_temp = array($this->entity => $rootfortemp."/fournisseur/payment/temp");
646 $this->fournisseur->payment->dir_output = $rootfordata."/fournisseur/payment"; // For backward compatibility
647 $this->fournisseur->payment->dir_temp = $rootfortemp."/fournisseur/payment/temp"; // For backward compatibility
648
649 // To prepare split of module supplier into module 'supplier' + 'supplier_order' + 'supplier_invoice'
650 if (!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD')) { // By default, if module supplier is on, and we don't use yet the new modules, we set artificially the module properties
651 $this->supplier_order = new stdClass();
652 $this->supplier_order->enabled = 1;
653 $this->supplier_order->multidir_output = array($this->entity => $rootfordata."/fournisseur/commande");
654 $this->supplier_order->multidir_temp = array($this->entity => $rootfortemp."/fournisseur/commande/temp");
655 $this->supplier_order->dir_output = $rootfordata."/fournisseur/commande"; // For backward compatibility
656 $this->supplier_order->dir_temp = $rootfortemp."/fournisseur/commande/temp"; // For backward compatibility
657
658 $this->supplier_invoice = new stdClass();
659 $this->supplier_invoice->enabled = 1;
660 $this->supplier_invoice->multidir_output = array($this->entity => $rootfordata."/fournisseur/facture");
661 $this->supplier_invoice->multidir_temp = array($this->entity => $rootfortemp."/fournisseur/facture/temp");
662 $this->supplier_invoice->dir_output = $rootfordata."/fournisseur/facture"; // For backward compatibility
663 $this->supplier_invoice->dir_temp = $rootfortemp."/fournisseur/facture/temp"; // For backward compatibility
664 }
665 }
666
667 // Module compta
668 $this->compta->payment = new stdClass();
669 $this->compta->payment->dir_output = $rootfordata."/compta/payment";
670 $this->compta->payment->dir_temp = $rootfortemp."/compta/payment/temp";
671
672 // Module product/service
673 $this->product->multidir_output = array($this->entity => $rootfordata."/produit");
674 $this->product->multidir_temp = array($this->entity => $rootfortemp."/produit/temp");
675 $this->service->multidir_output = array($this->entity => $rootfordata."/produit");
676 $this->service->multidir_temp = array($this->entity => $rootfortemp."/produit/temp");
677 // For backward compatibility
678 $this->product->dir_output = $rootfordata."/produit";
679 $this->product->dir_temp = $rootfortemp."/produit/temp";
680 $this->service->dir_output = $rootfordata."/produit";
681 $this->service->dir_temp = $rootfortemp."/produit/temp";
682
683 // Module productbatch
684 $this->productbatch->multidir_output = array($this->entity => $rootfordata."/productlot");
685 $this->productbatch->multidir_temp = array($this->entity => $rootfortemp."/productlot/temp");
686
687 // Module contrat
688 $this->contrat->multidir_output = array($this->entity => $rootfordata."/contract");
689 $this->contrat->multidir_temp = array($this->entity => $rootfortemp."/contract/temp");
690 // For backward compatibility
691 $this->contrat->dir_output = $rootfordata."/contract";
692 $this->contrat->dir_temp = $rootfortemp."/contract/temp";
693
694 // Module bank
695 $this->bank->multidir_output = array($this->entity => $rootfordata."/bank");
696 $this->bank->multidir_temp = array($this->entity => $rootfortemp."/bank/temp");
697 // For backward compatibility
698 $this->bank->dir_output = $rootfordata."/bank";
699 $this->bank->dir_temp = $rootfortemp."/bank/temp";
700
701 // Set some default values
702 //$this->global->MAIN_LIST_FILTER_ON_DAY=1; // On filter that show date, we must show input field for day before or after month
703 $this->global->MAIN_MAIL_USE_MULTI_PART = 1;
704
705 // societe
706 if (empty($this->global->SOCIETE_CODECLIENT_ADDON)) {
707 $this->global->SOCIETE_CODECLIENT_ADDON = "mod_codeclient_leopard";
708 }
709 if (empty($this->global->SOCIETE_CODECOMPTA_ADDON)) {
710 $this->global->SOCIETE_CODECOMPTA_ADDON = "mod_codecompta_panicum";
711 }
712
713 if (empty($this->global->CHEQUERECEIPTS_ADDON)) {
714 $this->global->CHEQUERECEIPTS_ADDON = 'mod_chequereceipt_mint';
715 }
716 if (empty($this->global->TICKET_ADDON)) {
717 $this->global->TICKET_ADDON = 'mod_ticket_simple';
718 }
719
720 // Security
721 if (empty($this->global->USER_PASSWORD_GENERATED)) {
722 $this->global->USER_PASSWORD_GENERATED = 'standard'; // Default password generator
723 }
724 if (empty($this->global->MAIN_UMASK)) {
725 $this->global->MAIN_UMASK = '0660'; // Default mask
726 } else {
727 // We remove the execute bits on the file umask
728 $tmpumask = (octdec(getDolGlobalString('MAIN_UMASK')) & 0666);
729 $tmpumask = decoct($tmpumask);
730 if (!preg_match('/^0/', $tmpumask)) { // Convert string '123' into octal representation '0123'
731 $tmpumask = '0'.$tmpumask;
732 }
733 if (empty($tmpumask)) { // when $tmpmask is null, '', or '0'
734 $tmpumask = '0664';
735 }
736 $this->global->MAIN_UMASK = $tmpumask;
737 }
738
739 // conf->use_javascript_ajax
740 $this->use_javascript_ajax = 1;
741 if (isset($this->global->MAIN_DISABLE_JAVASCRIPT)) {
742 $this->use_javascript_ajax = !$this->global->MAIN_DISABLE_JAVASCRIPT;
743 }
744 // If no javascript_ajax, Ajax features are disabled.
745 if (empty($this->use_javascript_ajax)) {
746 unset($this->global->PRODUIT_USE_SEARCH_TO_SELECT);
747 unset($this->global->COMPANY_USE_SEARCH_TO_SELECT);
748 unset($this->global->CONTACT_USE_SEARCH_TO_SELECT);
749 unset($this->global->PROJECT_USE_SEARCH_TO_SELECT);
750 }
751
752 if (isModEnabled('productbatch')) {
753 // If module lot/serial enabled, we force the inc/dec mode to STOCK_CALCULATE_ON_SHIPMENT_CLOSE and STOCK_CALCULATE_ON_RECEPTION_CLOSE
754 $this->global->STOCK_CALCULATE_ON_BILL = 0;
755 $this->global->STOCK_CALCULATE_ON_VALIDATE_ORDER = 0;
756 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT)) {
757 $this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE = 1;
758 }
759 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE)) {
760 $this->global->STOCK_CALCULATE_ON_SHIPMENT = 1;
761 }
762 $this->global->STOCK_CALCULATE_ON_SUPPLIER_BILL = 0;
763 $this->global->STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER = 0;
764 if (!isModEnabled('reception')) {
765 $this->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER = 1;
766 } else {
767 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION)) {
768 $this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE = 1;
769 }
770 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
771 $this->global->STOCK_CALCULATE_ON_RECEPTION = 1;
772 }
773 }
774 }
775
776 if (!isset($this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT)) {
777 $this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT = 1;
778 }
779
780 // conf->currency
781 if (empty($this->global->MAIN_MONNAIE)) {
782 $this->global->MAIN_MONNAIE = 'EUR';
783 }
784 $this->currency = $this->global->MAIN_MONNAIE;
785
786 if (empty($this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY)) {
787 $this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY = 30; // Less than 1 minutes to be sure
788 }
789
790 // conf->global->ACCOUNTING_MODE = Option des modules Comptabilites (simple ou expert). Defini le mode de calcul des etats comptables (CA,...)
791 if (empty($this->global->ACCOUNTING_MODE)) {
792 $this->global->ACCOUNTING_MODE = 'RECETTES-DEPENSES'; // By default. Can be 'RECETTES-DEPENSES' ou 'CREANCES-DETTES'
793 }
794
795 if (!isset($this->global->MAIN_ENABLE_AJAX_TOOLTIP)) {
796 $this->global->MAIN_ENABLE_AJAX_TOOLTIP = 0; // Not enabled by default (still trouble of persistent tooltip)
797 }
798
799 // By default, suppliers objects can be linked to all projects
800 if (!isset($this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS)) {
801 $this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS = 1;
802 }
803
804 // By default we enable feature to bill time spent
805 if (!isset($this->global->PROJECT_BILL_TIME_SPENT)) {
806 $this->global->PROJECT_BILL_TIME_SPENT = 1;
807 }
808
809 // MAIN_HTML_TITLE
810 if (!isset($this->global->MAIN_HTML_TITLE)) {
811 $this->global->MAIN_HTML_TITLE = 'thirdpartynameonly,contactnameonly,projectnameonly';
812 }
813
814 // conf->liste_limit = constant to limit size of lists
815 $this->liste_limit = getDolGlobalInt('MAIN_SIZE_LISTE_LIMIT', 15);
816 if ((int) $this->liste_limit <= 0) {
817 // Mode automatic.
818 $this->liste_limit = 15;
819 if (!empty($_SESSION['dol_screenheight']) && $_SESSION['dol_screenheight'] < 910) {
820 $this->liste_limit = 10;
821 } elseif (!empty($_SESSION['dol_screenheight']) && $_SESSION['dol_screenheight'] > 1130) {
822 $this->liste_limit = 20;
823 }
824 }
825
826 // conf->main_checkbox_left_column = constant to set checkbox list to left
827 if (!isset($this->main_checkbox_left_column)) {
828 $this->main_checkbox_left_column = getDolGlobalInt("MAIN_CHECKBOX_LEFT_COLUMN");
829 }
830
831 // Set PRODUIT_LIMIT_SIZE if never defined
832 if (!isset($this->global->PRODUIT_LIMIT_SIZE)) {
833 $this->global->PRODUIT_LIMIT_SIZE = 1000;
834 }
835
836 // Set PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE, may be modified later according to browser
837 $this->global->PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE = getDolGlobalInt('PRODUIT_DESC_IN_FORM');
838
839 // conf->theme et $this->css
840 if (empty($this->global->MAIN_THEME)) {
841 $this->global->MAIN_THEME = "eldy";
842 }
843 if (!empty($this->global->MAIN_FORCETHEME)) {
844 $this->global->MAIN_THEME = $this->global->MAIN_FORCETHEME;
845 }
846 $this->theme = $this->global->MAIN_THEME;
847 $this->css = "/theme/".$this->theme."/style.css.php";
848
849 // conf->email_from = email by default to send Dolibarr automatic emails
850 $this->email_from = "robot@example.com";
851 if (!empty($this->global->MAIN_MAIL_EMAIL_FROM)) {
852 $this->email_from = $this->global->MAIN_MAIL_EMAIL_FROM;
853 }
854
855 // conf->notification->email_from = email by default to send Dolibarr notifications
856 if (isModEnabled('notification')) {
857 $this->notification->email_from = $this->email_from;
858 if (!empty($this->global->NOTIFICATION_EMAIL_FROM)) {
859 $this->notification->email_from = $this->global->NOTIFICATION_EMAIL_FROM;
860 }
861 }
862
863 if (!isset($this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP)) {
864 $this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP = 1;
865 }
866
867 if (!isset($this->global->MAIN_FIX_FOR_BUGGED_MTA)) {
868 $this->global->MAIN_FIX_FOR_BUGGED_MTA = 1;
869 }
870
871 // Format for date (used by default when not found or not searched in lang)
872 $this->format_date_short = "%d/%m/%Y"; // Format of day with PHP/C tags (strftime functions)
873 $this->format_date_short_java = "dd/MM/yyyy"; // Format of day with Java tags
874 $this->format_hour_short = "%H:%M";
875 $this->format_hour_short_duration = "%H:%M";
876 $this->format_date_text_short = "%d %b %Y";
877 $this->format_date_text = "%d %B %Y";
878 $this->format_date_hour_short = "%d/%m/%Y %H:%M";
879 $this->format_date_hour_sec_short = "%d/%m/%Y %H:%M:%S";
880 $this->format_date_hour_text_short = "%d %b %Y %H:%M";
881 $this->format_date_hour_text = "%d %B %Y %H:%M";
882
883 // Duration of workday
884 if (!isset($this->global->MAIN_DURATION_OF_WORKDAY)) {
885 $this->global->MAIN_DURATION_OF_WORKDAY = 86400;
886 }
887
888 // Limites decimales si non definie (peuvent etre egale a 0)
889 if (!isset($this->global->MAIN_MAX_DECIMALS_UNIT)) {
890 $this->global->MAIN_MAX_DECIMALS_UNIT = 5;
891 }
892 if (!isset($this->global->MAIN_MAX_DECIMALS_TOT)) {
893 $this->global->MAIN_MAX_DECIMALS_TOT = 2;
894 }
895 if (!isset($this->global->MAIN_MAX_DECIMALS_SHOWN)) {
896 $this->global->MAIN_MAX_DECIMALS_SHOWN = 8;
897 }
898
899 // Default pdf option
900 if (!isset($this->global->MAIN_PDF_DASH_BETWEEN_LINES)) {
901 $this->global->MAIN_PDF_DASH_BETWEEN_LINES = 1; // use dash between lines
902 }
903 if (!isset($this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT)) {
904 $this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT = 1; // allow html content into free footer text
905 }
906 if (!isset($this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING)) {
907 $this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING = 1;
908 }
909
910 // Default max file size for upload (deprecated)
911 //$this->maxfilesize = (empty($this->global->MAIN_UPLOAD_DOC) ? 0 : (int) $this->global->MAIN_UPLOAD_DOC * 1024);
912
913 // By default, we propagate contacts
914 if (!isset($this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN)) {
915 $this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN = '*'; // Can be also '*' or '^(BILLING|SHIPPING|CUSTOMER|.*)$' (regex not yet implemented)
916 }
917
918 // By default, we do not use the zip town table but the table of third parties
919 if (!isset($this->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) {
920 $this->global->MAIN_USE_ZIPTOWN_DICTIONNARY = 0;
921 }
922
923 // By default, we open card if one found
924 if (!isset($this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE)) {
925 $this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE = 1;
926 }
927
928 // By default, we show state code in combo list
929 if (!isset($this->global->MAIN_SHOW_STATE_CODE)) {
930 $this->global->MAIN_SHOW_STATE_CODE = 1;
931 }
932
933 // By default, we show state code in combo list
934 if (!isset($this->global->MULTICURRENCY_USE_ORIGIN_TX)) {
935 $this->global->MULTICURRENCY_USE_ORIGIN_TX = 1;
936 }
937
938 // By default, use an enclosure " for field with CRL or LF into content, + we also remove also CRL/LF chars.
939 if (!isset($this->global->USE_STRICT_CSV_RULES)) {
940 $this->global->USE_STRICT_CSV_RULES = 2;
941 }
942
943 // Use a SCA ready workflow with Stripe module (STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION by default if nothing defined)
944 if (!isset($this->global->STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION) && empty($this->global->STRIPE_USE_NEW_CHECKOUT)) {
945 $this->global->STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION = 1;
946 }
947
948 // Define list of limited modules (value must be key found for "name" property of module, so for example 'supplierproposal' for Module "Supplier Proposal"
949 if (!isset($this->global->MAIN_MODULES_FOR_EXTERNAL)) {
950 $this->global->MAIN_MODULES_FOR_EXTERNAL = 'user,societe,propal,commande,facture,categorie,supplierproposal,fournisseur,contact,projet,contrat,ficheinter,expedition,reception,agenda,resource,adherent,blockedlog,ticket'; // '' means 'all'. Note that contact is added here as it should be a module later.
951 }
952 if (!empty($this->modules_parts['moduleforexternal'])) { // Module part to include an external module into the MAIN_MODULES_FOR_EXTERNAL list
953 foreach ($this->modules_parts['moduleforexternal'] as $key => $value) {
954 $this->global->MAIN_MODULES_FOR_EXTERNAL .= ",".$key;
955 }
956 }
957
958 // Enable select2
959 if (empty($this->global->MAIN_USE_JQUERY_MULTISELECT) || $this->global->MAIN_USE_JQUERY_MULTISELECT == '1') {
960 $this->global->MAIN_USE_JQUERY_MULTISELECT = 'select2';
961 }
962
963 // Timeouts
964 if (empty($this->global->MAIN_USE_CONNECT_TIMEOUT)) {
965 $this->global->MAIN_USE_CONNECT_TIMEOUT = 10;
966 }
967 if (empty($this->global->MAIN_USE_RESPONSE_TIMEOUT)) {
968 $this->global->MAIN_USE_RESPONSE_TIMEOUT = 30;
969 }
970
971 // Set default variable to calculate VAT as if option tax_mode was 0 (standard)
972 if (empty($this->global->TAX_MODE_SELL_PRODUCT)) {
973 $this->global->TAX_MODE_SELL_PRODUCT = 'invoice';
974 }
975 if (empty($this->global->TAX_MODE_BUY_PRODUCT)) {
976 $this->global->TAX_MODE_BUY_PRODUCT = 'invoice';
977 }
978 if (empty($this->global->TAX_MODE_SELL_SERVICE)) {
979 $this->global->TAX_MODE_SELL_SERVICE = 'payment';
980 }
981 if (empty($this->global->TAX_MODE_BUY_SERVICE)) {
982 $this->global->TAX_MODE_BUY_SERVICE = 'payment';
983 }
984
985 // Delay before warnings
986 // Avoid strict errors. TODO: Replace xxx->warning_delay with a property ->warning_delay_xxx
987 if (isset($this->agenda)) {
988 $this->adherent->subscription = new stdClass();
989 $this->adherent->subscription->warning_delay = (isset($this->global->MAIN_DELAY_MEMBERS) ? (int) $this->global->MAIN_DELAY_MEMBERS : 0) * 86400;
990 }
991 if (isset($this->agenda)) {
992 $this->agenda->warning_delay = (isset($this->global->MAIN_DELAY_ACTIONS_TODO) ? (int) $this->global->MAIN_DELAY_ACTIONS_TODO : 7) * 86400;
993 }
994 if (isset($this->projet)) {
995 $this->projet->warning_delay = (getDolGlobalInt('MAIN_DELAY_PROJECT_TO_CLOSE', 7) * 86400);
996 $this->projet->task = new StdClass();
997 $this->projet->task->warning_delay = (getDolGlobalInt('MAIN_DELAY_TASKS_TODO', 7) * 86400);
998 }
999
1000 if (isset($this->commande)) {
1001 $this->commande->client = new stdClass();
1002 $this->commande->fournisseur = new stdClass();
1003 $this->commande->client->warning_delay = (isset($this->global->MAIN_DELAY_ORDERS_TO_PROCESS) ? (int) $this->global->MAIN_DELAY_ORDERS_TO_PROCESS : 2) * 86400;
1004 $this->commande->fournisseur->warning_delay = (isset($this->global->MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS) ? (int) $this->global->MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS : 7) * 86400;
1005 }
1006 if (isset($this->propal)) {
1007 $this->propal->cloture = new stdClass();
1008 $this->propal->facturation = new stdClass();
1009 $this->propal->cloture->warning_delay = (isset($this->global->MAIN_DELAY_PROPALS_TO_CLOSE) ? (int) $this->global->MAIN_DELAY_PROPALS_TO_CLOSE : 0) * 86400;
1010 $this->propal->facturation->warning_delay = (isset($this->global->MAIN_DELAY_PROPALS_TO_BILL) ? (int) $this->global->MAIN_DELAY_PROPALS_TO_BILL : 0) * 86400;
1011 }
1012 if (isset($this->facture)) {
1013 $this->facture->client = new stdClass();
1014 $this->facture->fournisseur = new stdClass();
1015 $this->facture->client->warning_delay = (isset($this->global->MAIN_DELAY_CUSTOMER_BILLS_UNPAYED) ? (int) $this->global->MAIN_DELAY_CUSTOMER_BILLS_UNPAYED : 0) * 86400;
1016 $this->facture->fournisseur->warning_delay = (isset($this->global->MAIN_DELAY_SUPPLIER_BILLS_TO_PAY) ? (int) $this->global->MAIN_DELAY_SUPPLIER_BILLS_TO_PAY : 0) * 86400;
1017 }
1018 if (isset($this->contrat)) {
1019 $this->contrat->services = new stdClass();
1020 $this->contrat->services->inactifs = new stdClass();
1021 $this->contrat->services->expires = new stdClass();
1022 $this->contrat->services->inactifs->warning_delay = (isset($this->global->MAIN_DELAY_NOT_ACTIVATED_SERVICES) ? (int) $this->global->MAIN_DELAY_NOT_ACTIVATED_SERVICES : 0) * 86400;
1023 $this->contrat->services->expires->warning_delay = (isset($this->global->MAIN_DELAY_RUNNING_SERVICES) ? (int) $this->global->MAIN_DELAY_RUNNING_SERVICES : 0) * 86400;
1024 }
1025 if (isset($this->commande)) {
1026 $this->bank->rappro = new stdClass();
1027 $this->bank->cheque = new stdClass();
1028 $this->bank->rappro->warning_delay = (isset($this->global->MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE) ? (int) $this->global->MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE : 0) * 86400;
1029 $this->bank->cheque->warning_delay = (isset($this->global->MAIN_DELAY_CHEQUES_TO_DEPOSIT) ? (int) $this->global->MAIN_DELAY_CHEQUES_TO_DEPOSIT : 0) * 86400;
1030 }
1031 if (isset($this->expensereport)) {
1032 $this->expensereport->approve = new stdClass();
1033 $this->expensereport->approve->warning_delay = (isset($this->global->MAIN_DELAY_EXPENSEREPORTS) ? (int) $this->global->MAIN_DELAY_EXPENSEREPORTS : 0) * 86400;
1034 $this->expensereport->payment = new stdClass();
1035 $this->expensereport->payment->warning_delay = (isset($this->global->MAIN_DELAY_EXPENSEREPORTS_TO_PAY) ? (int) $this->global->MAIN_DELAY_EXPENSEREPORTS_TO_PAY : 0) * 86400;
1036 }
1037 if (isset($this->holiday)) {
1038 $this->holiday->approve = new stdClass();
1039 $this->holiday->approve->warning_delay = (isset($this->global->MAIN_DELAY_HOLIDAYS) ? (int) $this->global->MAIN_DELAY_HOLIDAYS : 0) * 86400;
1040 }
1041
1042 if (!empty($this->global->PRODUIT_MULTIPRICES) && empty($this->global->PRODUIT_MULTIPRICES_LIMIT)) {
1043 $this->global->PRODUIT_MULTIPRICES_LIMIT = 5;
1044 }
1045
1046 if (!isset($this->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
1047 $this->global->MAIN_CHECKBOX_LEFT_COLUMN = 1;
1048 }
1049
1050 // For modules that want to disable top or left menu
1051 if (!empty($this->global->MAIN_HIDE_TOP_MENU)) {
1052 $this->dol_hide_topmenu = $this->global->MAIN_HIDE_TOP_MENU;
1053 }
1054 if (!empty($this->global->MAIN_HIDE_LEFT_MENU)) {
1055 $this->dol_hide_leftmenu = $this->global->MAIN_HIDE_LEFT_MENU;
1056 }
1057
1058 if (empty($this->global->MAIN_SIZE_SHORTLIST_LIMIT)) {
1059 $this->global->MAIN_SIZE_SHORTLIST_LIMIT = 3;
1060 }
1061
1062 // Save inconsistent option
1063 if (empty($this->global->AGENDA_USE_EVENT_TYPE) && (!isset($this->global->AGENDA_DEFAULT_FILTER_TYPE) || $this->global->AGENDA_DEFAULT_FILTER_TYPE == 'AC_NON_AUTO')) {
1064 $this->global->AGENDA_DEFAULT_FILTER_TYPE = '0'; // 'AC_NON_AUTO' does not exists when AGENDA_DEFAULT_FILTER_TYPE is not on.
1065 }
1066
1067 if (!isset($this->global->MAIN_JS_GRAPH)) {
1068 $this->global->MAIN_JS_GRAPH = 'chart'; // Use chart.js library
1069 }
1070
1071 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_SRV)) {
1072 $this->global->MAIN_MODULE_DOLISTORE_API_SRV = 'https://www.dolistore.com';
1073 }
1074 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_KEY)) {
1075 $this->global->MAIN_MODULE_DOLISTORE_API_KEY = 'dolistorecatalogpublickey1234567';
1076 }
1077
1078 // Enable by default the CSRF protection by token.
1079 if (!isset($this->global->MAIN_SECURITY_CSRF_WITH_TOKEN)) {
1080 // Value 1 makes CSRF check for all POST parameters only
1081 // Value 2 makes also CSRF check for GET requests with action = a sensitive requests like action=del, action=remove...
1082 // Value 3 makes also CSRF check for all GET requests with a param action or massaction (except some non sensitive values)
1083 $this->global->MAIN_SECURITY_CSRF_WITH_TOKEN = 2; // TODO Switch value to 3
1084 // Note: Set MAIN_SECURITY_CSRF_TOKEN_RENEWAL_ON_EACH_CALL=1 to have a renewal of token at each page call instead of each session (not recommended)
1085 }
1086
1087 if (!isset($this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA)) {
1088 $this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA = 1;
1089 }
1090
1091 if (!isset($this->global->MAIL_SMTP_USE_FROM_FOR_HELO)) {
1092 $this->global->MAIL_SMTP_USE_FROM_FOR_HELO = 2; // Use the domain in $dolibarr_main_url_root (mydomain.com)
1093 }
1094
1095 if (!defined('MAIN_ANTIVIRUS_BYPASS_COMMAND_AND_PARAM')) {
1096 if (defined('MAIN_ANTIVIRUS_COMMAND')) {
1097 $this->global->MAIN_ANTIVIRUS_COMMAND = constant('MAIN_ANTIVIRUS_COMMAND');
1098 }
1099 if (defined('MAIN_ANTIVIRUS_PARAM')) {
1100 $this->global->MAIN_ANTIVIRUS_PARAM = constant('MAIN_ANTIVIRUS_PARAM');
1101 }
1102 }
1103
1104 // For backward compatibility
1105 if (!empty($this->global->LDAP_SYNCHRO_ACTIVE)) {
1106 if ($this->global->LDAP_SYNCHRO_ACTIVE == 'dolibarr2ldap') {
1107 $this->global->LDAP_SYNCHRO_ACTIVE = 1;
1108 } elseif ($this->global->LDAP_SYNCHRO_ACTIVE == 'ldap2dolibarr') {
1109 $this->global->LDAP_SYNCHRO_ACTIVE = 2;
1110 }
1111 }
1112 // For backward compatibility
1113 if (!empty($this->global->LDAP_MEMBER_ACTIVE) && $this->global->LDAP_MEMBER_ACTIVE == 'ldap2dolibarr') {
1114 $this->global->LDAP_MEMBER_ACTIVE = 2;
1115 }
1116 // For backward compatibility
1117 if (!empty($this->global->LDAP_MEMBER_TYPE_ACTIVE) && $this->global->LDAP_MEMBER_TYPE_ACTIVE == 'ldap2dolibarr') {
1118 $this->global->LDAP_MEMBER_TYPE_ACTIVE = 2;
1119 }
1120
1121 if (!empty($this->global->MAIN_TZUSERINPUTKEY)) {
1122 $this->tzuserinputkey = $this->global->MAIN_TZUSERINPUTKEY; // 'tzserver' or 'tzuserrel'
1123 }
1124
1125 if (!empty($this->global->PRODUIT_AUTOFILL_DESC)) {
1126 $this->global->MAIN_NO_CONCAT_DESCRIPTION = 1;
1127 } else {
1128 unset($this->global->MAIN_NO_CONCAT_DESCRIPTION);
1129 }
1130
1131
1132 // Simple deprecation management. We do not use DolDeprecationHandlet for $conf.
1133
1134 // product is new use
1135 if (isset($this->product)) {
1136 // For backward compatibility
1137 $this->produit = $this->product;
1138 }
1139 // invoice is new use, facture is old use still initialised
1140 if (isset($this->facture)) {
1141 $this->invoice = $this->facture;
1142 }
1143 // order is new use, commande is old use still initialised
1144 if (isset($this->commande)) {
1145 $this->order = $this->commande;
1146 }
1147 // contract is new use, contrat is old use still initialised
1148 if (isset($this->contrat)) {
1149 $this->contract = $this->contrat;
1150 }
1151 // category is new use, categorie is old use still initialised
1152 if (isset($this->categorie)) {
1153 $this->category = $this->categorie;
1154 }
1155 // project is new use, projet is old use still initialised
1156 if (isset($this->projet) && !isset($this->project)) {
1157 $this->project = $this->projet;
1158 }
1159 // member is new use, adherent is old use still initialised
1160 if (isset($this->adherent) && !isset($this->member)) {
1161 $this->member = $this->adherent;
1162 }
1163
1164 // Object $mc
1165 if (!defined('NOREQUIREMC') && isModEnabled('multicompany')) {
1166 if (is_object($mc)) {
1167 $mc->setValues($this);
1168 }
1169 }
1170
1171 if (isModEnabled('syslog')) {
1172 // We init log handlers
1173 if (!empty($this->global->SYSLOG_HANDLERS)) {
1174 $handlers = json_decode($this->global->SYSLOG_HANDLERS);
1175 } else {
1176 $handlers = array();
1177 }
1178 foreach ($handlers as $handler) {
1179 $handler_file_found = '';
1180 $dirsyslogs = array('/core/modules/syslog/');
1181 if (!empty($this->modules_parts['syslog']) && is_array($this->modules_parts['syslog'])) {
1182 $dirsyslogs = array_merge($dirsyslogs, $this->modules_parts['syslog']);
1183 }
1184 foreach ($dirsyslogs as $reldir) {
1185 $dir = dol_buildpath($reldir, 0);
1186 $newdir = dol_osencode($dir);
1187 if (is_dir($newdir)) {
1188 $file = $newdir.$handler.'.php';
1189 if (file_exists($file)) {
1190 $handler_file_found = $file;
1191 break;
1192 }
1193 }
1194 }
1195
1196 if (empty($handler_file_found)) {
1197 // If log handler has been removed of is badly setup, we must be able to continue code.
1198 //throw new Exception('Missing log handler file '.$handler.'.php');
1199 continue;
1200 }
1201
1202 require_once $handler_file_found;
1203 $loghandlerinstance = new $handler();
1204 if (!$loghandlerinstance instanceof LogHandler) {
1205 throw new Exception('Log handler does not extend LogHandler');
1206 }
1207
1208 if (empty($this->loghandlers[$handler])) {
1209 $this->loghandlers[$handler] = $loghandlerinstance;
1210 }
1211 }
1212 }
1213 }
1214
1215 // Overwrite database values from conf into the conf.php file.
1216 if (!empty($this->file->mailing_limit_sendbyweb)) {
1217 $this->global->MAILING_LIMIT_SENDBYWEB = $this->file->mailing_limit_sendbyweb;
1218 }
1219 if (empty($this->global->MAILING_LIMIT_SENDBYWEB)) { // Limit by web can't be 0
1220 $this->global->MAILING_LIMIT_SENDBYWEB = 25;
1221 }
1222 if (!empty($this->file->mailing_limit_sendbycli)) {
1223 $this->global->MAILING_LIMIT_SENDBYCLI = $this->file->mailing_limit_sendbycli;
1224 }
1225 if (!empty($this->file->mailing_limit_sendbyday)) {
1226 $this->global->MAILING_LIMIT_SENDBYDAY = $this->file->mailing_limit_sendbyday;
1227 }
1228
1229 return 0;
1230 }
1231}
Class to stock current configuration.
setValues($db)
Load setup values into conf object (read llx_const) Note that this->db->xxx, this->file->xxx have bee...
$use_javascript_ajax
To store if javascript/ajax is enabked.
$standard_menu
Used to store current menu handler.
$expedition_bon
To store module status of special module names.
$mycompany
To store some setup of generic modules.
__construct()
Constructor.
setEntityValues($db, $entity)
Load setup values into conf object (read llx_const) for a specified entity Note that this->db->xxx,...
$currency
Used to store current currency (ISO code like 'USD', 'EUR', ...). To get the currency symbol: $langs-...
$disable_compute
To store if javascript/ajax is enabked.
$multicompany
To store properties of multi-company.
Parent class for log handlers.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
$conf db user
Active Directory does not allow anonymous connections.
Definition repair.php:143
dolDecrypt($chain, $key='')
Decode a string with a symmetric encryption.