27if (!defined(
'NOREQUIREMENU')) {
28 define(
'NOREQUIREMENU',
'1');
30if (!defined(
'NOTOKENRENEWAL')) {
31 define(
'NOTOKENRENEWAL',
'1');
36require
'../main.inc.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
45require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
46require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
49$langs->loadLangs(array(
'errors',
'admin',
'modulebuilder',
'exports'));
51$mode =
GETPOST(
'mode',
'alpha');
52$action =
GETPOST(
'action',
'aZ09');
58if (empty($user->admin)) {
77$help_url =
'EN:First_setup|FR:Premiers_paramétrages|ES:Primeras_configuraciones';
78llxHeader(
'', $langs->trans(
"Setup"), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-modulehelp');
80print
'<!-- Force style container -->'.
"\n".
'<style>
89$arrayofnatures = array(
'core' => $langs->transnoentitiesnoconv(
"Core"),
'external' => $langs->transnoentitiesnoconv(
"External").
' - '.$langs->trans(
"AllPublishers"));
96'@phan-var-force DolibarrModules[] $modules';
103$modNameLoaded = array();
104$familyinfo = array();
106foreach ($modulesdir as $dir) {
109 dol_syslog(
"Scan directory ".$dir.
" for module descriptor files (modXXX.class.php)");
110 $handle = @opendir($dir);
111 if (is_resource($handle)) {
112 while (($file = readdir($handle)) !==
false) {
114 if (is_readable($dir.$file) && substr($file, 0, 3) ==
'mod' && substr($file,
dol_strlen($file) - 10) ==
'.class.php') {
115 $modName = substr($file, 0,
dol_strlen($file) - 10);
118 if (!empty($modNameLoaded[$modName])) {
119 $mesg =
"Error: Module ".$modName.
" was found twice: Into ".$modNameLoaded[$modName].
" and ".$dir.
". You probably have an old file on your disk.<br>";
126 $res = include_once $dir.$file;
127 if (class_exists($modName)) {
129 $objMod =
new $modName($db);
130 '@phan-var-force DolibarrModules $objMod';
131 $modNameLoaded[$modName] = $dir;
133 if (!$objMod->numero > 0 && $modName !=
'modUser') {
134 dol_syslog(
'The module descriptor '.$modName.
' must have a numero property', LOG_ERR);
136 $j = $objMod->numero;
138 $modulequalified = 1;
141 $const_name =
'MAIN_MODULE_'.strtoupper(preg_replace(
'/^mod/i',
'', get_class($objMod)));
143 $modulequalified = 0;
146 $modulequalified = 0;
149 $modulequalified = 0;
155 if ($modulequalified > 0) {
157 $external = ($objMod->isCoreOrExternalModule() ==
'external');
160 $arrayofnatures[
'external_'.$publisher] = $langs->trans(
"External").
' - '.$publisher;
162 $arrayofnatures[
'external_'] = $langs->trans(
"External").
' - '.$langs->trans(
"UnknownPublishers");
165 ksort($arrayofnatures);
169 if ($modulequalified > 0) {
170 $modules[$i] = $objMod;
171 $filename[$i] = $modName;
174 if (is_array($objMod->familyinfo) && !empty($objMod->familyinfo)) {
175 $familyinfo = array_merge($familyinfo, $objMod->familyinfo);
176 $familykey = key($objMod->familyinfo);
178 $familykey = $objMod->family;
180 if (empty($familykey) || $familykey ===
null) {
181 $familykey =
'other';
184 $moduleposition = ($objMod->module_position ? $objMod->module_position :
'50');
185 if ($moduleposition ==
'50' && ($objMod->isCoreOrExternalModule() ==
'external')) {
186 $moduleposition =
'80';
189 if (empty($familyinfo[$familykey][
'position'])) {
190 $familyinfo[$familykey][
'position'] =
'0';
193 $orders[$i] = $familyinfo[$familykey][
'position'].
"_".$familykey.
"_".$moduleposition.
"_".$j;
197 $specialstring =
'unknown';
198 if ($objMod->version ==
'development' || $objMod->version ==
'experimental') {
199 $specialstring =
'expdev';
201 if (isset($categ[$specialstring])) {
202 $categ[$specialstring]++;
204 $categ[$specialstring] = 1;
209 dol_syslog(
"Module ".get_class($objMod).
" not qualified");
212 dol_syslog(
"Failed to load ".$dir.$file.
" ".$e->getMessage(), LOG_ERR);
215 print
info_admin(
"Warning bad descriptor file : ".$dir.$file.
" (Class ".$modName.
" not found into file)", 0, 0,
'1',
'warning');
218 dol_syslog(
"Failed to load ".$dir.$file.
" ".$e->getMessage(), LOG_ERR);
225 dol_syslog(
"htdocs/admin/modulehelp.php: Failed to open directory ".$dir.
". See permission and open_basedir option.", LOG_WARNING);
239foreach ($orders as $tmpkey => $tmpvalue) {
240 $tmpMod = $modules[$tmpkey];
241 '@phan-var-force DolibarrModules $tmpMod';
242 if ($tmpMod->numero == $id) {
244 $modName = $filename[$tmpkey];
245 $dirofmodule = $dirmod[$tmpkey];
251if (!is_object($objMod)) {
252 $msg = __FILE__.
" Module with no found for id:".
$id;
257$value = $orders[$key];
258$tab = explode(
'_', $value);
259$familyposition = $tab[0];
261$module_position = $tab[2];
269$modulename = $objMod->getName();
270$moduledesc = $objMod->getDesc(1);
271$moduleauthor = $objMod->getPublisher();
272$moduledir = strtolower(preg_replace(
'/^mod/i',
'', get_class($objMod)));
274$const_name =
'MAIN_MODULE_'.strtoupper(preg_replace(
'/^mod/i',
'', get_class($objMod)));
276$text =
'<span class="opacitymedium">'.$langs->trans(
"LastActivationDate").
':</span> ';
278 $text .=
dol_print_date($objMod->getLastActivationDate(),
'dayhour');
280 $text .= $langs->trans(
"Disabled");
282$tmp = $objMod->getLastActivationInfo();
283$authorid = (empty($tmp[
'authorid']) ?
'' : $tmp[
'authorid']);
285 $tmpuser =
new User($db);
286 $tmpuser->fetch($authorid);
287 $text .=
'<br><span class="opacitymedium">'.$langs->trans(
"LastActivationAuthor").
':</span> ';
288 $text .= $tmpuser->getNomUrl(-1);
290$ip = (empty($tmp[
'ip']) ?
'' : $tmp[
'ip']);
292 $text .=
'<br><span class="opacitymedium">'.$langs->trans(
"LastActivationIP").
':</span> ';
295$lastactivationversion = (empty($tmp[
'lastactivationversion']) ?
'' : $tmp[
'lastactivationversion']);
296if ($lastactivationversion && $lastactivationversion !=
'dolibarr') {
297 $text .=
'<br><span class="opacitymedium">'.$langs->trans(
"LastActivationVersion").
':</span> ';
298 $text .= $lastactivationversion;
303$title = ($modulename ? $modulename : $moduledesc);
305print
'<div class="centpercent">';
307$picto =
'object_'.$objMod->picto;
315 dol_syslog(
"Error for module ".$key.
" - Property name of module looks empty", LOG_WARNING);
319if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
320 foreach ($objMod->langfiles as $domain) {
321 $langs->load($domain);
329$version = $objMod->getVersion(0);
331if (preg_match(
'/development/i', $version)) {
332 $versiontrans .=
img_warning($langs->trans(
"Development"),
'style="float: left"');
334if (preg_match(
'/experimental/i', $version)) {
335 $versiontrans .=
img_warning($langs->trans(
"Experimental"),
'style="float: left"');
337if (preg_match(
'/deprecated/i', $version)) {
338 $versiontrans .=
img_warning($langs->trans(
"Deprecated"),
'style="float: left"');
340$versiontrans .= $objMod->getVersion(1);
344if ($objMod->isCoreOrExternalModule() ==
'external') {
345 $imginfo =
"info_black";
351if ($mode ==
'desc') {
353 $text .=
'<br>'.$moduledesc.
'<br><br><br>';
356 $moduledescriptorfile = get_class($objMod).
'.class.php';
357 $text .=
'<span class="opacitymedium">'.$langs->trans(
"DescriptorFile").
':</span> '.$moduledescriptorfile;
359 $text .=
'<br><span class="opacitymedium">'.$langs->trans(
"IdModule").
':</span> '.$objMod->numero;
362 if ($objMod->isCoreOrExternalModule() ==
'external') {
363 $tmpdirofmoduletoshow = preg_replace(
'/^'.preg_quote(DOL_DOCUMENT_ROOT,
'/').
'/',
'', (
string) $dirofmodule);
364 $textexternal .=
'<br><span class="opacitymedium">'.$langs->trans(
"Origin").
':</span> '.$langs->trans(
"ExternalModule").
' - '.$langs->trans(
"InstalledInto", $tmpdirofmoduletoshow);
366 $installmoduleslock = DOL_DATA_ROOT.
'/installmodules.lock';
367 global $dolibarr_allow_download_external_modules;
368 if ((!file_exists($installmoduleslock) || !empty($dolibarr_allow_download_external_modules)) && preg_match(
'/\/custom\//', (
string) $dirofmodule)) {
370 $textexternal .=
' <a href="'.DOL_URL_ROOT.
'/admin/tools/export_files.php?export_type=externalmodule&what='.urlencode($moduledir).
'&compression=zip&zipfilename_template=module_'.$moduledir.
'-'.$version.
'.notorig" target="_blank" rel="noopener">'.
img_picto(
'',
'download').
'</a>';
373 $textexternal .=
img_picto($langs->trans(
"DownloadOfModuleFileDisallowed"),
'download',
'class="opacitymedium paddingleft"');
376 if ($objMod->editor_name !=
'dolibarr') {
377 $textexternal .=
'<br><span class="opacitymedium">'.$langs->trans(
"Publisher").
':</span> '.(empty($objMod->editor_name) ? $langs->trans(
"Unknown") : $objMod->editor_name);
379 $editor_url = $objMod->editor_url;
380 if (!preg_match(
'/^http/', $editor_url)) {
381 $editor_url =
'https://'.$editor_url;
383 $editor_url_to_show = preg_replace(
'/(utm_[a-z_]+|origin)=[a-z0-9_]+/i',
'', $editor_url);
384 $editor_url_to_show = preg_replace(
'/[\/\?]+$/',
'', $editor_url_to_show);
385 if (!empty($objMod->editor_url) && !preg_match(
'/dolibarr\.org/i', $objMod->editor_url)) {
386 $textexternal .= ($objMod->editor_name !=
'dolibarr' ?
' - ' :
'').
img_picto(
'',
'globe').
' <a href="'.$editor_url.
'" target="_blank" rel="noopener noreferrer external">'.$editor_url_to_show.
'</a>';
388 $text .= $textexternal;
390 $text .=
'<br><span class="opacitymedium">'.$langs->trans(
"Origin").
':</span> '.$langs->trans(
"Core");
391 if (empty($objMod->numero)) {
392 $text .=
' <span class="italic opacitymedium">('.$langs->trans(
"AlwaysEnabled").
')</span>';
393 } elseif (!empty($objMod->enabled_bydefault)) {
394 $text .=
' <span class="italic opacitymedium">('.$langs->trans(
"EnabledByDefaultAtInstall").
')</span>';
398 $text .=
'<br><span class="opacitymedium">'.$langs->trans(
"Version").
':</span> '.$version;
402 $moduledesclong = $objMod->getDescLong();
403 if ($moduledesclong) {
404 $text .=
'<br><hr><div class="moduledesclong">'.$moduledesclong.
'<div>';
408if ($mode ==
'feature') {
409 $text .=
'<br><strong>'.$langs->trans(
"DependsOn").
':</strong> ';
410 if (is_array($objMod->depends) && count($objMod->depends)) {
412 foreach ($objMod->depends as $modulestringorarray) {
413 if (is_array($modulestringorarray)) {
414 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).implode(
', ', $modulestringorarray);
416 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$modulestringorarray;
421 $text .=
'<span class="opacitymedium">'.$langs->trans(
"None").
'</span>';
425 $text .=
'<br><strong>'.$langs->trans(
"RequiredBy").
':</strong> ';
426 if (is_array($objMod->requiredby) && count($objMod->requiredby)) {
428 foreach ($objMod->requiredby as $modulestringorarray) {
429 if (is_array($modulestringorarray)) {
430 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).implode(
', ', $modulestringorarray);
432 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$modulestringorarray;
437 $text .=
'<span class="opacitymedium">'.$langs->trans(
"None").
'</span>';
442 $text .=
'<br><strong>'.$langs->trans(
"AddDataTables").
':</strong> ';
443 $listofsqlfiles1 =
dol_dir_list(DOL_DOCUMENT_ROOT.
'/install/mysql/tables/',
'files', 0,
'llx.*-'.$moduledir.
'\.sql', array(
'\.key\.sql',
'\.sql\.back'));
444 $listofsqlfiles2 =
dol_dir_list(
dol_buildpath($moduledir.
'/sql/'),
'files', 0,
'llx.*\.sql', array(
'\.key\.sql',
'\.sql\.back'));
445 $sqlfiles = array_merge($listofsqlfiles1, $listofsqlfiles2);
447 if (count($sqlfiles) > 0) {
449 foreach ($sqlfiles as $val) {
450 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).preg_replace(
'/\-'.$moduledir.
'$/',
'', preg_replace(
'/\.sql$/',
'', preg_replace(
'/llx_/',
'', $val[
'name'])));
454 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
459 $text .=
'<br><strong>'.$langs->trans(
"AddDictionaries").
':</strong> ';
460 if (isset($objMod->dictionaries) && isset($objMod->dictionaries[
'tablib']) && is_array($objMod->dictionaries[
'tablib']) && count($objMod->dictionaries[
'tablib'])) {
462 foreach ($objMod->dictionaries[
'tablib'] as $val) {
463 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$val;
467 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
472 $text .=
'<br><strong>'.$langs->trans(
"AddData").
':</strong> ';
475 $text .=
img_picto(
'',
'tick',
'class="pictofixedwidth"').$langs->trans(
"Yes").
' <span class="opacitymedium">('.$moduledir.
'/sql/data.sql)</span>';
477 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
482 $text .=
'<br><strong>'.$langs->trans(
"AddRemoveTabs").
':</strong> ';
483 if (isset($objMod->tabs) && is_array($objMod->tabs) && count($objMod->tabs)) {
485 foreach ($objMod->tabs as $val) {
486 if (is_array($val)) {
489 if (is_string($val)) {
490 $tmp = explode(
':', $val, 3);
491 $text .= ($i ?
', ' :
'').$tmp[0].
':'.$tmp[1];
496 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
501 $text .=
'<br><strong>'.$langs->trans(
"AddModels").
':</strong> ';
502 if (isset($objMod->module_parts) && isset($objMod->module_parts[
'models']) && $objMod->module_parts[
'models']) {
503 $text .=
img_picto(
'',
'tick',
'class="pictofixedwidth"').$langs->trans(
"Yes");
505 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
510 $text .=
'<br><strong>'.$langs->trans(
"AddSubstitutions").
':</strong> ';
511 if (isset($objMod->module_parts) && isset($objMod->module_parts[
'substitutions']) && $objMod->module_parts[
'substitutions']) {
512 $text .=
img_picto(
'',
'tick',
'class="pictofixedwidth"').$langs->trans(
"Yes");
514 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
519 $text .=
'<br><strong>'.$langs->trans(
"AddSheduledJobs").
':</strong> ';
520 if (isset($objMod->cronjobs) && is_array($objMod->cronjobs) && count($objMod->cronjobs)) {
522 foreach ($objMod->cronjobs as $val) {
523 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$langs->trans($val[
'label']);
527 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
532 $text .=
'<br><strong>'.$langs->trans(
"AddTriggers").
':</strong> ';
533 $moreinfoontriggerfile =
'';
534 if (isset($objMod->module_parts) && isset($objMod->module_parts[
'triggers']) && $objMod->module_parts[
'triggers']) {
537 $yesno =
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
539 require_once DOL_DOCUMENT_ROOT.
'/core/class/interfaces.class.php';
541 $triggers = $interfaces->getTriggersList(array((($objMod->isCoreOrExternalModule() ==
'external') ?
'/'.$moduledir :
'').
'/core/triggers'));
542 foreach ($triggers as $triggercursor) {
543 if ($triggercursor[
'module'] == $moduledir) {
545 $moreinfoontriggerfile =
' ('.$triggercursor[
'relpath'].
')';
549 $text .= ($yesno ==
'Yes' ?
img_picto(
'',
'tick',
'class="pictofixedwidth"') :
'').$langs->trans($yesno).$moreinfoontriggerfile;
553 $text .=
'<br><strong>'.$langs->trans(
"AddBoxes").
':</strong> ';
554 if (isset($objMod->boxes) && is_array($objMod->boxes) && count($objMod->boxes)) {
556 foreach ($objMod->boxes as $val) {
557 $boxstring = (empty($val[
'file']) ? (empty($val[0]) ?
'' : $val[0]) : $val[
'file']);
559 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$boxstring;
564 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
569 $text .=
'<br><strong>'.$langs->trans(
"AddHooks").
':</strong> ';
570 if (isset($objMod->module_parts) && isset($objMod->module_parts[
'hooks']) && is_array($objMod->module_parts[
'hooks']) && count($objMod->module_parts[
'hooks'])) {
572 foreach ($objMod->module_parts[
'hooks'] as $key => $val) {
573 if ($key ===
'entity') {
578 if ($key ===
'data') {
579 if (is_array($val)) {
580 foreach ($val as $value) {
581 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).($value);
589 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).($val);
593 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
598 $text .=
'<br><strong>'.$langs->trans(
"AddPermissions").
':</strong> ';
599 if (isset($objMod->rights) && is_array($objMod->rights) && count($objMod->rights)) {
601 foreach ($objMod->rights as $val) {
602 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).($val[1]);
606 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
611 $text .=
'<br><strong>'.$langs->trans(
"AddMenus").
':</strong> ';
612 if (isset($objMod->menu) && !empty($objMod->menu)) {
613 $text .=
img_picto(
'',
'tick',
'class="pictofixedwidth"').$langs->trans(
"Yes");
615 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
620 $text .=
'<br><strong>'.$langs->trans(
"AddExportProfiles").
':</strong> ';
621 if (isset($objMod->export_label) && is_array($objMod->export_label) && count($objMod->export_label)) {
623 foreach ($objMod->export_label as $val) {
624 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$langs->trans($val);
628 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
633 $text .=
'<br><strong>'.$langs->trans(
"AddImportProfiles").
':</strong> ';
634 if (isset($objMod->import_label) && is_array($objMod->import_label) && count($objMod->import_label)) {
636 foreach ($objMod->import_label as $val) {
637 $text .= ($i ?
', ' :
img_picto(
'',
'tick',
'class="pictofixedwidth"')).$langs->trans($val);
641 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
646 $text .=
'<br><strong>'.$langs->trans(
"AddWebsiteTemplates").
':</strong> ';
647 if (isset($objMod->module_parts) && isset($objMod->module_parts[
'websitetemplates']) && $objMod->module_parts[
'websitetemplates']) {
648 $text .=
img_picto(
'',
'tick',
'class="pictofixedwidth"').$langs->trans(
"Yes");
650 $text .=
'<span class="opacitymedium">'.$langs->trans(
"No").
'</span>';
655 $text .=
'<br><strong>'.$langs->trans(
"AddOtherPagesOrServices").
':</strong> ';
656 $text .=
'<span class="opacitymedium">'.$langs->trans(
"DetectionNotPossible").
'</span>';
660if ($mode ==
'changelog') {
661 $changelog = $objMod->getChangeLog();
663 $text .=
'<div class="moduledesclong">'.$changelog.
'<div>';
665 $text .=
'<div class="moduledesclong"><span class="opacitymedium">'.$langs->trans(
"NotAvailable").
'</span></div>';
$id
Support class for third parties, contacts, members, users or resources.
modulehelp_prepare_head($object)
Prepare array with list of tabs.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
Class to manage triggers.
Class to manage Dolibarr users.
dol_is_file($pathoffile)
Return if path is a file.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dolGetModulesDirs($subdir='')
Return list of directories that contain modules.
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)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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, $morecssdiv='')
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='')
Show information in HTML for admin users or standard users.
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...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.