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