485 if (!empty($this->modules)) {
486 foreach ($this->modules as $m) {
487 if (isset($this->$m)) {
504 $this->fournisseur =
new stdClass();
517 $this->notification =
new stdClass();
518 $this->expensereport =
new stdClass();
519 $this->productbatch =
new stdClass();
523 $this->cache = array();
524 $this->modules = array();
525 $this->modules_parts = array(
529 'triggers' => array(),
531 'substitutions' => array(),
536 'barcode' => array(),
538 'societe' => array(),
543 'websitetemplates' => array(),
546 if (!is_null($db) && is_object($db)) {
547 include_once DOL_DOCUMENT_ROOT.
'/core/lib/security.lib.php';
550 $sql =
"SELECT ".$db->decrypt(
'name').
" as name,";
551 $sql .=
" ".$db->decrypt(
'value').
" as value, entity";
552 $sql .=
" FROM ".$db->prefix().
"const";
553 $sql .=
" WHERE entity IN (0,".$this->entity.
")";
554 $sql .=
" ORDER BY entity";
556 $resql = $db->query($sql);
559 $numr = $db->num_rows($resql);
561 $objp = $db->fetch_object($resql);
563 $value = $objp->value;
566 if (isset($_SERVER[
'DOLIBARR_'.$key])) {
567 $value = $_SERVER[
'DOLIBARR_'.$key];
568 } elseif (isset($_ENV[
'DOLIBARR_'.$key])) {
569 $value = $_ENV[
'DOLIBARR_'.$key];
574 if ($value && strpos($key,
'MAIN_MODULE_') === 0) {
577 if (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)_TABS_/i', $key)) {
579 $params = explode(
':', $value, 2);
580 if (!is_array($this->modules_parts[$partname])) {
581 $this->modules_parts[$partname] = array();
583 $this->modules_parts[$partname][$params[0]][] = $value;
584 } elseif (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)_([A-Z]+)$/i', $key, $reg)) {
591 $modulename = strtolower($reg[1]);
592 $partname = strtolower($reg[2]);
593 if (!array_key_exists($partname, $this->modules_parts) || !is_array($this->modules_parts[$partname])) {
594 $this->modules_parts[$partname] = array();
598 $arrValue = json_decode($value,
true);
601 if (is_array($arrValue)) {
602 $newvalue = $arrValue;
603 } elseif (in_array($partname, array(
'login',
'menus',
'substitutions',
'triggers',
'tpl'))) {
604 $newvalue =
'/'.$modulename.
'/core/'.$partname.
'/';
605 } elseif (in_array($partname, array(
'models',
'theme',
'websitetemplates'))) {
606 $newvalue =
'/'.$modulename.
'/';
607 } elseif (in_array($partname, array(
'captcha'))) {
608 $newvalue =
'/'.$modulename.
'/core/modules/security/'.$partname.
'/';
609 } elseif ($value == 1) {
610 $newvalue =
'/'.$modulename.
'/core/modules/'.$partname.
'/';
615 if (!empty($newvalue)) {
617 $this->modules_parts[$partname] = array_merge($this->modules_parts[$partname], array($modulename => $newvalue));
619 } elseif (preg_match(
'/^MAIN_MODULE_([0-9A-Z_]+)$/i', $key, $reg)) {
621 $modulename = strtolower($reg[1]);
622 if ($modulename ==
'propale') {
623 $modulename =
'propal';
625 if ($modulename ==
'supplierproposal') {
626 $modulename =
'supplier_proposal';
628 $this->modules[$modulename] = $modulename;
632 if (!isset($this->$modulename) || !is_object($this->$modulename)) {
633 $this->$modulename =
new stdClass();
635 $this->$modulename->enabled =
true;
660 if (!empty($this->global->LOCAL_CONSTS_FILES)) {
661 $filesList = explode(
":", $this->global->LOCAL_CONSTS_FILES);
662 foreach ($filesList as $file) {
674 if (!empty($this->global->MAIN_SERVER_TZ) && $this->global->MAIN_SERVER_TZ !=
'auto') {
676 date_default_timezone_set($this->global->MAIN_SERVER_TZ);
678 dol_syslog(
"Error: Bad value for parameter MAIN_SERVER_TZ=".$this->global->MAIN_SERVER_TZ, LOG_ERR);
685 if (!defined(
'NOREQUIREMC') &&
isModEnabled(
'multicompany')) {
686 $ret = @
dol_include_once(
'/multicompany/class/actions_multicompany.class.php');
687 if ($ret && class_exists(
'ActionsMulticompany')) {
688 $mc =
new ActionsMulticompany($db);
693 if (empty($this->global->MAIN_MENU_STANDARD)) {
694 $this->global->MAIN_MENU_STANDARD =
"eldy_menu.php";
696 if (empty($this->global->MAIN_MENUFRONT_STANDARD)) {
697 $this->global->MAIN_MENUFRONT_STANDARD =
"eldy_menu.php";
699 if (empty($this->global->MAIN_MENU_SMARTPHONE)) {
700 $this->global->MAIN_MENU_SMARTPHONE =
"eldy_menu.php";
702 if (empty($this->global->MAIN_MENUFRONT_SMARTPHONE)) {
703 $this->global->MAIN_MENUFRONT_SMARTPHONE =
"eldy_menu.php";
705 if (!isset($this->global->FACTURE_TVAOPTION)) {
706 $this->global->FACTURE_TVAOPTION = 1;
713 if (empty($this->global->LDAP_FIELD_FULLNAME)) {
714 $this->global->LDAP_FIELD_FULLNAME =
'';
716 if (!isset($this->global->LDAP_KEY_USERS)) {
717 $this->global->LDAP_KEY_USERS = $this->global->LDAP_FIELD_FULLNAME;
719 if (!isset($this->global->LDAP_KEY_GROUPS)) {
720 $this->global->LDAP_KEY_GROUPS = $this->global->LDAP_FIELD_FULLNAME;
722 if (!isset($this->global->LDAP_KEY_CONTACTS)) {
723 $this->global->LDAP_KEY_CONTACTS = $this->global->LDAP_FIELD_FULLNAME;
725 if (!isset($this->global->LDAP_KEY_MEMBERS)) {
726 $this->global->LDAP_KEY_MEMBERS = $this->global->LDAP_FIELD_FULLNAME;
728 if (!isset($this->global->LDAP_KEY_MEMBERS_TYPES)) {
729 $this->global->LDAP_KEY_MEMBERS_TYPES = $this->global->LDAP_FIELD_FULLNAME;
733 if (empty($this->global->MAIN_LANG_DEFAULT)) {
734 $this->global->MAIN_LANG_DEFAULT =
"en_US";
737 $rootfordata = DOL_DATA_ROOT;
738 $rootforuser = DOL_DATA_ROOT;
740 if (
isModEnabled(
'multicompany') && !empty($this->entity) && $this->entity > 1) {
741 $rootfordata .=
'/'.$this->entity;
744 $rootfortemp = empty($this->global->MAIN_TEMP_DIR) ? $rootfordata : $this->global->MAIN_TEMP_DIR;
747 foreach ($this->modules as $module) {
750 $this->$module->multidir_output = array($this->entity => $rootfordata.
"/".$module);
751 $this->$module->multidir_temp = array($this->entity => $rootfortemp.
"/".$module.
"/temp");
753 $this->$module->dir_output = $rootfordata.
"/".$module;
754 $this->$module->dir_temp = $rootfortemp.
"/".$module.
"/temp";
758 if (!empty($this->modules_parts[
'dir'])) {
759 foreach ($this->modules_parts[
'dir'] as $module => $dirs) {
760 if (!empty($this->$module->enabled)) {
761 foreach ($dirs as $type => $name) {
762 $multidirname =
'multidir_'.$type;
763 $dirname =
'dir_'.$type;
765 if ($type !=
'temp') {
767 $this->$module->$multidirname = array($this->entity => $rootfordata.
"/".$name);
770 $this->$module->$dirname = $rootfordata.
"/".$name;
773 $this->$module->$multidirname = array($this->entity => $rootfortemp.
"/".$name.
"/temp");
776 $this->$module->$dirname = $rootfortemp.
"/".$name.
"/temp";
784 $this->mycompany->multidir_output = array($this->entity => $rootfordata.
"/mycompany");
785 $this->mycompany->multidir_temp = array($this->entity => $rootfortemp.
"/mycompany/temp");
787 $this->mycompany->dir_output = $rootfordata.
"/mycompany";
788 $this->mycompany->dir_temp = $rootfortemp.
"/mycompany/temp";
791 $this->admin->dir_output = $rootfordata.
'/admin';
792 $this->admin->dir_temp = $rootfortemp.
'/admin/temp';
795 $this->api->dir_output = $rootfordata.
'/api';
796 $this->api->dir_temp = $rootfortemp.
'/api/temp';
799 $this->
user->multidir_output = array($this->entity => $rootfordata.
"/users");
800 $this->
user->multidir_temp = array($this->entity => $rootfortemp.
"/users/temp");
802 $this->
user->dir_output = $rootforuser.
"/users";
803 $this->
user->dir_temp = $rootfortemp.
"/users/temp";
806 $this->propal->multidir_output = array($this->entity => $rootfordata.
"/propale");
807 $this->propal->multidir_temp = array($this->entity => $rootfortemp.
"/propale/temp");
809 $this->propal->dir_output = $rootfordata.
"/propale";
810 $this->propal->dir_temp = $rootfortemp.
"/propale/temp";
813 $this->medias->multidir_output = array($this->entity => $rootfordata.
"/medias");
814 $this->medias->multidir_temp = array($this->entity => $rootfortemp.
"/medias/temp");
820 $this->fournisseur->commande =
new stdClass();
821 $this->fournisseur->commande->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/commande");
822 $this->fournisseur->commande->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/commande/temp");
823 $this->fournisseur->commande->dir_output = $rootfordata.
"/fournisseur/commande";
824 $this->fournisseur->commande->dir_temp = $rootfortemp.
"/fournisseur/commande/temp";
826 $this->fournisseur->facture =
new stdClass();
827 $this->fournisseur->facture->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/facture");
828 $this->fournisseur->facture->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/facture/temp");
829 $this->fournisseur->facture->dir_output = $rootfordata.
"/fournisseur/facture";
830 $this->fournisseur->facture->dir_temp = $rootfortemp.
"/fournisseur/facture/temp";
832 $this->supplier_proposal =
new stdClass();
833 $this->supplier_proposal->multidir_output = array($this->entity => $rootfordata.
"/supplier_proposal");
834 $this->supplier_proposal->multidir_temp = array($this->entity => $rootfortemp.
"/supplier_proposal/temp");
835 $this->supplier_proposal->dir_output = $rootfordata.
"/supplier_proposal";
836 $this->supplier_proposal->dir_temp = $rootfortemp.
"/supplier_proposal/temp";
838 $this->fournisseur->payment =
new stdClass();
839 $this->fournisseur->payment->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/payment");
840 $this->fournisseur->payment->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/payment/temp");
841 $this->fournisseur->payment->dir_output = $rootfordata.
"/fournisseur/payment";
842 $this->fournisseur->payment->dir_temp = $rootfortemp.
"/fournisseur/payment/temp";
846 $this->supplier_order =
new stdClass();
847 $this->supplier_order->enabled = 1;
848 $this->supplier_order->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/commande");
849 $this->supplier_order->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/commande/temp");
850 $this->supplier_order->dir_output = $rootfordata.
"/fournisseur/commande";
851 $this->supplier_order->dir_temp = $rootfortemp.
"/fournisseur/commande/temp";
853 $this->supplier_invoice =
new stdClass();
854 $this->supplier_invoice->enabled = 1;
855 $this->supplier_invoice->multidir_output = array($this->entity => $rootfordata.
"/fournisseur/facture");
856 $this->supplier_invoice->multidir_temp = array($this->entity => $rootfortemp.
"/fournisseur/facture/temp");
857 $this->supplier_invoice->dir_output = $rootfordata.
"/fournisseur/facture";
858 $this->supplier_invoice->dir_temp = $rootfortemp.
"/fournisseur/facture/temp";
863 $this->compta->payment =
new stdClass();
864 $this->compta->payment->dir_output = $rootfordata.
"/compta/payment";
865 $this->compta->payment->dir_temp = $rootfortemp.
"/compta/payment/temp";
868 $this->product->multidir_output = array($this->entity => $rootfordata.
"/produit");
869 $this->product->multidir_temp = array($this->entity => $rootfortemp.
"/produit/temp");
870 $this->service->multidir_output = array($this->entity => $rootfordata.
"/produit");
871 $this->service->multidir_temp = array($this->entity => $rootfortemp.
"/produit/temp");
873 $this->product->dir_output = $rootfordata.
"/produit";
874 $this->product->dir_temp = $rootfortemp.
"/produit/temp";
875 $this->service->dir_output = $rootfordata.
"/produit";
876 $this->service->dir_temp = $rootfortemp.
"/produit/temp";
879 $this->productbatch->multidir_output = array($this->entity => $rootfordata.
"/productlot");
880 $this->productbatch->multidir_temp = array($this->entity => $rootfortemp.
"/productlot/temp");
883 $this->contrat->multidir_output = array($this->entity => $rootfordata.
"/contract");
884 $this->contrat->multidir_temp = array($this->entity => $rootfortemp.
"/contract/temp");
886 $this->contrat->dir_output = $rootfordata.
"/contract";
887 $this->contrat->dir_temp = $rootfortemp.
"/contract/temp";
890 $this->bank->multidir_output = array($this->entity => $rootfordata.
"/bank");
891 $this->bank->multidir_temp = array($this->entity => $rootfortemp.
"/bank/temp");
893 $this->bank->dir_output = $rootfordata.
"/bank";
894 $this->bank->dir_temp = $rootfortemp.
"/bank/temp";
898 $this->global->MAIN_MAIL_USE_MULTI_PART = 1;
901 if (empty($this->global->SOCIETE_CODECLIENT_ADDON)) {
902 $this->global->SOCIETE_CODECLIENT_ADDON =
"mod_codeclient_leopard";
904 if (empty($this->global->SOCIETE_CODECOMPTA_ADDON)) {
905 $this->global->SOCIETE_CODECOMPTA_ADDON =
"mod_codecompta_panicum";
908 if (empty($this->global->CHEQUERECEIPTS_ADDON)) {
909 $this->global->CHEQUERECEIPTS_ADDON =
'mod_chequereceipt_mint';
911 if (empty($this->global->TICKET_ADDON)) {
912 $this->global->TICKET_ADDON =
'mod_ticket_simple';
916 if (empty($this->global->USER_PASSWORD_GENERATED)) {
917 $this->global->USER_PASSWORD_GENERATED =
'standard';
919 if (empty($this->global->MAIN_UMASK)) {
920 $this->global->MAIN_UMASK =
'0660';
924 $tmpumask = decoct($tmpumask);
925 if (!preg_match(
'/^0/', $tmpumask)) {
926 $tmpumask =
'0'.$tmpumask;
928 if (empty($tmpumask)) {
931 $this->global->MAIN_UMASK = $tmpumask;
935 $this->use_javascript_ajax = 1;
936 if (isset($this->global->MAIN_DISABLE_JAVASCRIPT)) {
937 $this->use_javascript_ajax = (int) !
getDolGlobalInt(
'MAIN_DISABLE_JAVASCRIPT');
940 if (empty($this->use_javascript_ajax)) {
941 unset($this->global->PRODUIT_USE_SEARCH_TO_SELECT);
942 unset($this->global->COMPANY_USE_SEARCH_TO_SELECT);
943 unset($this->global->CONTACT_USE_SEARCH_TO_SELECT);
944 unset($this->global->PROJECT_USE_SEARCH_TO_SELECT);
949 $this->global->STOCK_CALCULATE_ON_BILL = 0;
950 $this->global->STOCK_CALCULATE_ON_VALIDATE_ORDER = 0;
951 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT)) {
952 $this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE = 1;
954 if (empty($this->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE)) {
955 $this->global->STOCK_CALCULATE_ON_SHIPMENT = 1;
957 $this->global->STOCK_CALCULATE_ON_SUPPLIER_BILL = 0;
958 $this->global->STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER = 0;
960 $this->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER = 1;
962 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION)) {
963 $this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE = 1;
965 if (empty($this->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE)) {
966 $this->global->STOCK_CALCULATE_ON_RECEPTION = 1;
970 if (!isset($this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT)) {
971 $this->global->STOCK_SHOW_ALL_BATCH_BY_DEFAULT = 1;
975 if (empty($this->global->MAIN_MONNAIE)) {
976 $this->global->MAIN_MONNAIE =
'EUR';
978 $this->currency = $this->global->MAIN_MONNAIE;
980 if (empty($this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY)) {
981 $this->global->MAIN_BROWSER_NOTIFICATION_FREQUENCY = 30;
985 if (empty($this->global->ACCOUNTING_MODE)) {
986 $this->global->ACCOUNTING_MODE =
'CREANCES-DETTES';
989 if (!isset($this->global->MAIN_ENABLE_AJAX_TOOLTIP)) {
990 $this->global->MAIN_ENABLE_AJAX_TOOLTIP = 1;
992 if (!isset($this->global->THEME_SHOW_BORDER_ON_INPUT)) {
993 $this->global->THEME_SHOW_BORDER_ON_INPUT = 1;
995 if (!isset($this->global->THEME_ELDY_BORDER_RADIUS)) {
996 $this->global->THEME_ELDY_BORDER_RADIUS = 6;
1000 if (!isset($this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS)) {
1001 $this->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS = 1;
1005 if (!isset($this->global->PROJECT_BILL_TIME_SPENT)) {
1006 $this->global->PROJECT_BILL_TIME_SPENT = 1;
1010 if (!isset($this->global->MAIN_HTML_TITLE)) {
1011 $this->global->MAIN_HTML_TITLE =
'thirdpartynameonly,contactnameonly,projectnameonly';
1014 if (!isset($this->global->MAIN_FEATURE_TO_SHOW_TOP_MENU_URL_IN_FRAME)) {
1015 $this->global->MAIN_FEATURE_TO_SHOW_TOP_MENU_URL_IN_FRAME = 1;
1021 if ((
int) $this->liste_limit <= 0) {
1023 $this->liste_limit = 15;
1024 if (!empty($_SESSION[
'dol_screenheight']) && $_SESSION[
'dol_screenheight'] < 700) {
1025 $this->liste_limit = 8;
1026 } elseif (!empty($_SESSION[
'dol_screenheight']) && $_SESSION[
'dol_screenheight'] < 910) {
1027 $this->liste_limit = 10;
1028 } elseif (!empty($_SESSION[
'dol_screenheight']) && $_SESSION[
'dol_screenheight'] > 1130) {
1029 $this->liste_limit = 20;
1034 if (!isset($this->global->PRODUIT_LIMIT_SIZE)) {
1035 $this->global->PRODUIT_LIMIT_SIZE = 1000;
1039 $this->global->PRODUIT_DESC_IN_FORM_ACCORDING_TO_DEVICE =
getDolGlobalInt(
'PRODUIT_DESC_IN_FORM');
1042 if (empty($this->global->MAIN_THEME)) {
1043 $this->global->MAIN_THEME =
"eldy";
1045 if (!empty($this->global->MAIN_FORCETHEME)) {
1046 $this->global->MAIN_THEME = $this->global->MAIN_FORCETHEME;
1048 $this->theme = $this->global->MAIN_THEME;
1049 $this->css =
"/theme/".$this->theme.
"/style.css.php";
1052 $this->email_from =
"robot@example.com";
1053 if (!empty($this->global->MAIN_MAIL_EMAIL_FROM)) {
1054 $this->email_from = $this->global->MAIN_MAIL_EMAIL_FROM;
1059 $this->notification->email_from = $this->email_from;
1060 if (!empty($this->global->NOTIFICATION_EMAIL_FROM)) {
1061 $this->notification->email_from = $this->global->NOTIFICATION_EMAIL_FROM;
1065 if (!isset($this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP)) {
1066 $this->global->MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP = 1;
1069 if (!isset($this->global->MAIN_FIX_FOR_BUGGED_MTA)) {
1070 $this->global->MAIN_FIX_FOR_BUGGED_MTA = 1;
1074 $this->format_date_short =
"%d/%m/%Y";
1075 $this->format_date_short_java =
"dd/MM/yyyy";
1076 $this->format_hour_short =
"%H:%M";
1077 $this->format_hour_short_duration =
"%H:%M";
1078 $this->format_date_text_short =
"%d %b %Y";
1079 $this->format_date_text =
"%d %B %Y";
1080 $this->format_date_hour_short =
"%d/%m/%Y %H:%M";
1081 $this->format_date_hour_sec_short =
"%d/%m/%Y %H:%M:%S";
1082 $this->format_date_hour_text_short =
"%d %b %Y %H:%M";
1083 $this->format_date_hour_text =
"%d %B %Y %H:%M";
1086 if (!isset($this->global->MAIN_DURATION_OF_WORKDAY)) {
1087 $this->global->MAIN_DURATION_OF_WORKDAY = 86400;
1091 if (!isset($this->global->MAIN_MAX_DECIMALS_UNIT)) {
1092 $this->global->MAIN_MAX_DECIMALS_UNIT = 5;
1094 if (!isset($this->global->MAIN_MAX_DECIMALS_TOT)) {
1095 $this->global->MAIN_MAX_DECIMALS_TOT = 2;
1097 if (!isset($this->global->MAIN_MAX_DECIMALS_SHOWN)) {
1098 $this->global->MAIN_MAX_DECIMALS_SHOWN = 8;
1102 if (!isset($this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY)) {
1103 $this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY = 1;
1105 if (!isset($this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY)) {
1106 $this->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY = 1;
1110 if (!isset($this->global->MAIN_PDF_DASH_BETWEEN_LINES)) {
1111 $this->global->MAIN_PDF_DASH_BETWEEN_LINES = 1;
1113 if (!isset($this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT)) {
1114 $this->global->PDF_ALLOW_HTML_FOR_FREE_TEXT = 1;
1116 if (!isset($this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING)) {
1117 $this->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING = 1;
1124 if (!isset($this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN)) {
1125 $this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN =
'*';
1129 if (!isset($this->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) {
1130 $this->global->MAIN_USE_ZIPTOWN_DICTIONNARY = 0;
1134 if (!isset($this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE)) {
1135 $this->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE = 1;
1139 if (!isset($this->global->MAIN_SHOW_STATE_CODE)) {
1140 $this->global->MAIN_SHOW_STATE_CODE = 1;
1144 if (!isset($this->global->MULTICURRENCY_USE_ORIGIN_TX)) {
1145 $this->global->MULTICURRENCY_USE_ORIGIN_TX = 1;
1149 if (!isset($this->global->USE_STRICT_CSV_RULES)) {
1150 $this->global->USE_STRICT_CSV_RULES = 2;
1154 if (!isset($this->global->ADHERENT_LOGIN_NOT_REQUIRED)) {
1155 $this->global->ADHERENT_LOGIN_NOT_REQUIRED = 1;
1159 if (!isset($this->global->STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION) && !
getDolGlobalString(
'STRIPE_USE_NEW_CHECKOUT')) {
1160 $this->global->STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION = 1;
1164 if (!isset($this->global->MAIN_MODULES_FOR_EXTERNAL)) {
1165 $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';
1167 if (!empty($this->modules_parts[
'moduleforexternal'])) {
1168 foreach ($this->modules_parts[
'moduleforexternal'] as $key => $value) {
1169 $this->global->MAIN_MODULES_FOR_EXTERNAL .=
",".$key;
1175 if (empty($this->global->MAIN_USE_JQUERY_MULTISELECT) || $this->global->MAIN_USE_JQUERY_MULTISELECT ==
'1') {
1176 $this->global->MAIN_USE_JQUERY_MULTISELECT =
'select2';
1180 if (empty($this->global->MAIN_USE_CONNECT_TIMEOUT)) {
1181 $this->global->MAIN_USE_CONNECT_TIMEOUT = 10;
1183 if (empty($this->global->MAIN_USE_RESPONSE_TIMEOUT)) {
1184 $this->global->MAIN_USE_RESPONSE_TIMEOUT = 30;
1188 if (empty($this->global->TAX_MODE_SELL_PRODUCT)) {
1189 $this->global->TAX_MODE_SELL_PRODUCT =
'invoice';
1191 if (empty($this->global->TAX_MODE_BUY_PRODUCT)) {
1192 $this->global->TAX_MODE_BUY_PRODUCT =
'invoice';
1194 if (empty($this->global->TAX_MODE_SELL_SERVICE)) {
1195 $this->global->TAX_MODE_SELL_SERVICE =
'payment';
1197 if (empty($this->global->TAX_MODE_BUY_SERVICE)) {
1198 $this->global->TAX_MODE_BUY_SERVICE =
'payment';
1203 if (isset($this->agenda)) {
1204 $this->adherent->subscription =
new stdClass();
1205 $this->adherent->subscription->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_MEMBERS') * 86400;
1207 if (isset($this->agenda)) {
1208 $this->agenda->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_ACTIONS_TODO', 7) * 86400;
1210 if (isset($this->projet)) {
1211 $this->projet->warning_delay = (
getDolGlobalInt(
'MAIN_DELAY_PROJECT_TO_CLOSE', 7) * 86400);
1212 $this->projet->task =
new stdClass();
1213 $this->projet->task->warning_delay = (
getDolGlobalInt(
'MAIN_DELAY_TASKS_TODO', 7) * 86400);
1216 if (isset($this->commande)) {
1217 $this->commande->client =
new stdClass();
1218 $this->commande->fournisseur =
new stdClass();
1219 $this->commande->client->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_ORDERS_TO_PROCESS', 2) * 86400;
1220 $this->commande->fournisseur->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS', 7) * 86400;
1222 if (isset($this->propal)) {
1223 $this->propal->cloture =
new stdClass();
1224 $this->propal->facturation =
new stdClass();
1225 $this->propal->cloture->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_PROPALS_TO_CLOSE') * 86400;
1226 $this->propal->facturation->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_PROPALS_TO_BILL') * 86400;
1229 if (isset($this->supplier_proposal)) {
1230 $this->supplier_proposal->cloture =
new stdClass();
1231 $this->supplier_proposal->facturation =
new stdClass();
1232 $this->supplier_proposal->cloture->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_PROPALS_TO_CLOSE') * 86400;
1233 $this->supplier_proposal->facturation->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_PROPALS_TO_BILL') * 86400;
1235 if (isset($this->facture)) {
1236 $this->facture->client =
new stdClass();
1237 $this->facture->fournisseur =
new stdClass();
1238 $this->facture->client->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_CUSTOMER_BILLS_UNPAYED') * 86400;
1239 $this->facture->fournisseur->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_SUPPLIER_BILLS_TO_PAY') * 86400;
1241 if (isset($this->contrat)) {
1242 $this->contrat->services =
new stdClass();
1243 $this->contrat->services->inactifs =
new stdClass();
1244 $this->contrat->services->expires =
new stdClass();
1245 $this->contrat->services->inactifs->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_NOT_ACTIVATED_SERVICES') * 86400;
1246 $this->contrat->services->expires->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_RUNNING_SERVICES') * 86400;
1249 $this->bank->rappro =
new stdClass();
1250 $this->bank->cheque =
new stdClass();
1251 $this->bank->rappro->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE') * 86400;
1252 $this->bank->cheque->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_CHEQUES_TO_DEPOSIT') * 86400;
1254 if (isset($this->expensereport)) {
1255 $this->expensereport->approve =
new stdClass();
1256 $this->expensereport->approve->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_EXPENSEREPORTS') * 86400;
1257 $this->expensereport->payment =
new stdClass();
1258 $this->expensereport->payment->warning_delay =
getDolGlobalInt(
'MIN_DELAY_EXPENSEREPORTS_TO_PAY') * 86400;
1260 if (isset($this->holiday)) {
1261 $this->holiday->approve =
new stdClass();
1262 $this->holiday->approve->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_HOLIDAYS') * 86400;
1264 if (isset($this->mrp)) {
1265 $this->mrp->progress =
new stdClass();
1266 $this->mrp->progress->warning_delay =
getDolGlobalInt(
'MAIN_DELAY_MRP') * 86400;
1270 $this->global->PRODUIT_MULTIPRICES_LIMIT = 5;
1273 if (!isset($this->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
1274 $this->global->MAIN_CHECKBOX_LEFT_COLUMN = 1;
1278 if (!isset($this->main_checkbox_left_column)) {
1279 $this->main_checkbox_left_column =
getDolGlobalInt(
"MAIN_CHECKBOX_LEFT_COLUMN");
1283 if (!empty($this->global->MAIN_HIDE_TOP_MENU)) {
1284 $this->dol_hide_topmenu = (int) (
bool)
getDolGlobalInt(
'MAIN_HIDE_TOP_MENU');
1286 if (!empty($this->global->MAIN_HIDE_LEFT_MENU)) {
1287 $this->dol_hide_leftmenu = (int) (
bool)
getDolGlobalInt(
'MAIN_HIDE_LEFT_MENU');
1290 if (empty($this->global->MAIN_SIZE_SHORTLIST_LIMIT)) {
1291 $this->global->MAIN_SIZE_SHORTLIST_LIMIT = 3;
1295 if (empty($this->global->AGENDA_USE_EVENT_TYPE) && (!isset($this->global->AGENDA_DEFAULT_FILTER_TYPE) || $this->global->AGENDA_DEFAULT_FILTER_TYPE ==
'AC_NON_AUTO')) {
1296 $this->global->AGENDA_DEFAULT_FILTER_TYPE =
'0';
1299 if (!isset($this->global->MAIN_JS_GRAPH)) {
1300 $this->global->MAIN_JS_GRAPH =
'chart';
1303 if (!isset($this->global->THEME_ELDY_USEBORDERONTABLE)) {
1304 $this->global->THEME_ELDY_USEBORDERONTABLE = 1;
1307 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_SRV)) {
1308 $this->global->MAIN_MODULE_DOLISTORE_API_SRV =
'https://www.dolistore.com/api/';
1310 if (empty($this->global->MAIN_MODULE_DOLISTORE_API_KEY)) {
1311 $this->global->MAIN_MODULE_DOLISTORE_API_KEY =
'dolistorepublicapi';
1315 if (!isset($this->global->MAIN_SECURITY_CSRF_WITH_TOKEN)) {
1319 $this->global->MAIN_SECURITY_CSRF_WITH_TOKEN = 2;
1323 if (!isset($this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA)) {
1324 $this->global->MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA = 1;
1327 if (!isset($this->global->MAIL_SMTP_USE_FROM_FOR_HELO)) {
1328 $this->global->MAIL_SMTP_USE_FROM_FOR_HELO = 2;
1331 if (!empty($this->use_javascript_ajax) &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') >= 1) {
1332 $this->global->EMAILING_USE_ADVANCED_SELECTOR = 1;
1336 if (!defined(
'MAIN_ANTIVIRUS_BYPASS_COMMAND_AND_PARAM')) {
1337 if (defined(
'MAIN_ANTIVIRUS_UPLOAD_ON')) {
1338 $this->global->MAIN_ANTIVIRUS_UPLOAD_ON = constant(
'MAIN_ANTIVIRUS_UPLOAD_ON');
1340 if (defined(
'MAIN_ANTIVIRUS_COMMAND')) {
1341 $this->global->MAIN_ANTIVIRUS_COMMAND = constant(
'MAIN_ANTIVIRUS_COMMAND');
1343 if (defined(
'MAIN_ANTIVIRUS_PARAM')) {
1344 $this->global->MAIN_ANTIVIRUS_PARAM = constant(
'MAIN_ANTIVIRUS_PARAM');
1348 if (!isset($this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML)) {
1349 $this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML = 1;
1351 if (!isset($this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML_TIDY) && extension_loaded(
'tidy') && class_exists(
"tidy")) {
1352 $this->global->MAIN_RESTRICTHTML_ONLY_VALID_HTML_TIDY = 1;
1355 if (!isset($this->global->MAIN_DISALLOW_UNSECURED_SELECT_INTO_EXTRAFIELDS_FILTER)) {
1357 $this->global->MAIN_DISALLOW_UNSECURED_SELECT_INTO_EXTRAFIELDS_FILTER = 0;
1362 $this->global->PRODUCT_USE_CUSTOMER_PACKAGING = 0;
1367 if (!empty($this->global->LDAP_SYNCHRO_ACTIVE)) {
1368 if ($this->global->LDAP_SYNCHRO_ACTIVE ==
'dolibarr2ldap') {
1369 $this->global->LDAP_SYNCHRO_ACTIVE = 1;
1370 } elseif ($this->global->LDAP_SYNCHRO_ACTIVE ==
'ldap2dolibarr') {
1371 $this->global->LDAP_SYNCHRO_ACTIVE = 2;
1375 if (!empty($this->global->LDAP_MEMBER_ACTIVE) && $this->global->LDAP_MEMBER_ACTIVE ==
'ldap2dolibarr') {
1376 $this->global->LDAP_MEMBER_ACTIVE = 2;
1379 if (!empty($this->global->LDAP_MEMBER_TYPE_ACTIVE) && $this->global->LDAP_MEMBER_TYPE_ACTIVE ==
'ldap2dolibarr') {
1380 $this->global->LDAP_MEMBER_TYPE_ACTIVE = 2;
1383 if (!empty($this->global->MAIN_TZUSERINPUTKEY)) {
1384 $this->tzuserinputkey = $this->global->MAIN_TZUSERINPUTKEY;
1390 if (isset($this->product)) {
1392 $this->produit = $this->product;
1395 if (isset($this->facture)) {
1396 $this->invoice = $this->facture;
1399 if (isset($this->commande)) {
1400 $this->order = $this->commande;
1403 if (isset($this->contrat)) {
1404 $this->contract = $this->contrat;
1407 if (isset($this->categorie)) {
1408 $this->category = $this->categorie;
1411 if (isset($this->projet) && !isset($this->project)) {
1412 $this->project = $this->projet;
1415 if (isset($this->adherent) && !isset($this->member)) {
1416 $this->member = $this->adherent;
1420 if (!defined(
'NOREQUIREMC') &&
isModEnabled(
'multicompany')) {
1421 if (is_object($mc)) {
1422 $mc->setValues($this);
1428 if (!empty($this->global->SYSLOG_HANDLERS)) {
1429 $handlers = json_decode($this->global->SYSLOG_HANDLERS);
1431 $handlers = array();
1433 foreach ($handlers as $handler) {
1434 $handler_file_found =
'';
1435 $dirsyslogs = array(
'/core/modules/syslog/');
1436 if (!empty($this->modules_parts[
'syslog']) && is_array($this->modules_parts[
'syslog'])) {
1437 $dirsyslogs = array_merge($dirsyslogs, $this->modules_parts[
'syslog']);
1439 foreach ($dirsyslogs as $reldir) {
1442 if (is_dir($newdir)) {
1443 $file = $newdir.$handler.
'.php';
1444 if (file_exists($file)) {
1445 $handler_file_found = $file;
1451 if (empty($handler_file_found)) {
1457 require_once $handler_file_found;
1458 $loghandlerinstance =
new $handler();
1459 if (!$loghandlerinstance instanceof
LogHandler) {
1460 throw new Exception(
'Log handler does not extend LogHandler');
1463 if (empty($this->loghandlers[$handler])) {
1464 $this->loghandlers[$handler] = $loghandlerinstance;
1471 if (!empty($this->file->mailing_limit_sendbyweb)) {
1472 $this->global->MAILING_LIMIT_SENDBYWEB = $this->file->mailing_limit_sendbyweb;
1474 if (empty($this->global->MAILING_LIMIT_SENDBYWEB)) {
1475 $this->global->MAILING_LIMIT_SENDBYWEB = 25;
1477 if (!empty($this->file->mailing_limit_sendbycli)) {
1478 $this->global->MAILING_LIMIT_SENDBYCLI = $this->file->mailing_limit_sendbycli;
1480 if (!empty($this->file->mailing_limit_sendbyday)) {
1481 $this->global->MAILING_LIMIT_SENDBYDAY = $this->file->mailing_limit_sendbyday;