dolibarr 21.0.3
societe.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
4 * Copyright (C) 2005-2011 Laurent Destailleur <eldy@users.sourceforge.net>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
7 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
8 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
30// Load Dolibarr environment
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';
36
46$langs->loadLangs(array("admin", "accountancy", "companies", "other"));
47
48$action = GETPOST('action', 'aZ09');
49$value = GETPOST('value', 'alpha');
50$modulepart = GETPOST('modulepart', 'aZ09'); // Used by actions_setmoduleoptions.inc.php
51
52if (!$user->admin) {
54}
55
56$formcompany = new FormCompany($db);
57
58
59
60/*
61 * Actions
62 */
63$error = 0;
64
65include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
66
67if ($action == 'setcodeclient') {
68 $result = dolibarr_set_const($db, "SOCIETE_CODECLIENT_ADDON", $value, 'chaine', 0, '', $conf->entity);
69 if ($result <= 0) {
70 dol_print_error($db);
71 }
72}
73
74if ($action == 'setcodecompta') {
75 $result = dolibarr_set_const($db, "SOCIETE_CODECOMPTA_ADDON", $value, 'chaine', 0, '', $conf->entity);
76 if ($result <= 0) {
77 dol_print_error($db);
78 }
79}
80
81if ($action == 'updateoptions') {
82 if (GETPOSTISSET('COMPANY_USE_SEARCH_TO_SELECT')) {
83 $companysearch = GETPOST('activate_COMPANY_USE_SEARCH_TO_SELECT', 'alpha');
84 $res = dolibarr_set_const($db, "COMPANY_USE_SEARCH_TO_SELECT", $companysearch, 'chaine', 0, '', $conf->entity);
85 if (!($res > 0)) {
86 $error++;
87 }
88 if (!$error) {
89 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
90 } else {
91 setEventMessages($langs->trans("Error"), null, 'errors');
92 }
93 }
94
95 if (GETPOSTISSET('CONTACT_USE_SEARCH_TO_SELECT')) {
96 $contactsearch = GETPOST('activate_CONTACT_USE_SEARCH_TO_SELECT', 'alpha');
97 $res = dolibarr_set_const($db, "CONTACT_USE_SEARCH_TO_SELECT", $contactsearch, 'chaine', 0, '', $conf->entity);
98 if (!($res > 0)) {
99 $error++;
100 }
101 if (!$error) {
102 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
103 } else {
104 setEventMessages($langs->trans("Error"), null, 'errors');
105 }
106 }
107
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);
111 if (!($res > 0)) {
112 $error++;
113 }
114 if (!$error) {
115 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
116 } else {
117 setEventMessages($langs->trans("Error"), null, 'errors');
118 }
119 }
120
121 if (GETPOSTISARRAY('CONTACTS_DEFAULT_ROLES')) {
122 $rolessearch = GETPOST('activate_CONTACTS_DEFAULT_ROLES', 'array:aZ09');
123 $res = dolibarr_set_const($db, "CONTACTS_DEFAULT_ROLES", implode(',', $rolessearch), 'chaine', 0, '', $conf->entity);
124 if (!($res > 0)) {
125 $error++;
126 }
127 if (!$error) {
128 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
129 } else {
130 setEventMessages($langs->trans("Error"), null, 'errors');
131 }
132 }
133}
134
135// Activate a document generator module
136if ($action == 'set') {
137 $label = GETPOST('label', 'alpha');
138 $scandir = GETPOST('scan_dir', 'alpha');
139
140 $type = 'company';
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");
145 $sql .= ")";
146
147 $resql = $db->query($sql);
148 if (!$resql) {
149 dol_print_error($db);
150 }
151}
152
153// Disable a document generator module
154if ($action == 'del') {
155 $type = 'company';
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);
159 if (!$resql) {
160 dol_print_error($db);
161 }
162}
163
164// Define default generator
165if ($action == 'setdoc') {
166 $label = GETPOST('label', 'alpha');
167 $scandir = GETPOST('scan_dir', 'alpha');
168
169 $db->begin();
170
171 dolibarr_set_const($db, "COMPANY_ADDON_PDF", $value, 'chaine', 0, '', $conf->entity);
172
173 // On active le modele
174 $type = 'company';
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);
179 dol_syslog("societe.php ".$sql);
180 $result1 = $db->query($sql_del);
181
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");
186 $sql .= ")";
187 dol_syslog("societe.php", LOG_DEBUG);
188 $result2 = $db->query($sql);
189 if ($result1 && $result2) {
190 $db->commit();
191 } else {
192 $db->rollback();
193 }
194}
195
196//Activate Set accountancy code customer invoice mandatory
197if ($action == "setaccountancycodecustomerinvoicemandatory") {
198 $setaccountancycodecustomerinvoicemandatory = GETPOSTINT('value');
199 $res = dolibarr_set_const($db, "SOCIETE_ACCOUNTANCY_CODE_CUSTOMER_INVOICE_MANDATORY", $setaccountancycodecustomerinvoicemandatory, 'yesno', 0, '', $conf->entity);
200 if (!($res > 0)) {
201 $error++;
202 }
203 if (!$error) {
204 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
205 } else {
206 setEventMessages($langs->trans("Error"), null, 'errors');
207 }
208}
209/* This code is not needed anymore as we can use the setprofid functions instead with key = 'VAT_INTRA'
210//Activate Set vat id unique
211if ($action == "setvatintraunique") {
212 $setvatintraunique = GETPOSTINT('value');
213 $res = dolibarr_set_const($db, "SOCIETE_VAT_INTRA_UNIQUE", $setvatintraunique, 'yesno', 0, '', $conf->entity);
214 if (!($res > 0)) {
215 $error++;
216 }
217 if (!$error) {
218 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
219 } else {
220 setEventMessages($langs->trans("Error"), null, 'errors');
221 }
222}
223*/
224
225//Activate Set ref in list
226if ($action == "setaddrefinlist") {
227 $setaddrefinlist = GETPOSTINT('value');
228 $res = dolibarr_set_const($db, "SOCIETE_ADD_REF_IN_LIST", $setaddrefinlist, 'yesno', 0, '', $conf->entity);
229 if (!($res > 0)) {
230 $error++;
231 }
232 if (!$error) {
233 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
234 } else {
235 setEventMessages($langs->trans("Error"), null, 'errors');
236 }
237}
238
239//Activate Set vat in list
240if ($action == "setvatinlist") {
241 $setvatinlist = GETPOSTINT('value');
242 $res = dolibarr_set_const($db, "SOCIETE_SHOW_VAT_IN_LIST", $setvatinlist, 'yesno', 0, '', $conf->entity);
243 if (!($res > 0)) {
244 $error++;
245 }
246 if (!$error) {
247 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
248 } else {
249 setEventMessages($langs->trans("Error"), null, 'errors');
250 }
251}
252
253//Activate Set address in list
254if ($action == "setaddadressinlist") {
255 $val = GETPOSTINT('value');
256 $res = dolibarr_set_const($db, "COMPANY_SHOW_ADDRESS_SELECTLIST", $val, 'yesno', 0, '', $conf->entity);
257 if (!($res > 0)) {
258 $error++;
259 }
260 if (!$error) {
261 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
262 } else {
263 setEventMessages($langs->trans("Error"), null, 'errors');
264 }
265}
266
267//Activate Set email phone town in contact list
268if ($action == "setaddemailphonetownincontactlist") {
269 $val = GETPOSTINT('value');
270 $res = dolibarr_set_const($db, "CONTACT_SHOW_EMAIL_PHONE_TOWN_SELECTLIST", $val, 'yesno', 0, '', $conf->entity);
271 if (!($res > 0)) {
272 $error++;
273 }
274 if (!$error) {
275 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
276 } else {
277 setEventMessages($langs->trans("Error"), null, 'errors');
278 }
279}
280
281//Activate Ask For Preferred Shipping Method
282if ($action == "setaskforshippingmet") {
283 $setaskforshippingmet = GETPOSTINT('value');
284 $res = dolibarr_set_const($db, "SOCIETE_ASK_FOR_SHIPPING_METHOD", $setaskforshippingmet, 'yesno', 0, '', $conf->entity);
285 if (!($res > 0)) {
286 $error++;
287 }
288 if (!$error) {
289 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
290 } else {
291 setEventMessages($langs->trans("Error"), null, 'errors');
292 }
293}
294
295// Activate "Disable prospect/customer type"
296if ($action == "setdisableprospectcustomer") {
297 $setdisableprospectcustomer = GETPOSTINT('value');
298 $res = dolibarr_set_const($db, "SOCIETE_DISABLE_PROSPECTSCUSTOMERS", $setdisableprospectcustomer, 'yesno', 0, '', $conf->entity);
299 if (!($res > 0)) {
300 $error++;
301 }
302 if (!$error) {
303 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
304 } else {
305 setEventMessages($langs->trans("Error"), null, 'errors');
306 }
307}
308
309//Activate ProfId unique
310if ($action == 'setprofid') {
311 $status = GETPOST('status', 'alpha');
312
313 $idprof = "SOCIETE_".$value."_UNIQUE";
314 $result = dolibarr_set_const($db, $idprof, $status, 'chaine', 0, '', $conf->entity);
315 if ($result <= 0) {
316 dol_print_error($db);
317 }
318}
319
320//Activate ProfId mandatory
321if ($action == 'setprofidmandatory') {
322 $status = GETPOST('status', 'alpha');
323
324 $idprof = "SOCIETE_".$value."_MANDATORY";
325 $result = dolibarr_set_const($db, $idprof, $status, 'chaine', 0, '', $conf->entity);
326 if ($result <= 0) {
327 dol_print_error($db);
328 }
329}
330
331//Activate ProfId invoice mandatory
332if ($action == 'setprofidinvoicemandatory' || $action == 'setprofidinvoicemandatoryeeconly') {
333 $status = GETPOST('status', 'alpha');
334 if ($status == '1' && $action == 'setprofidinvoicemandatoryeeconly') {
335 $status = 'eeconly';
336 }
337 $idprof = "SOCIETE_".$value."_INVOICE_MANDATORY";
338 $result = dolibarr_set_const($db, $idprof, $status, 'chaine', 0, '', $conf->entity);
339 if ($result <= 0) {
340 dol_print_error($db);
341 }
342}
343
344//Set hide closed customer into combox or select
345if ($action == 'sethideinactivethirdparty') {
346 $status = GETPOST('status', 'alpha');
347
348 $result = dolibarr_set_const($db, "COMPANY_HIDE_INACTIVE_IN_COMBOBOX", $status, 'chaine', 0, '', $conf->entity);
349 if ($result <= 0) {
350 dol_print_error($db);
351 }
352}
353if ($action == 'setonsearchandlistgooncustomerorsuppliercard') {
354 $setonsearchandlistgooncustomerorsuppliercard = GETPOSTINT('value');
355 $res = dolibarr_set_const($db, "SOCIETE_ON_SEARCH_AND_LIST_GO_ON_CUSTOMER_OR_SUPPLIER_CARD", $setonsearchandlistgooncustomerorsuppliercard, 'yesno', 0, '', $conf->entity);
356 if (!($res > 0)) {
357 $error++;
358 }
359 if (!$error) {
360 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
361 } else {
362 setEventMessages($langs->trans("Error"), null, 'errors');
363 }
364}
365
366
367/*
368 * View
369 */
370
371clearstatcache();
372
373$form = new Form($db);
374
375$help_url = 'EN:Module Third Parties setup|FR:Paramétrage_du_module_Tiers|ES:Configuración_del_módulo_terceros';
376llxHeader('', $langs->trans("CompanySetup"), $help_url);
377
378$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
379print load_fiche_titre($langs->trans("CompanySetup"), $linkback, 'title_setup');
380
381
383
384print dol_get_fiche_head($head, 'general', $langs->trans("ThirdParties"), -1, 'company');
385
386$dirsociete = array_merge(array('/core/modules/societe/'), $conf->modules_parts['societe']);
387foreach ($conf->modules_parts['models'] as $mo) {
388 $dirsociete[] = $mo.'core/modules/societe/'; //Add more models
389}
390
391// Module to manage customer/supplier code
392
393print load_fiche_titre($langs->trans("CompanyCodeChecker"), '', '');
394
395print '<div class="div-table-responsive-no-min">';
396print '<table class="noborder centpercent">'."\n";
397print '<tr class="liste_titre">'."\n";
398print ' <td>'.$langs->trans("Name").'</td>';
399print ' <td>'.$langs->trans("Description").'</td>';
400print ' <td>'.$langs->trans("Example").'</td>';
401print ' <td class="center" width="80">'.$langs->trans("Status").'</td>';
402print ' <td class="center" width="60">'.$langs->trans("ShortInfo").'</td>';
403print "</tr>\n";
404
405$arrayofmodules = array();
406
407foreach ($dirsociete as $dirroot) {
408 $dir = dol_buildpath($dirroot, 0);
409
410 $handle = @opendir($dir);
411 if (is_resource($handle)) {
412 // Loop on each module find in opened directory
413 while (($file = readdir($handle)) !== false) {
414 if (substr($file, 0, 15) == 'mod_codeclient_' && substr($file, -3) == 'php') {
415 $file = substr($file, 0, dol_strlen($file) - 4);
416
417 try {
418 dol_include_once($dirroot.$file.'.php');
419 } catch (Exception $e) {
420 dol_syslog($e->getMessage(), LOG_ERR);
421 }
422
424 $modCodeTiers = new $file($db);
425 '@phan-var-force ModeleThirdPartyCode $modCodeTiers';
426
427 // Show modules according to features level
428 if ($modCodeTiers->version == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
429 continue;
430 }
431 if ($modCodeTiers->version == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
432 continue;
433 }
434
435 $arrayofmodules[$file] = $modCodeTiers;
436 }
437 }
438 closedir($handle);
439 }
440}
441
442$arrayofmodules = dol_sort_array($arrayofmodules, 'position');
443'@phan-var-force array<string,ModeleThirdPartyCode> $arrayofmodules'; // Repeat type because of dol_sort_array
444
445foreach ($arrayofmodules as $file => $modCodeTiers) {
446 print '<tr class="oddeven">'."\n";
447 print '<td width="140">'.$modCodeTiers->name.'</td>'."\n";
448 print '<td>'.$modCodeTiers->info($langs).'</td>'."\n";
449 print '<td class="nowrap">'.$modCodeTiers->getExample($langs).'</td>'."\n";
450
451 if ($conf->global->SOCIETE_CODECLIENT_ADDON == "$file") {
452 print '<td class="center">'."\n";
453 print img_picto($langs->trans("Activated"), 'switch_on');
454 print "</td>\n";
455 } else {
456 $disabled = (isModEnabled('multicompany') && ((is_object($mc) && !empty($mc->sharings['referent'])) && ($mc->sharings['referent'] != $conf->entity)));
457 print '<td class="center">';
458 if (!$disabled) {
459 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setcodeclient&token='.newToken().'&value='.urlencode($file).'">';
460 }
461 print img_picto($langs->trans("Disabled"), 'switch_off');
462 if (!$disabled) {
463 print '</a>';
464 }
465 print '</td>';
466 }
467
468 print '<td class="center">';
469 $s = $modCodeTiers->getToolTip($langs, null, -1);
470 print $form->textwithpicto('', $s, 1);
471 print '</td>';
472
473 print '</tr>';
474}
475print '</table>';
476print '</div>';
477
478print "<br>";
479
480
481// Select accountancy code numbering module
482
483print load_fiche_titre($langs->trans("AccountCodeManager"), '', '');
484
485print '<div class="div-table-responsive-no-min">';
486print '<table class="noborder centpercent">';
487print '<tr class="liste_titre">';
488print '<td width="140">'.$langs->trans("Name").'</td>';
489print '<td>'.$langs->trans("Description").'</td>';
490print '<td>'.$langs->trans("Example").'</td>';
491print '<td class="center" width="80">'.$langs->trans("Status").'</td>';
492print '<td class="center" width="60">'.$langs->trans("ShortInfo").'</td>';
493print "</tr>\n";
494
495$arrayofmodules = array();
496
497foreach ($dirsociete as $dirroot) {
498 $dir = dol_buildpath($dirroot, 0);
499
500 $handle = @opendir($dir);
501 if (is_resource($handle)) {
502 while (($file = readdir($handle)) !== false) {
503 if (substr($file, 0, 15) == 'mod_codecompta_' && substr($file, -3) == 'php') {
504 $file = substr($file, 0, dol_strlen($file) - 4);
505
506 try {
507 dol_include_once($dirroot.$file.'.php');
508 } catch (Exception $e) {
509 dol_syslog($e->getMessage(), LOG_ERR);
510 }
511
512 $modCodeCompta = new $file();
513 '@phan-var-force ModeleAccountancyCode $modCodeTiers';
514
515 $arrayofmodules[$file] = $modCodeCompta;
516 }
517 }
518 closedir($handle);
519 }
520}
521
522$arrayofmodules = dol_sort_array($arrayofmodules, 'position');
523'@phan-var-force array<string,ModeleAccountancyCode> $arrayofmodules';
524
525
526foreach ($arrayofmodules as $file => $modCodeCompta) {
527 print '<tr class="oddeven">';
528 print '<td>'.$modCodeCompta->name."</td><td>\n";
529 print $modCodeCompta->info($langs);
530 print '</td>';
531 print '<td class="nowrap">'.$modCodeCompta->getExample($langs)."</td>\n";
532
533 if ($conf->global->SOCIETE_CODECOMPTA_ADDON == "$file") {
534 print '<td class="center">';
535 print img_picto($langs->trans("Activated"), 'switch_on');
536 print '</td>';
537 } else {
538 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setcodecompta&token='.newToken().'&value='.urlencode($file).'">';
539 print img_picto($langs->trans("Disabled"), 'switch_off');
540 print '</a></td>';
541 }
542 print '<td class="center">';
543 $s = $modCodeCompta->getToolTip($langs, null, -1);
544 print $form->textwithpicto('', $s, 1);
545 print '</td>';
546 print "</tr>\n";
547}
548print "</table>\n";
549print '</div>';
550
551
552/*
553 * Document templates generators
554 */
555print '<br>';
556print load_fiche_titre($langs->trans("ModelModules"), '', '');
557
558// Load array def with activated templates
559$def = array();
560$sql = "SELECT nom";
561$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
562$sql .= " WHERE type = 'company'";
563$sql .= " AND entity = ".$conf->entity;
564$resql = $db->query($sql);
565if ($resql) {
566 $i = 0;
567 $num_rows = $db->num_rows($resql);
568 while ($i < $num_rows) {
569 $array = $db->fetch_array($resql);
570 if (is_array($array)) {
571 array_push($def, $array[0]);
572 }
573 $i++;
574 }
575} else {
576 dol_print_error($db);
577}
578
579print '<div class="div-table-responsive-no-min">';
580print '<table class="noborder centpercent">';
581print '<tr class="liste_titre">';
582print '<td width="140">'.$langs->trans("Name").'</td>';
583print '<td>'.$langs->trans("Description").'</td>';
584print '<td class="center" width="80">'.$langs->trans("Status").'</td>';
585print '<td class="center" width="60">'.$langs->trans("ShortInfo").'</td>';
586print '<td class="center" width="60">'.$langs->trans("Preview").'</td>';
587print "</tr>\n";
588
589foreach ($dirsociete as $dirroot) {
590 $dir = dol_buildpath($dirroot.'doc/', 0);
591
592 $handle = @opendir($dir);
593 if (is_resource($handle)) {
594 while (($file = readdir($handle)) !== false) {
595 if (preg_match('/\.modules\.php$/i', $file)) {
596 $name = substr($file, 4, dol_strlen($file) - 16);
597 $classname = substr($file, 0, dol_strlen($file) - 12);
598
599 try {
600 dol_include_once($dirroot.'doc/'.$file);
601 } catch (Exception $e) {
602 dol_syslog($e->getMessage(), LOG_ERR);
603 }
604
605 $module = new $classname($db);
606 '@phan-var-force ModeleThirdPartyDoc $module';
607
608 $modulequalified = 1;
609 if (!empty($module->version)) {
610 if ($module->version == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
611 $modulequalified = 0;
612 } elseif ($module->version == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
613 $modulequalified = 0;
614 }
615 }
616
617 if ($modulequalified) {
618 print '<tr class="oddeven"><td width="100">';
619 print dol_escape_htmltag($module->name);
620 print "</td><td>\n";
621 if (method_exists($module, 'info')) {
622 print $module->info($langs); // @phan-suppress-current-line PhanUndeclaredMethod
623 } else {
624 print $module->description;
625 }
626 print '</td>';
627
628 // Activate / Disable
629 if (in_array($name, $def)) {
630 print "<td class=\"center\">\n";
631 //if ($conf->global->COMPANY_ADDON_PDF != "$name")
632 //{
633 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).'">';
634 print img_picto($langs->trans("Enabled"), 'switch_on');
635 print '</a>';
636 //}
637 //else
638 //{
639 // print img_picto($langs->trans("Enabled"),'on');
640 //}
641 print "</td>";
642 } else {
643 if (versioncompare($module->phpmin, versionphparray()) > 0) {
644 print '<td class="center">'."\n";
645 print img_picto(dol_escape_htmltag($langs->trans("ErrorModuleRequirePHPVersion", implode('.', $module->phpmin))), 'switch_off');
646 print "</td>";
647 } else {
648 print '<td class="center">'."\n";
649 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>';
650 print "</td>";
651 }
652 }
653
654 // Info
655 $htmltooltip = ''.$langs->trans("Name").': '.$module->name;
656 $htmltooltip .= '<br>'.$langs->trans("Type").': '.($module->type ? $module->type : $langs->trans("Unknown"));
657 if ($module->type == 'pdf') {
658 $htmltooltip .= '<br>'.$langs->trans("Height").'/'.$langs->trans("Width").': '.$module->page_hauteur.'/'.$module->page_largeur;
659 }
660 $htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
661 $htmltooltip .= '<br>'.$langs->trans("WatermarkOnDraft").': '.yn((isset($module->option_draft_watermark) ? $module->option_draft_watermark : ''), 1, 1);
662
663 print '<td class="center nowrap">';
664 print $form->textwithpicto('', $htmltooltip, 1, 0);
665 print '</td>';
666
667 // Preview
668 print '<td class="center nowrap">';
669 if ($module->type == 'pdf') {
670 $linkspec = '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=specimen&token='.newToken().'&module='.$name.'">'.img_object($langs->trans("Preview"), 'pdf').'</a>';
671 } else {
672 $linkspec = img_object($langs->transnoentitiesnoconv("PreviewNotAvailable"), 'generic');
673 }
674 print $linkspec;
675 print '</td>';
676
677 print "</tr>\n";
678 }
679 }
680 }
681 closedir($handle);
682 }
683}
684print '</table>';
685print '</div>';
686
687print '<br>';
688
689//IDProf
690print load_fiche_titre($langs->trans("CompanyIdProfChecker"), '', '');
691
692print '<div class="div-table-responsive-no-min">';
693print '<table class="noborder centpercent">';
694print '<tr class="liste_titre">';
695print '<td>'.$langs->trans("Name").'</td>';
696print '<td>'.$langs->trans("Description").'</td>';
697print '<td class="center">'.$langs->trans("MustBeUnique").'</td>';
698print '<td class="center">'.$langs->trans("MustBeMandatory").'</td>';
699print '<td class="center">'.$langs->trans("MustBeInvoiceMandatory").'</td>';
700print "</tr>\n";
701
702$profid = array('IDPROF1' => array(), 'IDPROF2' => array(), 'IDPROF3' => array(), 'IDPROF4' => array(), 'IDPROF5' => array(),'IDPROF6' => array(), 'EMAIL' => array());
703$profid['IDPROF1'][0] = $langs->trans("ProfId1");
704$profid['IDPROF1'][1] = $langs->transcountry('ProfId1', $mysoc->country_code);
705$profid['IDPROF2'][0] = $langs->trans("ProfId2");
706$profid['IDPROF2'][1] = $langs->transcountry('ProfId2', $mysoc->country_code);
707$profid['IDPROF3'][0] = $langs->trans("ProfId3");
708$profid['IDPROF3'][1] = $langs->transcountry('ProfId3', $mysoc->country_code);
709$profid['IDPROF4'][0] = $langs->trans("ProfId4");
710$profid['IDPROF4'][1] = $langs->transcountry('ProfId4', $mysoc->country_code);
711$profid['IDPROF5'][0] = $langs->trans("ProfId5");
712$profid['IDPROF5'][1] = $langs->transcountry('ProfId5', $mysoc->country_code);
713$profid['IDPROF6'][0] = $langs->trans("ProfId6");
714$profid['IDPROF6'][1] = $langs->transcountry('ProfId6', $mysoc->country_code);
715$profid['EMAIL'][0] = $langs->trans("EMail");
716$profid['EMAIL'][1] = $langs->trans('Email');
717if (isModEnabled('accounting')) {
718 $profid['ACCOUNTANCY_CODE_CUSTOMER'] = array();
719 $profid['ACCOUNTANCY_CODE_CUSTOMER'][0] = $langs->trans("CustomerAccountancyCodeShort");
720 $profid['ACCOUNTANCY_CODE_CUSTOMER'][1] = $langs->trans('CustomerAccountancyCodeShort');
721 $profid['ACCOUNTANCY_CODE_SUPPLIER'] = array();
722 $profid['ACCOUNTANCY_CODE_SUPPLIER'][0] = $langs->trans("SupplierAccountancyCodeShort");
723 $profid['ACCOUNTANCY_CODE_SUPPLIER'][1] = $langs->trans('SupplierAccountancyCodeShort');
724}
725
726$nbofloop = count($profid);
727foreach ($profid as $key => $val) {
728 if ($profid[$key][1] != '-') {
729 print '<tr class="oddeven">';
730 print '<td>'.$profid[$key][0]."</td><td>\n";
731 print $profid[$key][1];
732 print '</td>';
733
734 $idprof_unique = 'SOCIETE_'.$key.'_UNIQUE';
735 $idprof_mandatory = 'SOCIETE_'.$key.'_MANDATORY';
736 $idprof_invoice_mandatory = 'SOCIETE_'.$key.'_INVOICE_MANDATORY';
737
738 $verif = !empty($conf->global->$idprof_unique);
739 $mandatory = !empty($conf->global->$idprof_mandatory);
740 $invoice_mandatory = !empty($conf->global->$idprof_invoice_mandatory);
741
742 if ($verif) {
743 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofid&token='.newToken().'&value='.$key.'&status=0">';
744 print img_picto($langs->trans("Activated"), 'switch_on');
745 print '</a></td>';
746 } else {
747 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofid&token='.newToken().'&value='.$key.'&status=1">';
748 print img_picto($langs->trans("Disabled"), 'switch_off');
749 print '</a></td>';
750 }
751
752 if ($mandatory) {
753 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidmandatory&token='.newToken().'&value='.$key.'&status=0">';
754 print img_picto($langs->trans("Activated"), 'switch_on');
755 print '</a></td>';
756 } else {
757 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidmandatory&token='.newToken().'&value='.$key.'&status=1">';
758 print img_picto($langs->trans("Disabled"), 'switch_off');
759 print '</a></td>';
760 }
761
762 if ($invoice_mandatory) {
763 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatory&token='.newToken().'&value='.$key.'&status=0">';
764 print img_picto($langs->trans("Activated"), 'switch_on');
765 print '</a></td>';
766 } else {
767 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatory&token='.newToken().'&value='.$key.'&status=1">';
768 print img_picto($langs->trans("Disabled"), 'switch_off');
769 print '</a></td>';
770 }
771
772 print "</tr>\n";
773 }
774}
775
776// VAT ID
777print '<tr class="oddeven">';
778print '<td colspan="2">'.$langs->trans('VATIntra')."</td>\n";
779$key = 'VAT_INTRA';
780if (getDolGlobalString('SOCIETE_VAT_INTRA_UNIQUE')) {
781 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofid&token='.newToken().'&value='.$key.'&status=0">';
782 print img_picto($langs->trans("Activated"), 'switch_on', 'class="valignmiddle"');
783 print '</a></td>';
784} else {
785 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofid&token='.newToken().'&value='.$key.'&status=1">';
786 print img_picto($langs->trans("Disabled"), 'switch_off', 'class="valignmiddle"');
787 print '</a></td>';
788}
789if (getDolGlobalString('SOCIETE_VAT_INTRA_MANDATORY')) {
790 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidmandatory&token='.newToken().'&value='.$key.'&status=0">';
791 print img_picto($langs->trans("Activated"), 'switch_on', 'class="valignmiddle"');
792 print '</a></td>';
793} else {
794 print '<td class="center"><a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidmandatory&token='.newToken().'&value='.$key.'&status=1">';
795 print img_picto($langs->trans("Disabled"), 'switch_off', 'class="valignmiddle"');
796 print '</a></td>';
797}
798print '<td class="center">';
799if (getDolGlobalString('SOCIETE_VAT_INTRA_INVOICE_MANDATORY') == 'eeconly') {
800 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatoryeeconly&token='.newToken().'&value='.$key.'&status=0">';
801 print img_picto($langs->trans("Activated"), 'switch_on', 'class="valignmiddle paddingrightonly"');
802 print '</a>';
803 print $langs->trans("SaleEEC").'<br>';
804 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatory&token='.newToken().'&value='.$key.'&status=1">';
805 print img_picto($langs->trans("Activated"), 'switch_off', 'class="valignmiddle paddingrightonly"');
806 print '</a>';
807 print $langs->trans("AnySale");
808} elseif (getDolGlobalString('SOCIETE_VAT_INTRA_INVOICE_MANDATORY')) {
809 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatoryeeconly&token='.newToken().'&value='.$key.'&status=1">';
810 print img_picto($langs->trans("Activated"), 'switch_off', 'class="valignmiddle paddingrightonly"');
811 print '</a>';
812 print $langs->trans("SaleEEC").'<br>';
813 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatory&token='.newToken().'&value='.$key.'&status=0">';
814 print img_picto($langs->trans("Activated"), 'switch_on', 'class="valignmiddle paddingrightonly"');
815 print '</a>';
816 print $langs->trans("AnySale");
817} else {
818 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatoryeeconly&token='.newToken().'&value='.$key.'&status=1">';
819 print img_picto($langs->trans("Disabled"), 'switch_off', 'class="valignmiddle paddingrightonly"');
820 print '</a>';
821 print $langs->trans("SaleEEC").'<br>';
822 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setprofidinvoicemandatory&token='.newToken().'&value='.$key.'&status=1">';
823 print img_picto($langs->trans("Disabled"), 'switch_off', 'class="valignmiddle paddingrightonly"');
824 print '</a>';
825 print $langs->trans("AnySale");
826}
827print '</td>';
828print "</tr>\n";
829
830print "</table>\n";
831print '</div>';
832
833print "<br>\n";
834
835print load_fiche_titre($langs->trans("Other"), '', '');
836
837// Autres options
838$form = new Form($db);
839
840print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
841print '<input type="hidden" name="token" value="'.newToken().'">';
842print '<input type="hidden" name="page_y" value="">';
843print '<input type="hidden" name="action" value="updateoptions">';
844
845print '<div class="div-table-responsive-no-min">';
846print '<table class="noborder centpercent">';
847print '<tr class="liste_titre">';
848print "<td>".$langs->trans("Parameters")."</td>\n";
849print '<td class="right" width="60">'.$langs->trans("Value").'</td>'."\n";
850print '<td width="80">&nbsp;</td></tr>'."\n";
851
852// Utilisation formulaire Ajax sur choix societe
853
854print '<tr class="oddeven">';
855print '<td width="80%">'.$form->textwithpicto($langs->trans("DelaiedFullListToSelectCompany"), $langs->trans('UseSearchToSelectCompanyTooltip'), 1).' </td>';
856if (!$conf->use_javascript_ajax) {
857 print '<td class="nowrap right" colspan="2">';
858 print $langs->trans("NotAvailableWhenAjaxDisabled");
859 print "</td>";
860} else {
861 print '<td width="60" class="right">';
862 $arrval = array('0' => $langs->trans("No"),
863 '1' => $langs->trans("Yes").' - <span class="opacitymedium">'.$langs->trans("NumberOfKeyToSearch", 1).'</span>',
864 '2' => $langs->trans("Yes").' - <span class="opacitymedium">'.$langs->trans("NumberOfKeyToSearch", 2).'</span>',
865 '3' => $langs->trans("Yes").' - <span class="opacitymedium">'.$langs->trans("NumberOfKeyToSearch", 3).'</span>',
866 );
867 print $form->selectarray("activate_COMPANY_USE_SEARCH_TO_SELECT", $arrval, getDolGlobalString('COMPANY_USE_SEARCH_TO_SELECT'), 0, 0, 0, '', 0, 0, 0, '', 'minwidth75imp maxwidth400');
868 print '</td><td class="right">';
869 print '<input type="submit" class="button small reposition" name="COMPANY_USE_SEARCH_TO_SELECT" value="'.$langs->trans("Modify").'">';
870 print "</td>";
871}
872print '</tr>';
873
874
875print '<tr class="oddeven">';
876print '<td width="80%">'.$form->textwithpicto($langs->trans("DelaiedFullListToSelectContact"), $langs->trans('UseSearchToSelectContactTooltip'), 1).'</td>';
877if (!$conf->use_javascript_ajax) {
878 print '<td class="nowrap right" colspan="2">';
879 print $langs->trans("NotAvailableWhenAjaxDisabled");
880 print "</td>";
881} else {
882 print '<td width="60" class="right">';
883 $arrval = array('0' => $langs->trans("No"),
884 '1' => $langs->trans("Yes").' - <span class="opacitymedium">'.$langs->trans("NumberOfKeyToSearch", 1).'</span>',
885 '2' => $langs->trans("Yes").' - <span class="opacitymedium">'.$langs->trans("NumberOfKeyToSearch", 2).'</span>',
886 '3' => $langs->trans("Yes").' - <span class="opacitymedium">'.$langs->trans("NumberOfKeyToSearch", 3).'</span>',
887 );
888 print $form->selectarray("activate_CONTACT_USE_SEARCH_TO_SELECT", $arrval, getDolGlobalString('CONTACT_USE_SEARCH_TO_SELECT'), 0, 0, 0, '', 0, 0, 0, '', 'minwidth75imp maxwidth400');
889 print '</td><td class="right">';
890 print '<input type="submit" class="button small reposition" name="CONTACT_USE_SEARCH_TO_SELECT" value="'.$langs->trans("Modify").'">';
891 print "</td>";
892}
893print '</tr>';
894
895
896
897print '<tr class="oddeven">';
898print '<td width="80%">'.$langs->trans("AddRefInList").'</td>';
899print '<td>&nbsp;</td>';
900print '<td class="center">';
901if (getDolGlobalString('SOCIETE_ADD_REF_IN_LIST')) {
902 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaddrefinlist&token='.newToken().'&value=0">';
903 print img_picto($langs->trans("Activated"), 'switch_on');
904} else {
905 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaddrefinlist&token='.newToken().'&value=1">';
906 print img_picto($langs->trans("Disabled"), 'switch_off');
907}
908print '</a></td>';
909print '</tr>';
910
911print '<tr class="oddeven">';
912print '<td width="80%">'.$langs->trans("AddVatInList").'</td>';
913print '<td>&nbsp;</td>';
914print '<td class="center">';
915if (getDolGlobalString('SOCIETE_SHOW_VAT_IN_LIST')) {
916 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setvatinlist&token='.newToken().'&value=0">';
917 print img_picto($langs->trans("Activated"), 'switch_on');
918} else {
919 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setvatinlist&token='.newToken().'&value=1">';
920 print img_picto($langs->trans("Disabled"), 'switch_off');
921}
922print '</a></td>';
923print '</tr>';
924
925print '<tr class="oddeven">';
926print '<td width="80%">'.$langs->trans("AddAdressInList").'</td>';
927print '<td>&nbsp;</td>';
928print '<td class="center">';
929if (getDolGlobalString('COMPANY_SHOW_ADDRESS_SELECTLIST')) {
930 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaddadressinlist&token='.newToken().'&value=0">';
931 print img_picto($langs->trans("Activated"), 'switch_on');
932} else {
933 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaddadressinlist&token='.newToken().'&value=1">';
934 print img_picto($langs->trans("Disabled"), 'switch_off');
935}
936print '</a></td>';
937print '</tr>';
938
939print '<tr class="oddeven">';
940print '<td width="80%">'.$langs->trans("AddEmailPhoneTownInContactList").'</td>';
941print '<td>&nbsp;</td>';
942print '<td class="center">';
943if (getDolGlobalString('CONTACT_SHOW_EMAIL_PHONE_TOWN_SELECTLIST')) {
944 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaddemailphonetownincontactlist&token='.newToken().'&value=0">';
945 print img_picto($langs->trans("Activated"), 'switch_on');
946} else {
947 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaddemailphonetownincontactlist&token='.newToken().'&value=1">';
948 print img_picto($langs->trans("Disabled"), 'switch_off');
949}
950print '</a></td>';
951print '</tr>';
952
953if (isModEnabled("shipping")) {
954 if (getDolGlobalInt('MAIN_FEATURES_LEVEL') > 0) { // Visible on experimental only because seems to not be implemented everywhere (only on proposal)
955 print '<tr class="oddeven">';
956 print '<td width="80%">'.$langs->trans("AskForPreferredShippingMethod").'</td>';
957 print '<td>&nbsp;</td>';
958 print '<td class="center">';
959 if (getDolGlobalString('SOCIETE_ASK_FOR_SHIPPING_METHOD')) {
960 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaskforshippingmet&token='.newToken().'&value=0">';
961 print img_picto($langs->trans("Activated"), 'switch_on');
962 } else {
963 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setaskforshippingmet&token='.newToken().'&value=1">';
964 print img_picto($langs->trans("Disabled"), 'switch_off');
965 }
966 print '</a></td>';
967 print '</tr>';
968 }
969}
970
971// Disable Prospect/Customer thirdparty type
972print '<tr class="oddeven">';
973print '<td width="80%">'.$langs->trans("DisableProspectCustomerType").'</td>';
974print '<td>&nbsp;</td>';
975print '<td class="center">';
976if (getDolGlobalString('SOCIETE_DISABLE_PROSPECTSCUSTOMERS')) {
977 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setdisableprospectcustomer&token='.newToken().'&value=0">';
978 print img_picto($langs->trans("Activated"), 'switch_on');
979} else {
980 print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=setdisableprospectcustomer&token='.newToken().'&value=1">';
981 print img_picto($langs->trans("Disabled"), 'switch_off');
982}
983print '</a></td>';
984print '</tr>';
985
986if (!getDolGlobalString('SOCIETE_DISABLE_PROSPECTSCUSTOMERS')) {
987 // Default Prospect/Customer thirdparty type on customer création
988 print '<tr class="oddeven">';
989 print '<td>'.$langs->trans("DefaultCustomerType").'</td>';
990 print '<td>';
991 print $formcompany->selectProspectCustomerType(getDolGlobalString('THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT'), 'defaultcustomertype', 'defaultcustomertype', 'admin');
992 print '</td>';
993 print '<td class="center">';
994 print '<input type="submit" class="button small reposition" name="THIRDPARTY_CUSTOMERTYPE_BY_DEFAULT" value="'.$langs->trans("Modify").'">';
995 print '</td>';
996 print '</tr>';
997}
998
999if (getDolGlobalString('THIRDPARTY_SUGGEST_ALSO_ADDRESS_CREATION')) {
1000 print '<tr class="oddeven">';
1001 print '<td width="80%">'.$langs->trans('ContactsDefaultRoles').'</td>';
1002 if (!$conf->use_javascript_ajax) {
1003 print '<td class="nowrap right" colspan="2">';
1004 print $langs->trans("NotAvailableWhenAjaxDisabled");
1005 print "</td>";
1006 } else {
1007 print '<td width="60" class="right">';
1008 $contact = new Contact($db); // InfraS add
1009 $contactType = $contact->listeTypeContacts('external', 0, 1);
1010 $selected = explode(',', getDolGlobalString('CONTACTS_DEFAULT_ROLES'));
1011 print $form->multiselectarray('activate_CONTACTS_DEFAULT_ROLES', $contactType, $selected, 0, 0, 'minwidth75imp');
1012 print '</td><td class="right">';
1013 print '<input type="submit" class="button small eposition" name="CONTACTS_DEFAULT_ROLES" value="'.$langs->trans("Modify").'">';
1014 print "</td>";
1015 }
1016 print '</tr>';
1017}
1018
1019print '</table>';
1020print '</div>';
1021
1022print '</form>';
1023
1024
1025print dol_get_fiche_end();
1026
1027// End of page
1028llxFooter();
1029$db->close();
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).
Definition admin.lib.php:69
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:87
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.
Definition wrapper.php:71
Class to manage contact/addresses.
Class to build HTML component for third parties management Only common components are here.
Class to manage generation of HTML components Only common components must be here.
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.
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, $allowothertags=array())
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.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
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...
Definition member.php:79
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.