305 if (!empty($this->modules)) {
306 foreach ($this->modules as $m) {
307 if (isset($this->$m)) {
324 $this->fournisseur =
new stdClass();
337 $this->notification =
new stdClass();
338 $this->expensereport =
new stdClass();
339 $this->productbatch =
new stdClass();
343 $this->cache = array();
344 $this->modules = array();
345 $this->modules_parts = array(
349 'triggers' => array(),
351 'substitutions' => array(),
356 'barcode' => array(),
358 'societe' => array(),
363 'websitetemplates' => array(),
366 if (!is_null($db) && is_object($db)) {
367 include_once DOL_DOCUMENT_ROOT.
'/core/lib/security.lib.php';
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";
376 $resql = $db->query($sql);
379 $numr = $db->num_rows($resql);
381 $objp = $db->fetch_object($resql);
383 $value = $objp->value;
386 if (isset($_SERVER[
'DOLIBARR_'.$key])) {
387 $value = $_SERVER[
'DOLIBARR_'.$key];
388 } elseif (isset($_ENV[
'DOLIBARR_'.$key])) {
389 $value = $_ENV[
'DOLIBARR_'.$key];
394 if ($value && strpos($key,
'MAIN_MODULE_') === 0) {
397 if (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)_TABS_/i', $key)) {
399 $params = explode(
':', $value, 2);
400 if (!is_array($this->modules_parts[$partname])) {
401 $this->modules_parts[$partname] = array();
403 $this->modules_parts[$partname][$params[0]][] = $value;
404 } elseif (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)_([A-Z]+)$/i', $key, $reg)) {
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();
418 $arrValue = json_decode($value,
true);
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.
'/';
433 if (!empty($newvalue)) {
434 $this->modules_parts[$partname] = array_merge($this->modules_parts[$partname], array($modulename => $newvalue));
436 } elseif (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)$/i', $key, $reg)) {
438 $modulename = strtolower($reg[1]);
439 if ($modulename ==
'propale') {
440 $modulename =
'propal';
442 if ($modulename ==
'supplierproposal') {
443 $modulename =
'supplier_proposal';
445 $this->modules[$modulename] = $modulename;
449 if (!isset($this->$modulename) || !is_object($this->$modulename)) {
450 $this->$modulename =
new stdClass();
452 $this->$modulename->enabled =
true;
477 if (!empty($this->global->LOCAL_CONSTS_FILES)) {
478 $filesList = explode(
":", $this->global->LOCAL_CONSTS_FILES);
479 foreach ($filesList as $file) {
491 if (!empty($this->global->MAIN_SERVER_TZ) && $this->global->MAIN_SERVER_TZ !=
'auto') {
493 date_default_timezone_set($this->global->MAIN_SERVER_TZ);
495 dol_syslog(
"Error: Bad value for parameter MAIN_SERVER_TZ=".$this->global->MAIN_SERVER_TZ, LOG_ERR);
500 if (!defined(
'NOREQUIREMC') && isModEnabled(
'multicompany')) {
502 $ret = @
dol_include_once(
'/multicompany/class/actions_multicompany.class.php');
503 if ($ret && class_exists(
'ActionsMulticompany')) {
504 $mc =
new ActionsMulticompany($db);
509 if (empty($this->global->MAIN_MENU_STANDARD)) {
510 $this->global->MAIN_MENU_STANDARD =
"eldy_menu.php";
512 if (empty($this->global->MAIN_MENUFRONT_STANDARD)) {
513 $this->global->MAIN_MENUFRONT_STANDARD =
"eldy_menu.php";
515 if (empty($this->global->MAIN_MENU_SMARTPHONE)) {
516 $this->global->MAIN_MENU_SMARTPHONE =
"eldy_menu.php";
518 if (empty($this->global->MAIN_MENUFRONT_SMARTPHONE)) {
519 $this->global->MAIN_MENUFRONT_SMARTPHONE =
"eldy_menu.php";
521 if (!isset($this->global->FACTURE_TVAOPTION)) {
522 $this->global->FACTURE_TVAOPTION = 1;
526 if (empty($this->global->LDAP_FIELD_FULLNAME)) {
527 $this->global->LDAP_FIELD_FULLNAME =
'';
529 if (!isset($this->global->LDAP_KEY_USERS)) {
530 $this->global->LDAP_KEY_USERS = $this->global->LDAP_FIELD_FULLNAME;
532 if (!isset($this->global->LDAP_KEY_GROUPS)) {
533 $this->global->LDAP_KEY_GROUPS = $this->global->LDAP_FIELD_FULLNAME;
535 if (!isset($this->global->LDAP_KEY_CONTACTS)) {
536 $this->global->LDAP_KEY_CONTACTS = $this->global->LDAP_FIELD_FULLNAME;
538 if (!isset($this->global->LDAP_KEY_MEMBERS)) {
539 $this->global->LDAP_KEY_MEMBERS = $this->global->LDAP_FIELD_FULLNAME;
541 if (!isset($this->global->LDAP_KEY_MEMBERS_TYPES)) {
542 $this->global->LDAP_KEY_MEMBERS_TYPES = $this->global->LDAP_FIELD_FULLNAME;
546 if (empty($this->global->MAIN_LANG_DEFAULT)) {
547 $this->global->MAIN_LANG_DEFAULT =
"en_US";
550 $rootfordata = DOL_DATA_ROOT;
551 $rootforuser = DOL_DATA_ROOT;
553 if (isModEnabled(
'multicompany') && !empty($this->entity) && $this->entity > 1) {
554 $rootfordata .=
'/'.$this->entity;
557 $rootfortemp = empty($this->global->MAIN_TEMP_DIR) ? $rootfordata : $this->global->MAIN_TEMP_DIR;
560 foreach ($this->modules as $module) {
563 $this->$module->multidir_output = array($this->entity => $rootfordata.
"/".$module);
564 $this->$module->multidir_temp = array($this->entity => $rootfortemp.
"/".$module.
"/temp");
566 $this->$module->dir_output = $rootfordata.
"/".$module;
567 $this->$module->dir_temp = $rootfortemp.
"/".$module.
"/temp";
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) {
575 $multidirname =
'multidir_'.$type;
576 $dirname =
'dir_'.$type;
578 if ($type !=
'temp') {
580 $this->$module->$multidirname = array($this->entity => $rootfordata.
"/".$name);
583 $this->$module->$dirname = $rootfordata.
"/".$name;
586 $this->$module->$multidirname = array($this->entity => $rootfortemp.
"/".$name.
"/temp");
589 $this->$module->$dirname = $rootfortemp.
"/".$name.
"/temp";
597 $this->mycompany->multidir_output = array($this->entity => $rootfordata.
"/mycompany");
598 $this->mycompany->multidir_temp = array($this->entity => $rootfortemp.
"/mycompany/temp");
600 $this->mycompany->dir_output = $rootfordata.
"/mycompany";
601 $this->mycompany->dir_temp = $rootfortemp.
"/mycompany/temp";
604 $this->admin->dir_output = $rootfordata.
'/admin';
605 $this->admin->dir_temp = $rootfortemp.
'/admin/temp';
608 $this->api->dir_output = $rootfordata.
'/api';
609 $this->api->dir_temp = $rootfortemp.
'/api/temp';
612 $this->
user->multidir_output = array($this->entity => $rootfordata.
"/users");
613 $this->
user->multidir_temp = array($this->entity => $rootfortemp.
"/users/temp");
615 $this->
user->dir_output = $rootforuser.
"/users";
616 $this->
user->dir_temp = $rootfortemp.
"/users/temp";
619 $this->propal->multidir_output = array($this->entity => $rootfordata.
"/propale");
620 $this->propal->multidir_temp = array($this->entity => $rootfortemp.
"/propale/temp");
622 $this->propal->dir_output = $rootfordata.
"/propale";
623 $this->propal->dir_temp = $rootfortemp.
"/propale/temp";
626 $this->medias->multidir_output = array($this->entity => $rootfordata.
"/medias");
627 $this->medias->multidir_temp = array($this->entity => $rootfortemp.
"/medias/temp");
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";
637 $this->fournisseur->commande->dir_temp = $rootfortemp.
"/fournisseur/commande/temp";
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";
643 $this->fournisseur->facture->dir_temp = $rootfortemp.
"/fournisseur/facture/temp";
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";
649 $this->supplier_proposal->dir_temp = $rootfortemp.
"/supplier_proposal/temp";
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";
655 $this->fournisseur->payment->dir_temp = $rootfortemp.
"/fournisseur/payment/temp";
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";
664 $this->supplier_order->dir_temp = $rootfortemp.
"/fournisseur/commande/temp";
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";
671 $this->supplier_invoice->dir_temp = $rootfortemp.
"/fournisseur/facture/temp";
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";
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");
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";
692 $this->productbatch->multidir_output = array($this->entity => $rootfordata.
"/productlot");
693 $this->productbatch->multidir_temp = array($this->entity => $rootfortemp.
"/productlot/temp");
696 $this->contrat->multidir_output = array($this->entity => $rootfordata.
"/contract");
697 $this->contrat->multidir_temp = array($this->entity => $rootfortemp.
"/contract/temp");
699 $this->contrat->dir_output = $rootfordata.
"/contract";
700 $this->contrat->dir_temp = $rootfortemp.
"/contract/temp";
703 $this->bank->multidir_output = array($this->entity => $rootfordata.
"/bank");
704 $this->bank->multidir_temp = array($this->entity => $rootfortemp.
"/bank/temp");
706 $this->bank->dir_output = $rootfordata.
"/bank";
707 $this->bank->dir_temp = $rootfortemp.
"/bank/temp";
711 $this->global->MAIN_MAIL_USE_MULTI_PART = 1;
714 if (empty($this->global->SOCIETE_CODECLIENT_ADDON)) {
715 $this->global->SOCIETE_CODECLIENT_ADDON =
"mod_codeclient_leopard";
717 if (empty($this->global->SOCIETE_CODECOMPTA_ADDON)) {
718 $this->global->SOCIETE_CODECOMPTA_ADDON =
"mod_codecompta_panicum";
721 if (empty($this->global->CHEQUERECEIPTS_ADDON)) {
722 $this->global->CHEQUERECEIPTS_ADDON =
'mod_chequereceipt_mint';
724 if (empty($this->global->TICKET_ADDON)) {
725 $this->global->TICKET_ADDON =
'mod_ticket_simple';
729 if (empty($this->global->USER_PASSWORD_GENERATED)) {
730 $this->global->USER_PASSWORD_GENERATED =
'standard';
732 if (empty($this->global->MAIN_UMASK)) {
733 $this->global->MAIN_UMASK =
'0660';
736 $tmpumask = (octdec($this->global->MAIN_UMASK) & 0666);
737 $tmpumask = decoct($tmpumask);
738 if (!preg_match(
'/^0/', $tmpumask)) {
739 $tmpumask =
'0'.$tmpumask;
741 if (empty($tmpumask) || $tmpumask ===
'0') {
744 $this->global->MAIN_UMASK = $tmpumask;
748 $this->use_javascript_ajax = 1;
749 if (isset($this->global->MAIN_DISABLE_JAVASCRIPT)) {
750 $this->use_javascript_ajax = !$this->global->MAIN_DISABLE_JAVASCRIPT;
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);
760 if (isModEnabled(
'productbatch')) {
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;
767 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE)) {
768 $this->global->STOCK_CALCULATE_ON_SHIPMENT = 1;
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;
775 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION)) {
776 $this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE = 1;
778 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
779 $this->global->STOCK_CALCULATE_ON_RECEPTION = 1;
784 if (!isset($this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT)) {
785 $this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT = 1;
789 if (empty($this->global->MAIN_MONNAIE)) {
790 $this->global->MAIN_MONNAIE =
'EUR';
792 $this->currency = $this->global->MAIN_MONNAIE;
794 if (empty($this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY)) {
795 $this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY = 30;
799 if (empty($this->global->ACCOUNTING_MODE)) {
800 $this->global->ACCOUNTING_MODE =
'RECETTES-DEPENSES';
803 if (!isset($this->global->MAIN_ENABLE_AJAX_TOOLTIP)) {
804 $this->global->MAIN_ENABLE_AJAX_TOOLTIP = 0;
808 if (!isset($this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS)) {
809 $this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS = 1;
813 if (!isset($this->global->PROJECT_BILL_TIME_SPENT)) {
814 $this->global->PROJECT_BILL_TIME_SPENT = 1;
818 if (!isset($this->global->MAIN_HTML_TITLE)) {
819 $this->global->MAIN_HTML_TITLE =
'thirdpartynameonly,contactnameonly,projectnameonly';
823 if (empty($this->global->MAIN_SIZE_LISTE_LIMIT)) {
824 $this->global->MAIN_SIZE_LISTE_LIMIT = 15;
826 $this->liste_limit = $this->global->MAIN_SIZE_LISTE_LIMIT;
829 if (!isset($this->global->PRODUIT_LIMIT_SIZE)) {
830 $this->global->PRODUIT_LIMIT_SIZE = 1000;
832 $this->product->limit_size = $this->global->PRODUIT_LIMIT_SIZE;
835 $this->global->PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE = (isset($this->global->PRODUIT_DESC_IN_FORM) ? $this->global->PRODUIT_DESC_IN_FORM : 0);
838 if (empty($this->global->MAIN_THEME)) {
839 $this->global->MAIN_THEME =
"eldy";
841 if (!empty($this->global->MAIN_FORCETHEME)) {
842 $this->global->MAIN_THEME = $this->global->MAIN_FORCETHEME;
844 $this->theme = $this->global->MAIN_THEME;
845 $this->css =
"/theme/".$this->theme.
"/style.css.php";
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;
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;
861 if (!isset($this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP)) {
862 $this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP = 1;
865 if (!isset($this->global->MAIN_FIX_FOR_BUGGED_MTA)) {
866 $this->global->MAIN_FIX_FOR_BUGGED_MTA = 1;
870 $this->format_date_short =
"%d/%m/%Y";
871 $this->format_date_short_java =
"dd/MM/yyyy";
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";
882 if (!isset($this->global->MAIN_DURATION_OF_WORKDAY)) {
883 $this->global->MAIN_DURATION_OF_WORKDAY = 86400;
887 if (!isset($this->global->MAIN_MAX_DECIMALS_UNIT)) {
888 $this->global->MAIN_MAX_DECIMALS_UNIT = 5;
890 if (!isset($this->global->MAIN_MAX_DECIMALS_TOT)) {
891 $this->global->MAIN_MAX_DECIMALS_TOT = 2;
893 if (!isset($this->global->MAIN_MAX_DECIMALS_SHOWN)) {
894 $this->global->MAIN_MAX_DECIMALS_SHOWN = 8;
898 if (!isset($this->global->MAIN_PDF_DASH_BETWEEN_LINES)) {
899 $this->global->MAIN_PDF_DASH_BETWEEN_LINES = 1;
901 if (!isset($this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT)) {
902 $this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT = 1;
904 if (!isset($this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING)) {
905 $this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING = 1;
912 if (!isset($this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN)) {
913 $this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN =
'*';
917 if (!isset($this->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) {
918 $this->global->MAIN_USE_ZIPTOWN_DICTIONNARY = 0;
922 if (!isset($this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE)) {
923 $this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE = 1;
927 if (!isset($this->global->MAIN_SHOW_STATE_CODE)) {
928 $this->global->MAIN_SHOW_STATE_CODE = 1;
932 if (!isset($this->global->MULTICURRENCY_USE_ORIGIN_TX)) {
933 $this->global->MULTICURRENCY_USE_ORIGIN_TX = 1;
937 if (!isset($this->global->USE_STRICT_CSV_RULES)) {
938 $this->global->USE_STRICT_CSV_RULES = 2;
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;
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';
950 if (!empty($this->modules_parts[
'moduleforexternal'])) {
951 foreach ($this->modules_parts[
'moduleforexternal'] as $key => $value) {
952 $this->global->MAIN_MODULES_FOR_EXTERNAL .=
",".$key;
957 if (empty($this->global->MAIN_USE_JQUERY_MULTISELECT) || $this->global->MAIN_USE_JQUERY_MULTISELECT ==
'1') {
958 $this->global->MAIN_USE_JQUERY_MULTISELECT =
'select2';
962 if (empty($this->global->MAIN_USE_CONNECT_TIMEOUT)) {
963 $this->global->MAIN_USE_CONNECT_TIMEOUT = 10;
965 if (empty($this->global->MAIN_USE_RESPONSE_TIMEOUT)) {
966 $this->global->MAIN_USE_RESPONSE_TIMEOUT = 30;
970 if (empty($this->global->TAX_MODE_SELL_PRODUCT)) {
971 $this->global->TAX_MODE_SELL_PRODUCT =
'invoice';
973 if (empty($this->global->TAX_MODE_BUY_PRODUCT)) {
974 $this->global->TAX_MODE_BUY_PRODUCT =
'invoice';
976 if (empty($this->global->TAX_MODE_SELL_SERVICE)) {
977 $this->global->TAX_MODE_SELL_SERVICE =
'payment';
979 if (empty($this->global->TAX_MODE_BUY_SERVICE)) {
980 $this->global->TAX_MODE_BUY_SERVICE =
'payment';
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;
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;
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);
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;
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;
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;
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;
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;
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;
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;
1040 if (!empty($this->global->PRODUIT_MULTIPRICES) && empty($this->global->PRODUIT_MULTIPRICES_LIMIT)) {
1041 $this->global->PRODUIT_MULTIPRICES_LIMIT = 5;
1044 if (!isset($this->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
1045 $this->global->MAIN_CHECKBOX_LEFT_COLUMN = 1;
1049 if (!empty($this->global->MAIN_HIDE_TOP_MENU)) {
1050 $this->dol_hide_topmenu = $this->global->MAIN_HIDE_TOP_MENU;
1052 if (!empty($this->global->MAIN_HIDE_LEFT_MENU)) {
1053 $this->dol_hide_leftmenu = $this->global->MAIN_HIDE_LEFT_MENU;
1056 if (empty($this->global->MAIN_SIZE_SHORTLIST_LIMIT)) {
1057 $this->global->MAIN_SIZE_SHORTLIST_LIMIT = 3;
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';
1065 if (!isset($this->global->MAIN_JS_GRAPH)) {
1066 $this->global->MAIN_JS_GRAPH =
'chart';
1069 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_SRV)) {
1070 $this->global->MAIN_MODULE_DOLISTORE_API_SRV =
'https://www.dolistore.com';
1072 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_KEY)) {
1073 $this->global->MAIN_MODULE_DOLISTORE_API_KEY =
'dolistorecatalogpublickey1234567';
1077 if (!isset($this->global->MAIN_SECURITY_CSRF_WITH_TOKEN)) {
1081 $this->global->MAIN_SECURITY_CSRF_WITH_TOKEN = 2;
1085 if (!isset($this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA)) {
1086 $this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA = 1;
1089 if (!isset($this->global->MAIL_SMTP_USE_FROM_FOR_HELO)) {
1090 $this->global->MAIL_SMTP_USE_FROM_FOR_HELO = 2;
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');
1097 if (defined(
'MAIN_ANTIVIRUS_PARAM')) {
1098 $this->global->MAIN_ANTIVIRUS_PARAM = constant(
'MAIN_ANTIVIRUS_PARAM');
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;
1111 if (!empty($this->global->LDAP_MEMBER_ACTIVE) && $this->global->LDAP_MEMBER_ACTIVE ==
'ldap2dolibarr') {
1112 $this->global->LDAP_MEMBER_ACTIVE = 2;
1115 if (!empty($this->global->LDAP_MEMBER_TYPE_ACTIVE) && $this->global->LDAP_MEMBER_TYPE_ACTIVE ==
'ldap2dolibarr') {
1116 $this->global->LDAP_MEMBER_TYPE_ACTIVE = 2;
1119 if (!empty($this->global->MAIN_TZUSERINPUTKEY)) {
1120 $this->tzuserinputkey = $this->global->MAIN_TZUSERINPUTKEY;
1123 if (!empty($this->global->PRODUIT_AUTOFILL_DESC)) {
1124 $this->global->MAIN_NO_CONCAT_DESCRIPTION = 1;
1126 unset($this->global->MAIN_NO_CONCAT_DESCRIPTION);
1133 if (isset($this->product)) {
1135 $this->produit = $this->product;
1138 if (isset($this->facture)) {
1142 if (isset($this->commande)) {
1146 if (isset($this->contrat)) {
1150 if (isset($this->categorie)) {
1151 $this->category = $this->categorie;
1154 if (isset($this->projet) && !isset($this->project)) {
1158 if (isset($this->adherent) && !isset($this->member)) {
1163 if (!defined(
'NOREQUIREMC') && isModEnabled(
'multicompany')) {
1164 if (is_object($mc)) {
1165 $mc->setValues($this);
1169 if (isModEnabled(
'syslog')) {
1171 if (!empty($this->global->SYSLOG_HANDLERS)) {
1172 $handlers = json_decode($this->global->SYSLOG_HANDLERS);
1174 $handlers = array();
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']);
1182 foreach ($dirsyslogs as $reldir) {
1185 if (is_dir($newdir)) {
1186 $file = $newdir.$handler.
'.php';
1187 if (file_exists($file)) {
1188 $handler_file_found = $file;
1194 if (empty($handler_file_found)) {
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');
1206 if (empty($this->loghandlers[$handler])) {
1207 $this->loghandlers[$handler] = $loghandlerinstance;
1214 if (!empty($this->file->mailing_limit_sendbyweb)) {
1215 $this->global->MAILING_LIMIT_SENDBYWEB = $this->file->mailing_limit_sendbyweb;
1217 if (empty($this->global->MAILING_LIMIT_SENDBYWEB)) {
1218 $this->global->MAILING_LIMIT_SENDBYWEB = 25;
1220 if (!empty($this->file->mailing_limit_sendbycli)) {
1221 $this->global->MAILING_LIMIT_SENDBYCLI = $this->file->mailing_limit_sendbycli;
1223 if (!empty($this->file->mailing_limit_sendbyday)) {
1224 $this->global->MAILING_LIMIT_SENDBYDAY = $this->file->mailing_limit_sendbyday;