494 if (!empty($this->modules)) {
495 foreach ($this->modules as $m) {
496 if (isset($this->$m)) {
513 $this->fournisseur =
new stdClass();
526 $this->notification =
new stdClass();
527 $this->expensereport =
new stdClass();
528 $this->productbatch =
new stdClass();
532 $this->cache = array();
533 $this->modules = array();
534 $this->modules_parts = array(
538 'triggers' => array(),
540 'substitutions' => array(),
545 'barcode' => array(),
547 'societe' => array(),
552 'websitetemplates' => array(),
555 if (!is_null($db) && is_object($db)) {
556 include_once DOL_DOCUMENT_ROOT.
'/core/lib/security.lib.php';
559 $sql =
"SELECT ".$db->decrypt(
'name').
" as name,";
560 $sql .=
" ".$db->decrypt(
'value').
" as value, entity";
561 $sql .=
" FROM ".$db->prefix().
"const";
562 $sql .=
" WHERE entity IN (0,".$this->entity.
")";
563 $sql .=
" ORDER BY entity";
565 $resql = $db->query($sql);
568 $numr = $db->num_rows($resql);
570 $objp = $db->fetch_object($resql);
572 $value = $objp->value;
575 if (isset($_SERVER[
'DOLIBARR_'.$key])) {
576 $value = $_SERVER[
'DOLIBARR_'.$key];
577 } elseif (isset($_ENV[
'DOLIBARR_'.$key])) {
578 $value = $_ENV[
'DOLIBARR_'.$key];
583 if ($value && strpos($key,
'MAIN_MODULE_') === 0) {
586 if (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)_TABS_/i', $key)) {
588 $params = explode(
':', $value, 2);
589 if (!is_array($this->modules_parts[$partname])) {
590 $this->modules_parts[$partname] = array();
592 $this->modules_parts[$partname][$params[0]][] = $value;
593 } elseif (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)_([A-Z]+)$/i', $key, $reg)) {
600 $modulename = strtolower($reg[1]);
601 $partname = strtolower($reg[2]);
602 if (!array_key_exists($partname, $this->modules_parts) || !is_array($this->modules_parts[$partname])) {
603 $this->modules_parts[$partname] = array();
607 $arrValue = json_decode($value,
true);
610 if (is_array($arrValue)) {
611 $newvalue = $arrValue;
612 } elseif (in_array($partname, array(
'login',
'menus',
'substitutions',
'triggers',
'tpl'))) {
613 $newvalue =
'/'.$modulename.
'/core/'.$partname.
'/';
614 } elseif (in_array($partname, array(
'models',
'theme',
'websitetemplates'))) {
615 $newvalue =
'/'.$modulename.
'/';
616 } elseif (in_array($partname, array(
'captcha'))) {
617 $newvalue =
'/'.$modulename.
'/core/modules/security/'.$partname.
'/';
618 } elseif ($value == 1) {
619 $newvalue =
'/'.$modulename.
'/core/modules/'.$partname.
'/';
624 if (!empty($newvalue)) {
626 $this->modules_parts[$partname] = array_merge($this->modules_parts[$partname], array($modulename => $newvalue));
628 } elseif (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)$/i', $key, $reg)) {
630 $modulename = strtolower($reg[1]);
631 if ($modulename ==
'propale') {
632 $modulename =
'propal';
634 if ($modulename ==
'supplierproposal') {
635 $modulename =
'supplier_proposal';
637 if ($modulename ==
'supplierorder') {
638 $modulename =
'supplier_order';
640 if ($modulename ==
'supplierinvoice') {
641 $modulename =
'supplier_invoice';
643 $this->modules[$modulename] = $modulename;
647 if (!isset($this->$modulename) || !is_object($this->$modulename)) {
648 $this->$modulename =
new stdClass();
650 $this->$modulename->enabled =
true;
675 if (!empty($this->global->LOCAL_CONSTS_FILES)) {
676 $filesList = explode(
":", $this->global->LOCAL_CONSTS_FILES);
677 foreach ($filesList as $file) {
689 if (!empty($this->global->MAIN_SERVER_TZ) && $this->global->MAIN_SERVER_TZ !=
'auto') {
691 date_default_timezone_set($this->global->MAIN_SERVER_TZ);
693 dol_syslog(
"Error: Bad value for parameter MAIN_SERVER_TZ=".$this->global->MAIN_SERVER_TZ, LOG_ERR);
700 if (!defined(
'NOREQUIREMC') &&
isModEnabled(
'multicompany')) {
701 $ret = @
dol_include_once(
'/multicompany/class/actions_multicompany.class.php');
702 if ($ret && class_exists(
'ActionsMulticompany')) {
703 $mc =
new ActionsMulticompany($db);
708 if (empty($this->global->MAIN_MENU_STANDARD)) {
709 $this->global->MAIN_MENU_STANDARD =
"eldy_menu.php";
711 if (empty($this->global->MAIN_MENUFRONT_STANDARD)) {
712 $this->global->MAIN_MENUFRONT_STANDARD =
"eldy_menu.php";
714 if (empty($this->global->MAIN_MENU_SMARTPHONE)) {
715 $this->global->MAIN_MENU_SMARTPHONE =
"eldy_menu.php";
717 if (empty($this->global->MAIN_MENUFRONT_SMARTPHONE)) {
718 $this->global->MAIN_MENUFRONT_SMARTPHONE =
"eldy_menu.php";
720 if (!isset($this->global->FACTURE_TVAOPTION)) {
721 $this->global->FACTURE_TVAOPTION = 1;
728 if (empty($this->global->LDAP_FIELD_FULLNAME)) {
729 $this->global->LDAP_FIELD_FULLNAME =
'';
731 if (!isset($this->global->LDAP_KEY_USERS)) {
732 $this->global->LDAP_KEY_USERS = $this->global->LDAP_FIELD_FULLNAME;
734 if (!isset($this->global->LDAP_KEY_GROUPS)) {
735 $this->global->LDAP_KEY_GROUPS = $this->global->LDAP_FIELD_FULLNAME;
737 if (!isset($this->global->LDAP_KEY_CONTACTS)) {
738 $this->global->LDAP_KEY_CONTACTS = $this->global->LDAP_FIELD_FULLNAME;
740 if (!isset($this->global->LDAP_KEY_MEMBERS)) {
741 $this->global->LDAP_KEY_MEMBERS = $this->global->LDAP_FIELD_FULLNAME;
743 if (!isset($this->global->LDAP_KEY_MEMBERS_TYPES)) {
744 $this->global->LDAP_KEY_MEMBERS_TYPES = $this->global->LDAP_FIELD_FULLNAME;
748 if (empty($this->global->MAIN_LANG_DEFAULT)) {
749 $this->global->MAIN_LANG_DEFAULT =
"en_US";
752 $rootfordata = DOL_DATA_ROOT;
753 $rootforuser = DOL_DATA_ROOT;
755 if (
isModEnabled(
'multicompany') && !empty($this->entity) && $this->entity > 1) {
756 $rootfordata .=
'/'.$this->entity;
759 $rootfortemp = empty($this->global->MAIN_TEMP_DIR) ? $rootfordata : $this->global->MAIN_TEMP_DIR;
762 foreach ($this->modules as $module) {
764 $dirformodule = $module;
766 if ($dirformodule ==
'banque') {
767 $dirformodule =
'bank';
772 $this->$dirformodule->multidir_output = array($this->entity => $rootfordata.
"/".$dirformodule);
773 $this->$dirformodule->multidir_temp = array($this->entity => $rootfortemp.
"/".$dirformodule.
"/temp");
775 $this->$dirformodule->dir_output = $rootfordata.
"/".$dirformodule;
776 $this->$dirformodule->dir_temp = $rootfortemp.
"/".$dirformodule.
"/temp";
780 if (!empty($this->modules_parts[
'dir'])) {
781 foreach ($this->modules_parts[
'dir'] as $module => $dirs) {
782 if (!empty($this->$module->enabled)) {
783 foreach ($dirs as $type => $name) {
784 $multidirname =
'multidir_'.$type;
785 $dirname =
'dir_'.$type;
787 if ($type !=
'temp') {
789 $this->$module->$multidirname = array($this->entity => $rootfordata.
"/".$name);
792 $this->$module->$dirname = $rootfordata.
"/".$name;
795 $this->$module->$multidirname = array($this->entity => $rootfortemp.
"/".$name.
"/temp");
798 $this->$module->$dirname = $rootfortemp.
"/".$name.
"/temp";
806 $this->mycompany->multidir_output = array($this->entity => $rootfordata.
"/mycompany");
807 $this->mycompany->multidir_temp = array($this->entity => $rootfortemp.
"/mycompany/temp");
809 $this->mycompany->dir_output = $rootfordata.
"/mycompany";
810 $this->mycompany->dir_temp = $rootfortemp.
"/mycompany/temp";
813 $this->admin->dir_output = $rootfordata.
'/admin';
814 $this->admin->dir_temp = $rootfortemp.
'/admin/temp';
817 $this->api->dir_output = $rootfordata.
'/api';
818 $this->api->dir_temp = $rootfortemp.
'/api/temp';
821 $this->
user->multidir_output = array($this->entity => $rootfordata.
"/users");
822 $this->
user->multidir_temp = array($this->entity => $rootfortemp.
"/users/temp");
824 $this->
user->dir_output = $rootforuser.
"/users";
825 $this->
user->dir_temp = $rootfortemp.
"/users/temp";
828 $this->propal->multidir_output = array($this->entity => $rootfordata.
"/propale");
829 $this->propal->multidir_temp = array($this->entity => $rootfortemp.
"/propale/temp");
831 $this->propal->dir_output = $rootfordata.
"/propale";
832 $this->propal->dir_temp = $rootfortemp.
"/propale/temp";
835 $this->medias->multidir_output = array($this->entity => $rootfordata.
"/medias");
836 $this->medias->multidir_temp = array($this->entity => $rootfortemp.
"/medias/temp");
842 $this->fournisseur->commande =
new stdClass();
843 $this->fournisseur->commande->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/commande");
844 $this->fournisseur->commande->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/commande/temp");
845 $this->fournisseur->commande->dir_output = $rootfordata.
"/fournisseur/commande";
846 $this->fournisseur->commande->dir_temp = $rootfortemp.
"/fournisseur/commande/temp";
848 $this->fournisseur->facture =
new stdClass();
849 $this->fournisseur->facture->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/facture");
850 $this->fournisseur->facture->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/facture/temp");
851 $this->fournisseur->facture->dir_output = $rootfordata.
"/fournisseur/facture";
852 $this->fournisseur->facture->dir_temp = $rootfortemp.
"/fournisseur/facture/temp";
854 $this->supplier_proposal =
new stdClass();
855 $this->supplier_proposal->multidir_output = array($this->entity => $rootfordata.
"/supplier_proposal");
856 $this->supplier_proposal->multidir_temp = array($this->entity => $rootfortemp.
"/supplier_proposal/temp");
857 $this->supplier_proposal->dir_output = $rootfordata.
"/supplier_proposal";
858 $this->supplier_proposal->dir_temp = $rootfortemp.
"/supplier_proposal/temp";
860 $this->fournisseur->payment =
new stdClass();
861 $this->fournisseur->payment->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/payment");
862 $this->fournisseur->payment->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/payment/temp");
863 $this->fournisseur->payment->dir_output = $rootfordata.
"/fournisseur/payment";
864 $this->fournisseur->payment->dir_temp = $rootfortemp.
"/fournisseur/payment/temp";
868 $this->supplier_order =
new stdClass();
869 $this->supplier_order->enabled = 1;
870 $this->supplier_order->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/commande");
871 $this->supplier_order->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/commande/temp");
872 $this->supplier_order->dir_output = $rootfordata.
"/fournisseur/commande";
873 $this->supplier_order->dir_temp = $rootfortemp.
"/fournisseur/commande/temp";
875 $this->supplier_invoice =
new stdClass();
876 $this->supplier_invoice->enabled = 1;
877 $this->supplier_invoice->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/facture");
878 $this->supplier_invoice->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/facture/temp");
879 $this->supplier_invoice->dir_output = $rootfordata.
"/fournisseur/facture";
880 $this->supplier_invoice->dir_temp = $rootfortemp.
"/fournisseur/facture/temp";
885 $this->compta->payment =
new stdClass();
886 $this->compta->payment->dir_output = $rootfordata.
"/compta/payment";
887 $this->compta->payment->dir_temp = $rootfortemp.
"/compta/payment/temp";
890 $this->product->multidir_output = array($this->entity => $rootfordata.
"/produit");
891 $this->product->multidir_temp = array($this->entity => $rootfortemp.
"/produit/temp");
892 $this->service->multidir_output = array($this->entity => $rootfordata.
"/produit");
893 $this->service->multidir_temp = array($this->entity => $rootfortemp.
"/produit/temp");
895 $this->product->dir_output = $rootfordata.
"/produit";
896 $this->product->dir_temp = $rootfortemp.
"/produit/temp";
897 $this->service->dir_output = $rootfordata.
"/produit";
898 $this->service->dir_temp = $rootfortemp.
"/produit/temp";
901 $this->productbatch->multidir_output = array($this->entity => $rootfordata.
"/productlot");
902 $this->productbatch->multidir_temp = array($this->entity => $rootfortemp.
"/productlot/temp");
905 $this->contrat->multidir_output = array($this->entity => $rootfordata.
"/contract");
906 $this->contrat->multidir_temp = array($this->entity => $rootfortemp.
"/contract/temp");
908 $this->contrat->dir_output = $rootfordata.
"/contract";
909 $this->contrat->dir_temp = $rootfortemp.
"/contract/temp";
913 $this->global->MAIN_MAIL_USE_MULTI_PART = 1;
916 if (empty($this->global->SOCIETE_CODECLIENT_ADDON)) {
917 $this->global->SOCIETE_CODECLIENT_ADDON =
"mod_codeclient_leopard";
919 if (empty($this->global->SOCIETE_CODECOMPTA_ADDON)) {
920 $this->global->SOCIETE_CODECOMPTA_ADDON =
"mod_codecompta_panicum";
923 if (empty($this->global->CHEQUERECEIPTS_ADDON)) {
924 $this->global->CHEQUERECEIPTS_ADDON =
'mod_chequereceipt_mint';
926 if (empty($this->global->TICKET_ADDON)) {
927 $this->global->TICKET_ADDON =
'mod_ticket_simple';
931 if (empty($this->global->USER_PASSWORD_GENERATED)) {
932 $this->global->USER_PASSWORD_GENERATED =
'standard';
934 if (empty($this->global->MAIN_UMASK)) {
935 $this->global->MAIN_UMASK =
'0660';
939 $tmpumask = decoct($tmpumask);
940 if (!preg_match(
'/^0/', $tmpumask)) {
941 $tmpumask =
'0'.$tmpumask;
943 if (empty($tmpumask)) {
946 $this->global->MAIN_UMASK = $tmpumask;
950 $this->use_javascript_ajax = 1;
951 if (isset($this->global->MAIN_DISABLE_JAVASCRIPT)) {
952 $this->use_javascript_ajax = (int) !
getDolGlobalInt(
'MAIN_DISABLE_JAVASCRIPT');
955 if (empty($this->use_javascript_ajax)) {
956 unset($this->global->PRODUIT_USE_SEARCH_TO_SELECT);
957 unset($this->global->COMPANY_USE_SEARCH_TO_SELECT);
958 unset($this->global->CONTACT_USE_SEARCH_TO_SELECT);
959 unset($this->global->PROJECT_USE_SEARCH_TO_SELECT);
964 $this->global->STOCK_CALCULATE_ON_BILL = 0;
965 $this->global->STOCK_CALCULATE_ON_VALIDATE_ORDER = 0;
966 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT)) {
967 $this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE = 1;
969 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE)) {
970 $this->global->STOCK_CALCULATE_ON_SHIPMENT = 1;
972 $this->global->STOCK_CALCULATE_ON_SUPPLIER_BILL = 0;
973 $this->global->STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER = 0;
975 $this->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER = 1;
977 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION)) {
978 $this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE = 1;
980 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
981 $this->global->STOCK_CALCULATE_ON_RECEPTION = 1;
985 if (!isset($this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT)) {
986 $this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT = 1;
990 if (empty($this->global->MAIN_MONNAIE)) {
991 $this->global->MAIN_MONNAIE =
'EUR';
993 $this->currency = $this->global->MAIN_MONNAIE;
995 if (empty($this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY)) {
996 $this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY = 30;
1000 if (empty($this->global->ACCOUNTING_MODE)) {
1001 $this->global->ACCOUNTING_MODE =
'CREANCES-DETTES';
1004 if (!isset($this->global->MAIN_ENABLE_AJAX_TOOLTIP)) {
1005 $this->global->MAIN_ENABLE_AJAX_TOOLTIP = 1;
1007 if (!isset($this->global->THEME_SHOW_BORDER_ON_INPUT)) {
1008 $this->global->THEME_SHOW_BORDER_ON_INPUT = 1;
1010 if (!isset($this->global->THEME_ELDY_BORDER_RADIUS)) {
1011 $this->global->THEME_ELDY_BORDER_RADIUS = 10;
1015 if (!isset($this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS)) {
1016 $this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS = 1;
1020 if (!isset($this->global->PROJECT_BILL_TIME_SPENT)) {
1021 $this->global->PROJECT_BILL_TIME_SPENT = 1;
1025 if (!isset($this->global->MAIN_EMAIL_USE_LAYOUT)) {
1026 $this->global->MAIN_EMAIL_USE_LAYOUT = 1;
1030 if (!isset($this->global->MAIN_HTML_TITLE)) {
1031 $this->global->MAIN_HTML_TITLE =
'thirdpartynameonly,contactnameonly,projectnameonly';
1034 if (!isset($this->global->MAIN_FEATURE_TO_SHOW_TOP_MENU_URL_IN_FRAME)) {
1035 $this->global->MAIN_FEATURE_TO_SHOW_TOP_MENU_URL_IN_FRAME = 1;
1041 if ((
int) $this->liste_limit <= 0) {
1043 $this->liste_limit = getListLimitFromScreenHeight();
1047 if (!isset($this->global->PRODUIT_LIMIT_SIZE)) {
1048 $this->global->PRODUIT_LIMIT_SIZE = 1000;
1052 $this->global->PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE =
getDolGlobalInt(
'PRODUIT_DESC_IN_FORM');
1055 if (empty($this->global->MAIN_THEME)) {
1056 $this->global->MAIN_THEME =
"eldy";
1058 if (!empty($this->global->MAIN_FORCETHEME)) {
1059 $this->global->MAIN_THEME = $this->global->MAIN_FORCETHEME;
1061 $this->theme = $this->global->MAIN_THEME;
1062 $this->css =
"/theme/".$this->theme.
"/style.css.php";
1065 $this->email_from =
"robot@example.com";
1066 if (!empty($this->global->MAIN_MAIL_EMAIL_FROM)) {
1067 $this->email_from = $this->global->MAIN_MAIL_EMAIL_FROM;
1072 $this->notification->email_from = $this->email_from;
1073 if (!empty($this->global->NOTIFICATION_EMAIL_FROM)) {
1074 $this->notification->email_from = $this->global->NOTIFICATION_EMAIL_FROM;
1078 if (!isset($this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP)) {
1079 $this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP = 1;
1082 if (!isset($this->global->MAIN_FIX_FOR_BUGGED_MTA)) {
1083 $this->global->MAIN_FIX_FOR_BUGGED_MTA = 1;
1087 $this->format_date_short =
"%d/%m/%Y";
1088 $this->format_date_short_java =
"dd/MM/yyyy";
1089 $this->format_hour_short =
"%H:%M";
1090 $this->format_hour_sec_short =
"%H:%M:%S";
1091 $this->format_hour_short_duration =
"%H:%M";
1092 $this->format_date_text_short =
"%d %b %Y";
1093 $this->format_date_text =
"%d %B %Y";
1094 $this->format_date_hour_short =
"%d/%m/%Y %H:%M";
1095 $this->format_date_hour_sec_short =
"%d/%m/%Y %H:%M:%S";
1096 $this->format_date_hour_text_short =
"%d %b %Y %H:%M";
1097 $this->format_date_hour_text =
"%d %B %Y %H:%M";
1100 if (!isset($this->global->MAIN_DURATION_OF_WORKDAY)) {
1101 $this->global->MAIN_DURATION_OF_WORKDAY = 86400;
1105 if (!isset($this->global->MAIN_MAX_DECIMALS_UNIT)) {
1106 $this->global->MAIN_MAX_DECIMALS_UNIT = 5;
1108 if (!isset($this->global->MAIN_MAX_DECIMALS_TOT)) {
1109 $this->global->MAIN_MAX_DECIMALS_TOT = 2;
1111 if (!isset($this->global->MAIN_MAX_DECIMALS_SHOWN)) {
1112 $this->global->MAIN_MAX_DECIMALS_SHOWN = 8;
1116 if (!isset($this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY)) {
1117 $this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY = 1;
1119 if (!isset($this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY)) {
1120 $this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY = 1;
1124 if (!isset($this->global->MAIN_PDF_DASH_BETWEEN_LINES)) {
1125 $this->global->MAIN_PDF_DASH_BETWEEN_LINES = 1;
1127 if (!isset($this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT)) {
1128 $this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT = 1;
1130 if (!isset($this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING)) {
1131 $this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING = 1;
1138 if (!isset($this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN)) {
1139 $this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN =
'*';
1143 if (!isset($this->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) {
1144 $this->global->MAIN_USE_ZIPTOWN_DICTIONNARY = 0;
1148 if (!isset($this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE)) {
1149 $this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE = 1;
1153 if (!isset($this->global->MAIN_SHOW_STATE_CODE)) {
1154 $this->global->MAIN_SHOW_STATE_CODE = 1;
1158 if (!isset($this->global->MULTICURRENCY_USE_ORIGIN_TX)) {
1159 $this->global->MULTICURRENCY_USE_ORIGIN_TX = 1;
1163 if (!isset($this->global->USE_STRICT_CSV_RULES)) {
1164 $this->global->USE_STRICT_CSV_RULES = 2;
1168 if (!isset($this->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
1169 $this->global->ADHERENT_LOGIN_NOT_REQUIRED = 1;
1173 if (! isset($this->global->MAIN_CREATEFROM_KEEP_LINE_ORIGIN_INFORMATION)) {
1174 $this->global->MAIN_CREATEFROM_KEEP_LINE_ORIGIN_INFORMATION = 1;
1178 if (!isset($this->global->STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION) && !
getDolGlobalString(
'STRIPE_USE_NEW_CHECKOUT')) {
1179 $this->global->STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION = 1;
1183 if (!isset($this->global->MAIN_MODULES_FOR_EXTERNAL)) {
1184 $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';
1186 if (!empty($this->modules_parts[
'moduleforexternal'])) {
1187 foreach ($this->modules_parts[
'moduleforexternal'] as $key => $value) {
1188 $this->global->MAIN_MODULES_FOR_EXTERNAL .=
",".$key;
1194 if (empty($this->global->MAIN_USE_JQUERY_MULTISELECT) || $this->global->MAIN_USE_JQUERY_MULTISELECT ==
'1') {
1195 $this->global->MAIN_USE_JQUERY_MULTISELECT =
'select2';
1199 if (empty($this->global->MAIN_USE_CONNECT_TIMEOUT)) {
1200 $this->global->MAIN_USE_CONNECT_TIMEOUT = 10;
1202 if (empty($this->global->MAIN_USE_RESPONSE_TIMEOUT)) {
1203 $this->global->MAIN_USE_RESPONSE_TIMEOUT = 30;
1207 if (empty($this->global->TAX_MODE_SELL_PRODUCT)) {
1208 $this->global->TAX_MODE_SELL_PRODUCT =
'invoice';
1210 if (empty($this->global->TAX_MODE_BUY_PRODUCT)) {
1211 $this->global->TAX_MODE_BUY_PRODUCT =
'invoice';
1213 if (empty($this->global->TAX_MODE_SELL_SERVICE)) {
1214 $this->global->TAX_MODE_SELL_SERVICE =
'payment';
1216 if (empty($this->global->TAX_MODE_BUY_SERVICE)) {
1217 $this->global->TAX_MODE_BUY_SERVICE =
'payment';
1222 if (isset($this->agenda)) {
1223 $this->warning_delays[
'subscription'] =
getDolGlobalInt(
'MAIN_DELAY_MEMBERS') * 86400;
1224 $this->adherent->subscription =
new stdClass();
1225 $this->adherent->subscription->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_MEMBERS') * 86400;
1227 if (isset($this->agenda)) {
1228 $this->warning_delays[
'agenda'] =
getDolGlobalInt(
'MAIN_DELAY_ACTIONS_TODO', 7) * 86400;
1229 $this->agenda->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_ACTIONS_TODO', 7) * 86400;
1231 if (isset($this->projet)) {
1232 $this->warning_delays[
'project'] = (
getDolGlobalInt(
'MAIN_DELAY_PROJECT_TO_CLOSE', 7) * 86400);
1233 $this->warning_delays[
'task'] = (
getDolGlobalInt(
'MAIN_DELAY_TASKS_TODO', 7) * 86400);
1234 $this->projet->warning_delay = (
getDolGlobalInt(
'MAIN_DELAY_PROJECT_TO_CLOSE', 7) * 86400);
1235 $this->projet->task =
new stdClass();
1236 $this->projet->task->warning_delay = (
getDolGlobalInt(
'MAIN_DELAY_TASKS_TODO', 7) * 86400);
1238 if (isset($this->commande)) {
1239 $this->warning_delays[
'order'] =
getDolGlobalInt(
'MAIN_DELAY_ORDERS_TO_PROCESS', 2) * 86400;
1240 $this->warning_delays[
'purchase_order'] =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS', 7) * 86400;
1241 $this->commande->client =
new stdClass();
1242 $this->commande->fournisseur =
new stdClass();
1243 $this->commande->client->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_ORDERS_TO_PROCESS', 2) * 86400;
1244 $this->commande->fournisseur->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS', 7) * 86400;
1246 if (isset($this->propal)) {
1247 $this->warning_delays[
'proposal_close'] =
getDolGlobalInt(
'MAIN_DELAY_PROPALS_TO_CLOSE') * 86400;
1248 $this->warning_delays[
'proposal_invoice'] =
getDolGlobalInt(
'MAIN_DELAY_PROPALS_TO_BILL') * 86400;
1249 $this->propal->cloture =
new stdClass();
1250 $this->propal->facturation =
new stdClass();
1251 $this->propal->cloture->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_PROPALS_TO_CLOSE') * 86400;
1252 $this->propal->facturation->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_PROPALS_TO_BILL') * 86400;
1255 if (isset($this->supplier_proposal)) {
1256 $this->warning_delays[
'supplier_proposal_close'] =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_PROPALS_TO_CLOSE') * 86400;
1257 $this->warning_delays[
'supplier_proposal_invoice'] =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_PROPALS_TO_BILL') * 86400;
1258 $this->supplier_proposal->cloture =
new stdClass();
1259 $this->supplier_proposal->facturation =
new stdClass();
1260 $this->supplier_proposal->cloture->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_PROPALS_TO_CLOSE') * 86400;
1261 $this->supplier_proposal->facturation->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_PROPALS_TO_BILL') * 86400;
1263 if (isset($this->facture)) {
1264 $this->warning_delays[
'invoice'] =
getDolGlobalInt(
'MAIN_DELAY_CUSTOMER_BILLS_UNPAYED') * 86400;
1265 $this->warning_delays[
'supplier_invoice'] =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_BILLS_TO_PAY') * 86400;
1266 $this->facture->client =
new stdClass();
1267 $this->facture->fournisseur =
new stdClass();
1268 $this->facture->client->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_CUSTOMER_BILLS_UNPAYED') * 86400;
1269 $this->facture->fournisseur->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_BILLS_TO_PAY') * 86400;
1271 if (isset($this->contrat)) {
1272 $this->warning_delays[
'contract_inactive'] =
getDolGlobalInt(
'MAIN_DELAY_NOT_ACTIVATED_SERVICES') * 86400;
1273 $this->warning_delays[
'contract_expired'] =
getDolGlobalInt(
'MAIN_DELAY_RUNNING_SERVICES') * 86400;
1274 $this->contrat->services =
new stdClass();
1275 $this->contrat->services->inactifs =
new stdClass();
1276 $this->contrat->services->expires =
new stdClass();
1277 $this->contrat->services->inactifs->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_NOT_ACTIVATED_SERVICES') * 86400;
1278 $this->contrat->services->expires->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_RUNNING_SERVICES') * 86400;
1281 $this->warning_delays[
'bank_cheque_to_conciliate'] =
getDolGlobalInt(
'MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE') * 86400;
1282 $this->warning_delays[
'bank_cheque_to_be_deposited'] =
getDolGlobalInt(
'MAIN_DELAY_CHEQUES_TO_DEPOSIT') * 86400;
1283 $this->warning_delays[
'bank_direct_debit'] =
getDolGlobalInt(
'MAIN_DELAY_BANK_DIRECT_DEBIT', 15) * 86400;
1284 $this->warning_delays[
'bank_credit_transfer'] =
getDolGlobalInt(
'MAIN_DELAY_BANK_CREDIT_TRANSFER', 15) * 86400;
1285 $this->bank->rappro =
new stdClass();
1286 $this->bank->cheque =
new stdClass();
1287 $this->bank->rappro->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE') * 86400;
1288 $this->bank->cheque->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_CHEQUES_TO_DEPOSIT') * 86400;
1290 if (isset($this->expensereport)) {
1291 $this->warning_delays[
'expensereport_approve'] =
getDolGlobalInt(
'MAIN_DELAY_EXPENSEREPORTS') * 86400;
1292 $this->warning_delays[
'expense_report_payment'] =
getDolGlobalInt(
'MIN_DELAY_EXPENSEREPORTS_TO_PAY') * 86400;
1293 $this->expensereport->approve =
new stdClass();
1294 $this->expensereport->approve->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_EXPENSEREPORTS') * 86400;
1295 $this->expensereport->payment =
new stdClass();
1296 $this->expensereport->payment->warning_delay =
getDolGlobalInt(
'MIN_DELAY_EXPENSEREPORTS_TO_PAY') * 86400;
1298 if (isset($this->holiday)) {
1299 $this->warning_delays[
'holiday_approve'] =
getDolGlobalInt(
'MAIN_DELAY_HOLIDAYS') * 86400;
1300 $this->holiday->approve =
new stdClass();
1301 $this->holiday->approve->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_HOLIDAYS') * 86400;
1303 if (isset($this->mrp)) {
1304 $this->warning_delays[
'mrp'] =
getDolGlobalInt(
'MAIN_DELAY_MRP') * 86400;
1305 $this->mrp->progress =
new stdClass();
1306 $this->mrp->progress->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_MRP') * 86400;
1310 $this->global->PRODUIT_MULTIPRICES_LIMIT = 5;
1313 if (!isset($this->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
1314 $this->global->MAIN_CHECKBOX_LEFT_COLUMN = 1;
1318 if (!isset($this->main_checkbox_left_column)) {
1319 $this->main_checkbox_left_column =
getDolGlobalInt(
"MAIN_CHECKBOX_LEFT_COLUMN");
1323 if (!empty($this->global->MAIN_HIDE_TOP_MENU)) {
1324 $this->dol_hide_topmenu = (int) (
bool)
getDolGlobalInt(
'MAIN_HIDE_TOP_MENU');
1326 if (!empty($this->global->MAIN_HIDE_LEFT_MENU)) {
1327 $this->dol_hide_leftmenu = (int) (
bool)
getDolGlobalInt(
'MAIN_HIDE_LEFT_MENU');
1330 if (empty($this->global->MAIN_SIZE_SHORTLIST_LIMIT)) {
1331 $this->global->MAIN_SIZE_SHORTLIST_LIMIT = 3;
1335 if (empty($this->global->AGENDA_USE_EVENT_TYPE) && (!isset($this->global->AGENDA_DEFAULT_FILTER_TYPE) || $this->global->AGENDA_DEFAULT_FILTER_TYPE ==
'AC_NON_AUTO')) {
1336 $this->global->AGENDA_DEFAULT_FILTER_TYPE =
'0';
1339 if (!isset($this->global->MAIN_JS_GRAPH)) {
1340 $this->global->MAIN_JS_GRAPH =
'chart';
1343 if (!isset($this->global->THEME_ELDY_USEBORDERONTABLE)) {
1344 $this->global->THEME_ELDY_USEBORDERONTABLE = 1;
1347 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_SRV)) {
1348 $this->global->MAIN_MODULE_DOLISTORE_API_SRV =
'https://www.dolistore.com/api/';
1350 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_KEY)) {
1351 $this->global->MAIN_MODULE_DOLISTORE_API_KEY =
'dolistorepublicapi';
1355 if (!isset($this->global->MAIN_SECURITY_CSRF_WITH_TOKEN)) {
1359 $this->global->MAIN_SECURITY_CSRF_WITH_TOKEN = (defined(
'MAIN_SECURITY_CSRF_WITH_TOKEN') ? constant(
'MAIN_SECURITY_CSRF_WITH_TOKEN') : 3);
1363 if (!isset($this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA)) {
1364 $this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA = 1;
1367 if (!isset($this->global->MAIL_SMTP_USE_FROM_FOR_HELO)) {
1368 $this->global->MAIL_SMTP_USE_FROM_FOR_HELO = 2;
1371 if (!empty($this->use_javascript_ajax) &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') >= 1) {
1372 $this->global->EMAILING_USE_ADVANCED_SELECTOR = 1;
1376 if (!defined(
'MAIN_ANTIVIRUS_BYPASS_COMMAND_AND_PARAM')) {
1377 if (defined(
'MAIN_ANTIVIRUS_UPLOAD_ON')) {
1378 $this->global->MAIN_ANTIVIRUS_UPLOAD_ON = constant(
'MAIN_ANTIVIRUS_UPLOAD_ON');
1380 if (defined(
'MAIN_ANTIVIRUS_COMMAND')) {
1381 $this->global->MAIN_ANTIVIRUS_COMMAND = constant(
'MAIN_ANTIVIRUS_COMMAND');
1383 if (defined(
'MAIN_ANTIVIRUS_PARAM')) {
1384 $this->global->MAIN_ANTIVIRUS_PARAM = constant(
'MAIN_ANTIVIRUS_PARAM');
1388 if (!isset($this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML)) {
1389 $this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML = 1;
1391 if (!isset($this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML_TIDY) && extension_loaded(
'tidy') && class_exists(
"tidy")) {
1392 $this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML_TIDY = 1;
1397 $this->global->PRODUCT_USE_CUSTOMER_PACKAGING = 0;
1402 if (!empty($this->global->LDAP_SYNCHRO_ACTIVE)) {
1403 if ($this->global->LDAP_SYNCHRO_ACTIVE ==
'dolibarr2ldap') {
1404 $this->global->LDAP_SYNCHRO_ACTIVE = 1;
1405 } elseif ($this->global->LDAP_SYNCHRO_ACTIVE ==
'ldap2dolibarr') {
1406 $this->global->LDAP_SYNCHRO_ACTIVE = 2;
1411 $this->global->LDAP_MEMBER_ACTIVE = 2;
1415 $this->global->LDAP_MEMBER_TYPE_ACTIVE = 2;
1418 if (!empty($this->global->MAIN_TZUSERINPUTKEY)) {
1419 $this->tzuserinputkey = $this->global->MAIN_TZUSERINPUTKEY;
1425 if (isset($this->product)) {
1427 $this->produit = $this->product;
1430 if (isset($this->facture)) {
1431 $this->invoice = $this->facture;
1434 if (isset($this->commande)) {
1435 $this->order = $this->commande;
1438 if (isset($this->contrat)) {
1439 $this->contract = $this->contrat;
1442 if (isset($this->categorie)) {
1443 $this->category = $this->categorie;
1446 if (isset($this->projet) && !isset($this->project)) {
1447 $this->project = $this->projet;
1450 if (isset($this->adherent) && !isset($this->member)) {
1451 $this->member = $this->adherent;
1455 if (!defined(
'NOREQUIREMC') &&
isModEnabled(
'multicompany')) {
1456 if (is_object($mc)) {
1457 $mc->setValues($this);
1463 if (!empty($this->global->SYSLOG_HANDLERS)) {
1464 $handlers = json_decode($this->global->SYSLOG_HANDLERS);
1466 $handlers = array();
1468 foreach ($handlers as $handler) {
1469 $handler_file_found =
'';
1470 $dirsyslogs = array(
'/core/modules/syslog/');
1471 if (!empty($this->modules_parts[
'syslog']) && is_array($this->modules_parts[
'syslog'])) {
1472 $dirsyslogs = array_merge($dirsyslogs, $this->modules_parts[
'syslog']);
1474 foreach ($dirsyslogs as $reldir) {
1477 if (is_dir($newdir)) {
1478 $file = $newdir.$handler.
'.php';
1479 if (file_exists($file)) {
1480 $handler_file_found = $file;
1486 if (empty($handler_file_found)) {
1492 require_once $handler_file_found;
1493 $loghandlerinstance =
new $handler();
1494 if (!$loghandlerinstance instanceof
LogHandler) {
1495 throw new Exception(
'Log handler does not extend LogHandler');
1498 if (empty($this->loghandlers[$handler])) {
1499 $this->loghandlers[$handler] = $loghandlerinstance;
1506 if (!empty($this->file->mailing_limit_sendbyweb)) {
1507 $this->global->MAILING_LIMIT_SENDBYWEB = $this->file->mailing_limit_sendbyweb;
1509 if (empty($this->global->MAILING_LIMIT_SENDBYWEB)) {
1510 $this->global->MAILING_LIMIT_SENDBYWEB = 25;
1512 if (!empty($this->file->mailing_limit_sendbycli)) {
1513 $this->global->MAILING_LIMIT_SENDBYCLI = $this->file->mailing_limit_sendbycli;
1515 if (!empty($this->file->mailing_limit_sendbyday)) {
1516 $this->global->MAILING_LIMIT_SENDBYDAY = $this->file->mailing_limit_sendbyday;