31require
'../../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
46$langs->loadLangs(array(
"admin",
"companies",
"other"));
48$action =
GETPOST(
'action',
'aZ09');
49$value =
GETPOST(
'value',
'alpha');
50$modulepart =
GETPOST(
'modulepart',
'aZ09');
65include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
67if ($action ==
'setcodeclient') {
74if ($action ==
'setcodecompta') {
81if ($action ==
'updateoptions') {
82 if (GETPOSTISSET(
'COMPANY_USE_SEARCH_TO_SELECT')) {
83 $companysearch =
GETPOST(
'activate_COMPANY_USE_SEARCH_TO_SELECT',
'alpha');
95 if (GETPOSTISSET(
'CONTACT_USE_SEARCH_TO_SELECT')) {
96 $contactsearch =
GETPOST(
'activate_CONTACT_USE_SEARCH_TO_SELECT',
'alpha');
108 if (GETPOSTISSET(
'THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT')) {
109 $customertypedefault =
GETPOSTINT(
'defaultcustomertype');
110 $res =
dolibarr_set_const($db,
"THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT", $customertypedefault,
'chaine', 0,
'',
$conf->entity);
122 $rolessearch =
GETPOST(
'activate_CONTACTS_DEFAULT_ROLES',
'array:aZ09');
123 $res =
dolibarr_set_const($db,
"CONTACTS_DEFAULT_ROLES", implode(
',', $rolessearch),
'chaine', 0,
'',
$conf->entity);
136if ($action ==
'set') {
137 $label =
GETPOST(
'label',
'alpha');
138 $scandir =
GETPOST(
'scan_dir',
'alpha');
141 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"document_model (nom, type, entity, libelle, description)";
142 $sql .=
" VALUES ('".$db->escape($value).
"', '".$db->escape($type).
"', ".((int)
$conf->entity).
", ";
143 $sql .= ($label ?
"'".$db->escape($label).
"'" :
'null').
", ";
144 $sql .= (!empty($scandir) ?
"'".$db->escape($scandir).
"'" :
"null");
147 $resql = $db->query($sql);
154if ($action ==
'del') {
156 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"document_model";
157 $sql .=
" WHERE nom='".$db->escape($value).
"' AND type='".$db->escape($type).
"' AND entity=".((int)
$conf->entity);
158 $resql = $db->query($sql);
165if ($action ==
'setdoc') {
166 $label =
GETPOST(
'label',
'alpha');
167 $scandir =
GETPOST(
'scan_dir',
'alpha');
175 $sql_del =
"DELETE FROM ".MAIN_DB_PREFIX.
"document_model";
176 $sql_del .=
" WHERE nom = '".$db->escape(
GETPOST(
'value',
'alpha')).
"'";
177 $sql_del .=
" AND type = '".$db->escape($type).
"'";
178 $sql_del .=
" AND entity = ".((int)
$conf->entity);
180 $result1 = $db->query($sql_del);
182 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"document_model (nom, type, entity, libelle, description)";
183 $sql .=
" VALUES ('".$db->escape($value).
"', '".$db->escape($type).
"', ".((int)
$conf->entity).
", ";
184 $sql .= ($label ?
"'".$db->escape($label).
"'" :
'null').
", ";
185 $sql .= (!empty($scandir) ?
"'".$db->escape($scandir).
"'" :
"null");
188 $result2 = $db->query($sql);
189 if ($result1 && $result2) {
197if ($action ==
"setaccountancycodecustomerinvoicemandatory") {
198 $setaccountancycodecustomerinvoicemandatory =
GETPOSTINT(
'value');
199 $res =
dolibarr_set_const($db,
"SOCIETE_ACCOUNTANCY_CODE_CUSTOMER_INVOICE_MANDATORY", $setaccountancycodecustomerinvoicemandatory,
'yesno', 0,
'',
$conf->entity);
226if ($action ==
"setaddrefinlist") {
240if ($action ==
"setvatinlist") {
254if ($action ==
"setaddadressinlist") {
268if ($action ==
"setaddemailphonetownincontactlist") {
270 $res =
dolibarr_set_const($db,
"CONTACT_SHOW_EMAIL_PHONE_TOWN_SELECTLIST", $val,
'yesno', 0,
'',
$conf->entity);
282if ($action ==
"setaskforshippingmet") {
284 $res =
dolibarr_set_const($db,
"SOCIETE_ASK_FOR_SHIPPING_METHOD", $setaskforshippingmet,
'yesno', 0,
'',
$conf->entity);
296if ($action ==
"setdisableprospectcustomer") {
297 $setdisableprospectcustomer =
GETPOSTINT(
'value');
298 $res =
dolibarr_set_const($db,
"SOCIETE_DISABLE_PROSPECTSCUSTOMERS", $setdisableprospectcustomer,
'yesno', 0,
'',
$conf->entity);
310if ($action ==
'setprofid') {
311 $status =
GETPOST(
'status',
'alpha');
313 $idprof =
"SOCIETE_".$value.
"_UNIQUE";
321if ($action ==
'setprofidmandatory') {
322 $status =
GETPOST(
'status',
'alpha');
324 $idprof =
"SOCIETE_".$value.
"_MANDATORY";
332if ($action ==
'setprofidinvoicemandatory') {
333 $status =
GETPOST(
'status',
'alpha');
335 $idprof =
"SOCIETE_".$value.
"_INVOICE_MANDATORY";
343if ($action ==
'sethideinactivethirdparty') {
344 $status =
GETPOST(
'status',
'alpha');
346 $result =
dolibarr_set_const($db,
"COMPANY_HIDE_INACTIVE_IN_COMBOBOX", $status,
'chaine', 0,
'',
$conf->entity);
351if ($action ==
'setonsearchandlistgooncustomerorsuppliercard') {
352 $setonsearchandlistgooncustomerorsuppliercard =
GETPOSTINT(
'value');
353 $res =
dolibarr_set_const($db,
"SOCIETE_ON_SEARCH_AND_LIST_GO_ON_CUSTOMER_OR_SUPPLIER_CARD", $setonsearchandlistgooncustomerorsuppliercard,
'yesno', 0,
'',
$conf->entity);
371$form =
new Form($db);
373$help_url =
'EN:Module Third Parties setup|FR:Paramétrage_du_module_Tiers|ES:Configuración_del_módulo_terceros';
374llxHeader(
'', $langs->trans(
"CompanySetup"), $help_url);
376$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
377print
load_fiche_titre($langs->trans(
"CompanySetup"), $linkback,
'title_setup');
382print
dol_get_fiche_head($head,
'general', $langs->trans(
"ThirdParties"), -1,
'company');
384$dirsociete = array_merge(array(
'/core/modules/societe/'),
$conf->modules_parts[
'societe']);
385foreach (
$conf->modules_parts[
'models'] as $mo) {
386 $dirsociete[] = $mo.
'core/modules/societe/';
393print
'<div class="div-table-responsive-no-min">';
394print
'<table class="noborder centpercent">'.
"\n";
395print
'<tr class="liste_titre">'.
"\n";
396print
' <td>'.$langs->trans(
"Name").
'</td>';
397print
' <td>'.$langs->trans(
"Description").
'</td>';
398print
' <td>'.$langs->trans(
"Example").
'</td>';
399print
' <td class="center" width="80">'.$langs->trans(
"Status").
'</td>';
400print
' <td class="center" width="60">'.$langs->trans(
"ShortInfo").
'</td>';
403$arrayofmodules = array();
405foreach ($dirsociete as $dirroot) {
408 $handle = @opendir($dir);
409 if (is_resource($handle)) {
411 while (($file = readdir($handle)) !==
false) {
412 if (substr($file, 0, 15) ==
'mod_codeclient_' && substr($file, -3) ==
'php') {
413 $file = substr($file, 0,
dol_strlen($file) - 4);
422 $modCodeTiers =
new $file($db);
423 '@phan-var-force ModeleThirdPartyCode $modCodeTiers';
426 if ($modCodeTiers->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
429 if ($modCodeTiers->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
433 $arrayofmodules[$file] = $modCodeTiers;
441'@phan-var-force array<string,ModeleThirdPartyCode> $arrayofmodules';
443foreach ($arrayofmodules as $file => $modCodeTiers) {
444 print
'<tr class="oddeven">'.
"\n";
445 print
'<td width="140">'.$modCodeTiers->name.
'</td>'.
"\n";
446 print
'<td>'.$modCodeTiers->info($langs).
'</td>'.
"\n";
447 print
'<td class="nowrap">'.$modCodeTiers->getExample($langs).
'</td>'.
"\n";
449 if (
$conf->global->SOCIETE_CODECLIENT_ADDON ==
"$file") {
450 print
'<td class="center">'.
"\n";
451 print
img_picto($langs->trans(
"Activated"),
'switch_on');
454 $disabled = (isModEnabled(
'multicompany') && ((is_object($mc) && !empty($mc->sharings[
'referent'])) && ($mc->sharings[
'referent'] !=
$conf->entity)));
455 print
'<td class="center">';
457 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setcodeclient&token='.
newToken().
'&value='.urlencode($file).
'">';
459 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
466 print
'<td class="center">';
467 $s = $modCodeTiers->getToolTip($langs,
null, -1);
468 print $form->textwithpicto(
'', $s, 1);
483print
'<div class="div-table-responsive-no-min">';
484print
'<table class="noborder centpercent">';
485print
'<tr class="liste_titre">';
486print
'<td width="140">'.$langs->trans(
"Name").
'</td>';
487print
'<td>'.$langs->trans(
"Description").
'</td>';
488print
'<td>'.$langs->trans(
"Example").
'</td>';
489print
'<td class="center" width="80">'.$langs->trans(
"Status").
'</td>';
490print
'<td class="center" width="60">'.$langs->trans(
"ShortInfo").
'</td>';
493$arrayofmodules = array();
495foreach ($dirsociete as $dirroot) {
498 $handle = @opendir($dir);
499 if (is_resource($handle)) {
500 while (($file = readdir($handle)) !==
false) {
501 if (substr($file, 0, 15) ==
'mod_codecompta_' && substr($file, -3) ==
'php') {
502 $file = substr($file, 0,
dol_strlen($file) - 4);
510 $modCodeCompta =
new $file();
511 '@phan-var-force ModeleAccountancyCode $modCodeTiers';
513 $arrayofmodules[$file] = $modCodeCompta;
521'@phan-var-force array<string,ModeleAccountancyCode> $arrayofmodules';
524foreach ($arrayofmodules as $file => $modCodeCompta) {
525 print
'<tr class="oddeven">';
526 print
'<td>'.$modCodeCompta->name.
"</td><td>\n";
527 print $modCodeCompta->info($langs);
529 print
'<td class="nowrap">'.$modCodeCompta->getExample($langs).
"</td>\n";
531 if (
$conf->global->SOCIETE_CODECOMPTA_ADDON ==
"$file") {
532 print
'<td class="center">';
533 print
img_picto($langs->trans(
"Activated"),
'switch_on');
536 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setcodecompta&token='.
newToken().
'&value='.urlencode($file).
'">';
537 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
540 print
'<td class="center">';
541 $s = $modCodeCompta->getToolTip($langs,
null, -1);
542 print $form->textwithpicto(
'', $s, 1);
559$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
560$sql .=
" WHERE type = 'company'";
561$sql .=
" AND entity = ".$conf->entity;
562$resql = $db->query($sql);
565 $num_rows = $db->num_rows($resql);
566 while ($i < $num_rows) {
567 $array = $db->fetch_array($resql);
568 if (is_array($array)) {
569 array_push($def, $array[0]);
577print
'<div class="div-table-responsive-no-min">';
578print
'<table class="noborder centpercent">';
579print
'<tr class="liste_titre">';
580print
'<td width="140">'.$langs->trans(
"Name").
'</td>';
581print
'<td>'.$langs->trans(
"Description").
'</td>';
582print
'<td class="center" width="80">'.$langs->trans(
"Status").
'</td>';
583print
'<td class="center" width="60">'.$langs->trans(
"ShortInfo").
'</td>';
584print
'<td class="center" width="60">'.$langs->trans(
"Preview").
'</td>';
587foreach ($dirsociete as $dirroot) {
590 $handle = @opendir($dir);
591 if (is_resource($handle)) {
592 while (($file = readdir($handle)) !==
false) {
593 if (preg_match(
'/\.modules\.php$/i', $file)) {
594 $name = substr($file, 4,
dol_strlen($file) - 16);
595 $classname = substr($file, 0,
dol_strlen($file) - 12);
603 $module =
new $classname($db);
604 '@phan-var-force ModeleThirdPartyDoc $module';
606 $modulequalified = 1;
607 if (!empty($module->version)) {
608 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
609 $modulequalified = 0;
610 } elseif ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
611 $modulequalified = 0;
615 if ($modulequalified) {
616 print
'<tr class="oddeven"><td width="100">';
619 if (method_exists($module,
'info')) {
620 print $module->info($langs);
622 print $module->description;
627 if (in_array($name, $def)) {
628 print
"<td class=\"center\">\n";
631 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'&token='.
newToken().
'&scan_dir='.$module->scandir.
'&label='.urlencode($module->name).
'">';
632 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
642 print
'<td class="center">'.
"\n";
646 print
'<td class="center">'.
"\n";
647 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=set&value='.urlencode($name).
'&token='.
newToken().
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
653 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
654 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
655 if ($module->type ==
'pdf') {
656 $htmltooltip .=
'<br>'.$langs->trans(
"Height").
'/'.$langs->trans(
"Width").
': '.$module->page_hauteur.
'/'.$module->page_largeur;
658 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
659 $htmltooltip .=
'<br>'.$langs->trans(
"WatermarkOnDraft").
': '.
yn((isset($module->option_draft_watermark) ? $module->option_draft_watermark :
''), 1, 1);
661 print
'<td class="center nowrap">';
662 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
666 print
'<td class="center nowrap">';
667 if ($module->type ==
'pdf') {
668 $linkspec =
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&token='.
newToken().
'&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
670 $linkspec =
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
690print
'<div class="div-table-responsive-no-min">';
691print
'<table class="noborder centpercent">';
692print
'<tr class="liste_titre">';
693print
'<td>'.$langs->trans(
"Name").
'</td>';
694print
'<td>'.$langs->trans(
"Description").
'</td>';
695print
'<td class="center">'.$langs->trans(
"MustBeUnique").
'</td>';
696print
'<td class="center">'.$langs->trans(
"MustBeMandatory").
'</td>';
697print
'<td class="center">'.$langs->trans(
"MustBeInvoiceMandatory").
'</td>';
700$profid = array(
'IDPROF1' => array(),
'IDPROF2' => array(),
'IDPROF3' => array(),
'IDPROF4' => array(),
'IDPROF5' => array(),
'IDPROF6' => array(),
'EMAIL' => array());
701$profid[
'IDPROF1'][0] = $langs->trans(
"ProfId1");
702$profid[
'IDPROF1'][1] = $langs->transcountry(
'ProfId1', $mysoc->country_code);
703$profid[
'IDPROF2'][0] = $langs->trans(
"ProfId2");
704$profid[
'IDPROF2'][1] = $langs->transcountry(
'ProfId2', $mysoc->country_code);
705$profid[
'IDPROF3'][0] = $langs->trans(
"ProfId3");
706$profid[
'IDPROF3'][1] = $langs->transcountry(
'ProfId3', $mysoc->country_code);
707$profid[
'IDPROF4'][0] = $langs->trans(
"ProfId4");
708$profid[
'IDPROF4'][1] = $langs->transcountry(
'ProfId4', $mysoc->country_code);
709$profid[
'IDPROF5'][0] = $langs->trans(
"ProfId5");
710$profid[
'IDPROF5'][1] = $langs->transcountry(
'ProfId5', $mysoc->country_code);
711$profid[
'IDPROF6'][0] = $langs->trans(
"ProfId6");
712$profid[
'IDPROF6'][1] = $langs->transcountry(
'ProfId6', $mysoc->country_code);
713$profid[
'EMAIL'][0] = $langs->trans(
"EMail");
714$profid[
'EMAIL'][1] = $langs->trans(
'Email');
715if (isModEnabled(
'accounting')) {
716 $profid[
'ACCOUNTANCY_CODE_CUSTOMER'] = array();
717 $profid[
'ACCOUNTANCY_CODE_CUSTOMER'][0] = $langs->trans(
"CustomerAccountancyCodeShort");
718 $profid[
'ACCOUNTANCY_CODE_CUSTOMER'][1] = $langs->trans(
'CustomerAccountancyCodeShort');
719 $profid[
'ACCOUNTANCY_CODE_SUPPLIER'] = array();
720 $profid[
'ACCOUNTANCY_CODE_SUPPLIER'][0] = $langs->trans(
"SupplierAccountancyCodeShort");
721 $profid[
'ACCOUNTANCY_CODE_SUPPLIER'][1] = $langs->trans(
'SupplierAccountancyCodeShort');
724$nbofloop = count($profid);
725foreach ($profid as $key => $val) {
726 if ($profid[$key][1] !=
'-') {
727 print
'<tr class="oddeven">';
728 print
'<td>'.$profid[$key][0].
"</td><td>\n";
729 print $profid[$key][1];
732 $idprof_unique =
'SOCIETE_'.$key.
'_UNIQUE';
733 $idprof_mandatory =
'SOCIETE_'.$key.
'_MANDATORY';
734 $idprof_invoice_mandatory =
'SOCIETE_'.$key.
'_INVOICE_MANDATORY';
736 $verif = !empty(
$conf->global->$idprof_unique);
737 $mandatory = !empty(
$conf->global->$idprof_mandatory);
738 $invoice_mandatory = !empty(
$conf->global->$idprof_invoice_mandatory);
741 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofid&token='.
newToken().
'&value='.$key.
'&status=0">';
742 print
img_picto($langs->trans(
"Activated"),
'switch_on');
745 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofid&token='.
newToken().
'&value='.$key.
'&status=1">';
746 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
751 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidmandatory&token='.
newToken().
'&value='.$key.
'&status=0">';
752 print
img_picto($langs->trans(
"Activated"),
'switch_on');
755 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidmandatory&token='.
newToken().
'&value='.$key.
'&status=1">';
756 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
760 if ($invoice_mandatory) {
761 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidinvoicemandatory&token='.
newToken().
'&value='.$key.
'&status=0">';
762 print
img_picto($langs->trans(
"Activated"),
'switch_on');
765 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidinvoicemandatory&token='.
newToken().
'&value='.$key.
'&status=1">';
766 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
775print
'<tr class="oddeven">';
776print
'<td colspan="2">'.$langs->trans(
'VATIntra').
"</td>\n";
779 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofid&token='.
newToken().
'&value='.$key.
'&status=0">';
780 print
img_picto($langs->trans(
"Activated"),
'switch_on');
783 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofid&token='.
newToken().
'&value='.$key.
'&status=1">';
784 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
788 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidmandatory&token='.
newToken().
'&value='.$key.
'&status=0">';
789 print
img_picto($langs->trans(
"Activated"),
'switch_on');
792 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidmandatory&token='.
newToken().
'&value='.$key.
'&status=1">';
793 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
797 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidinvoicemandatory&token='.
newToken().
'&value='.$key.
'&status=0">';
798 print
img_picto($langs->trans(
"Activated"),
'switch_on');
801 print
'<td class="center"><a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setprofidinvoicemandatory&token='.
newToken().
'&value='.$key.
'&status=1">';
802 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
815$form =
new Form($db);
817print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'">';
818print
'<input type="hidden" name="token" value="'.newToken().
'">';
819print
'<input type="hidden" name="page_y" value="">';
820print
'<input type="hidden" name="action" value="updateoptions">';
822print
'<div class="div-table-responsive-no-min">';
823print
'<table class="noborder centpercent">';
824print
'<tr class="liste_titre">';
825print
"<td>".$langs->trans(
"Parameters").
"</td>\n";
826print
'<td class="right" width="60">'.$langs->trans(
"Value").
'</td>'.
"\n";
827print
'<td width="80"> </td></tr>'.
"\n";
831print
'<tr class="oddeven">';
832print
'<td width="80%">'.$form->textwithpicto($langs->trans(
"DelaiedFullListToSelectCompany"), $langs->trans(
'UseSearchToSelectCompanyTooltip'), 1).
' </td>';
833if (!
$conf->use_javascript_ajax) {
834 print
'<td class="nowrap right" colspan="2">';
835 print $langs->trans(
"NotAvailableWhenAjaxDisabled");
838 print
'<td width="60" class="right">';
839 $arrval = array(
'0' => $langs->trans(
"No"),
840 '1' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 1).
')',
841 '2' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 2).
')',
842 '3' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 3).
')',
844 print $form->selectarray(
"activate_COMPANY_USE_SEARCH_TO_SELECT", $arrval,
getDolGlobalString(
'COMPANY_USE_SEARCH_TO_SELECT'), 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth75imp');
845 print
'</td><td class="right">';
846 print
'<input type="submit" class="button small reposition" name="COMPANY_USE_SEARCH_TO_SELECT" value="'.$langs->trans(
"Modify").
'">';
852print
'<tr class="oddeven">';
853print
'<td width="80%">'.$form->textwithpicto($langs->trans(
"DelaiedFullListToSelectContact"), $langs->trans(
'UseSearchToSelectContactTooltip'), 1).
'</td>';
854if (!
$conf->use_javascript_ajax) {
855 print
'<td class="nowrap right" colspan="2">';
856 print $langs->trans(
"NotAvailableWhenAjaxDisabled");
859 print
'<td width="60" class="right">';
860 $arrval = array(
'0' => $langs->trans(
"No"),
861 '1' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 1).
')',
862 '2' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 2).
')',
863 '3' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 3).
')',
865 print $form->selectarray(
"activate_CONTACT_USE_SEARCH_TO_SELECT", $arrval,
getDolGlobalString(
'CONTACT_USE_SEARCH_TO_SELECT'), 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth75imp');
866 print
'</td><td class="right">';
867 print
'<input type="submit" class="button small reposition" name="CONTACT_USE_SEARCH_TO_SELECT" value="'.$langs->trans(
"Modify").
'">';
874print
'<tr class="oddeven">';
875print
'<td width="80%">'.$langs->trans(
"AddRefInList").
'</td>';
876print
'<td> </td>';
877print
'<td class="center">';
879 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaddrefinlist&token='.
newToken().
'&value=0">';
880 print
img_picto($langs->trans(
"Activated"),
'switch_on');
882 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaddrefinlist&token='.
newToken().
'&value=1">';
883 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
888print
'<tr class="oddeven">';
889print
'<td width="80%">'.$langs->trans(
"AddVatInList").
'</td>';
890print
'<td> </td>';
891print
'<td class="center">';
893 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setvatinlist&token='.
newToken().
'&value=0">';
894 print
img_picto($langs->trans(
"Activated"),
'switch_on');
896 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setvatinlist&token='.
newToken().
'&value=1">';
897 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
902print
'<tr class="oddeven">';
903print
'<td width="80%">'.$langs->trans(
"AddAdressInList").
'</td>';
904print
'<td> </td>';
905print
'<td class="center">';
907 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaddadressinlist&token='.
newToken().
'&value=0">';
908 print
img_picto($langs->trans(
"Activated"),
'switch_on');
910 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaddadressinlist&token='.
newToken().
'&value=1">';
911 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
916print
'<tr class="oddeven">';
917print
'<td width="80%">'.$langs->trans(
"AddEmailPhoneTownInContactList").
'</td>';
918print
'<td> </td>';
919print
'<td class="center">';
921 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaddemailphonetownincontactlist&token='.
newToken().
'&value=0">';
922 print
img_picto($langs->trans(
"Activated"),
'switch_on');
924 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaddemailphonetownincontactlist&token='.
newToken().
'&value=1">';
925 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
930if (isModEnabled(
"shipping")) {
932 print
'<tr class="oddeven">';
933 print
'<td width="80%">'.$langs->trans(
"AskForPreferredShippingMethod").
'</td>';
934 print
'<td> </td>';
935 print
'<td class="center">';
937 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaskforshippingmet&token='.
newToken().
'&value=0">';
938 print
img_picto($langs->trans(
"Activated"),
'switch_on');
940 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setaskforshippingmet&token='.
newToken().
'&value=1">';
941 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
949print
'<tr class="oddeven">';
950print
'<td width="80%">'.$langs->trans(
"DisableProspectCustomerType").
'</td>';
951print
'<td> </td>';
952print
'<td class="center">';
954 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setdisableprospectcustomer&token='.
newToken().
'&value=0">';
955 print
img_picto($langs->trans(
"Activated"),
'switch_on');
957 print
'<a class="reposition" href="'.$_SERVER[
'PHP_SELF'].
'?action=setdisableprospectcustomer&token='.
newToken().
'&value=1">';
958 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
965 print
'<tr class="oddeven">';
966 print
'<td>'.$langs->trans(
"DefaultCustomerType").
'</td>';
968 print $formcompany->selectProspectCustomerType(
getDolGlobalString(
'THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT'),
'defaultcustomertype',
'defaultcustomertype',
'admin');
970 print
'<td class="center">';
971 print
'<input type="submit" class="button small reposition" name="THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT" value="'.$langs->trans(
"Modify").
'">';
977 print
'<tr class="oddeven">';
978 print
'<td width="80%">'.$langs->trans(
'ContactsDefaultRoles').
'</td>';
979 if (!
$conf->use_javascript_ajax) {
980 print
'<td class="nowrap right" colspan="2">';
981 print $langs->trans(
"NotAvailableWhenAjaxDisabled");
984 print
'<td width="60" class="right">';
986 $contactType = $contact->listeTypeContacts(
'external', 0, 1);
988 print $form->multiselectarray(
'activate_CONTACTS_DEFAULT_ROLES', $contactType, $selected, 0, 0,
'minwidth75imp');
989 print
'</td><td class="right">';
990 print
'<input type="submit" class="button small eposition" name="CONTACTS_DEFAULT_ROLES" value="'.$langs->trans(
"Modify").
'">';
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
versionphparray()
Return version PHP.
versioncompare($versionarray1, $versionarray2)
Compare 2 versions (stored into 2 arrays).
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
societe_admin_prepare_head()
Return array head with list of tabs to view object information.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
GETPOSTISARRAY($paramname, $method=0)
Return true if the parameter $paramname is submit from a POST OR GET as an array.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.