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