dolibarr  17.0.4
modulehelp.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2017 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2022 Charlene Benke <charlene@patas-monkey.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
25 if (!defined('NOREQUIREMENU')) {
26  define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
27 }
28 if (!defined('NOTOKENRENEWAL')) {
29  define('NOTOKENRENEWAL', '1'); // Disabled because this page is into a popup on module search page and we want to avoid to have an Anti CSRF token error (done if MAIN_SECURITY_CSRF_WITH_TOKEN is on) when we make a second search after closing popup.
30 }
31 
32 
33 // Load Dolibarr environment
34 require '../main.inc.php';
35 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
36 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
37 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
38 
39 // Load translation files required by the page
40 $langs->loadLangs(array('errors', 'admin', 'modulebuilder', 'exports'));
41 
42 $mode = GETPOST('mode', 'alpha');
43 $action = GETPOST('action', 'aZ09');
44 $id = GETPOST('id', 'int');
45 if (empty($mode)) {
46  $mode = 'desc';
47 }
48 
49 if (!$user->admin) {
51 }
52 
53 
54 
55 /*
56  * Actions
57  */
58 
59 // Nothing
60 
61 
62 /*
63  * View
64  */
65 
66 $form = new Form($db);
67 
68 $help_url = 'EN:First_setup|FR:Premiers_paramétrages|ES:Primeras_configuraciones';
69 llxHeader('', $langs->trans("Setup"), $help_url);
70 
71 print '<!-- Force style container -->'."\n".'<style>
72 .id-container {
73  width: 100%;
74 }
75 #id-right {
76  padding-left: unset;
77 }
78 </style>';
79 
80 $arrayofnatures = array('core'=>$langs->transnoentitiesnoconv("Core"), 'external'=>$langs->transnoentitiesnoconv("External").' - '.$langs->trans("AllPublishers"));
81 
82 // Search modules dirs
83 $modulesdir = dolGetModulesDirs();
84 
85 
86 $filename = array();
87 $modules = array();
88 $orders = array();
89 $categ = array();
90 $dirmod = array();
91 $i = 0; // is a sequencer of modules found
92 $j = 0; // j is module number. Automatically affected if module number not defined.
93 $modNameLoaded = array();
94 
95 foreach ($modulesdir as $dir) {
96  // Load modules attributes in arrays (name, numero, orders) from dir directory
97  //print $dir."\n<br>";
98  dol_syslog("Scan directory ".$dir." for module descriptor files (modXXX.class.php)");
99  $handle = @opendir($dir);
100  if (is_resource($handle)) {
101  while (($file = readdir($handle)) !== false) {
102  //print "$i ".$file."\n<br>";
103  if (is_readable($dir.$file) && substr($file, 0, 3) == 'mod' && substr($file, dol_strlen($file) - 10) == '.class.php') {
104  $modName = substr($file, 0, dol_strlen($file) - 10);
105 
106  if ($modName) {
107  if (!empty($modNameLoaded[$modName])) {
108  $mesg = "Error: Module ".$modName." was found twice: Into ".$modNameLoaded[$modName]." and ".$dir.". You probably have an old file on your disk.<br>";
109  setEventMessages($mesg, null, 'warnings');
110  dol_syslog($mesg, LOG_ERR);
111  continue;
112  }
113 
114  try {
115  $res = include_once $dir.$file;
116  if (class_exists($modName)) {
117  try {
118  $objMod = new $modName($db);
119  $modNameLoaded[$modName] = $dir;
120 
121  if (!$objMod->numero > 0 && $modName != 'modUser') {
122  dol_syslog('The module descriptor '.$modName.' must have a numero property', LOG_ERR);
123  }
124  $j = $objMod->numero;
125 
126  $modulequalified = 1;
127 
128  // We discard modules according to features level (PS: if module is activated we always show it)
129  $const_name = 'MAIN_MODULE_'.strtoupper(preg_replace('/^mod/i', '', get_class($objMod)));
130  if ($objMod->version == 'development' && (empty($conf->global->$const_name) && ($conf->global->MAIN_FEATURES_LEVEL < 2))) {
131  $modulequalified = 0;
132  }
133  if ($objMod->version == 'experimental' && (empty($conf->global->$const_name) && ($conf->global->MAIN_FEATURES_LEVEL < 1))) {
134  $modulequalified = 0;
135  }
136  if (preg_match('/deprecated/', $objMod->version) && (empty($conf->global->$const_name) && ($conf->global->MAIN_FEATURES_LEVEL >= 0))) {
137  $modulequalified = 0;
138  }
139 
140  // We discard modules according to property disabled
141  //if (!empty($objMod->hidden)) $modulequalified=0;
142 
143  if ($modulequalified > 0) {
144  $publisher = dol_escape_htmltag($objMod->getPublisher());
145  $external = ($objMod->isCoreOrExternalModule() == 'external');
146  if ($external) {
147  if ($publisher) {
148  $arrayofnatures['external_'.$publisher] = $langs->trans("External").' - '.$publisher;
149  } else {
150  $arrayofnatures['external_'] = $langs->trans("External").' - '.$langs->trans("UnknownPublishers");
151  }
152  }
153  ksort($arrayofnatures);
154  }
155 
156  // Define array $categ with categ with at least one qualified module
157  if ($modulequalified > 0) {
158  $modules[$i] = $objMod;
159  $filename[$i] = $modName;
160 
161  // Gives the possibility to the module, to provide his own family info and position of this family
162  if (is_array($objMod->familyinfo) && !empty($objMod->familyinfo)) {
163  if (!is_array($familyinfo)) {
164  $familyinfo = array();
165  }
166  $familyinfo = array_merge($familyinfo, $objMod->familyinfo);
167  $familykey = key($objMod->familyinfo);
168  } else {
169  $familykey = $objMod->family;
170  }
171 
172  $moduleposition = ($objMod->module_position ? $objMod->module_position : '50');
173  if ($moduleposition == '50' && ($objMod->isCoreOrExternalModule() == 'external')) {
174  $moduleposition = '80'; // External modules at end by default
175  }
176 
177  if (empty($familyinfo[$familykey]['position'])) {
178  $familyinfo[$familykey]['position'] = '0';
179  }
180 
181  $orders[$i] = $familyinfo[$familykey]['position']."_".$familykey."_".$moduleposition."_".$j; // Sort by family, then by module position then number
182  $dirmod[$i] = $dir;
183  //print $i.'-'.$dirmod[$i].'<br>';
184  // Set categ[$i]
185  $specialstring = 'unknown';
186  if ($objMod->version == 'development' || $objMod->version == 'experimental') {
187  $specialstring = 'expdev';
188  }
189  if (isset($categ[$specialstring])) {
190  $categ[$specialstring]++; // Array of all different modules categories
191  } else {
192  $categ[$specialstring] = 1;
193  }
194  $j++;
195  $i++;
196  } else {
197  dol_syslog("Module ".get_class($objMod)." not qualified");
198  }
199  } catch (Exception $e) {
200  dol_syslog("Failed to load ".$dir.$file." ".$e->getMessage(), LOG_ERR);
201  }
202  } else {
203  print "Warning bad descriptor file : ".$dir.$file." (Class ".$modName." not found into file)<br>";
204  }
205  } catch (Exception $e) {
206  dol_syslog("Failed to load ".$dir.$file." ".$e->getMessage(), LOG_ERR);
207  }
208  }
209  }
210  }
211  closedir($handle);
212  } else {
213  dol_syslog("htdocs/admin/modulehelp.php: Failed to open directory ".$dir.". See permission and open_basedir option.", LOG_WARNING);
214  }
215 }
216 
217 asort($orders);
218 //var_dump($orders);
219 //var_dump($categ);
220 //var_dump($modules);
221 
222 
223 unset($objMod);
224 $i = 0;
225 foreach ($orders as $tmpkey => $tmpvalue) {
226  $tmpMod = $modules[$tmpkey];
227  if ($tmpMod->numero == $id) {
228  $key = $i;
229  $modName = $filename[$tmpkey];
230  $dirofmodule = $dirmod[$tmpkey];
231  $objMod = $tmpMod;
232  break;
233  }
234  $i++;
235 }
236 $value = $orders[$key];
237 $tab = explode('_', $value);
238 $familyposition = $tab[0]; $familykey = $tab[1]; $module_position = $tab[2]; $numero = $tab[3];
239 
240 
241 
242 $head = modulehelp_prepare_head($objMod);
243 
244 // Check filters
245 $modulename = $objMod->getName();
246 $moduledesc = $objMod->getDesc();
247 $moduleauthor = $objMod->getPublisher();
248 $moduledir = strtolower(preg_replace('/^mod/i', '', get_class($objMod)));
249 
250 $const_name = 'MAIN_MODULE_'.strtoupper(preg_replace('/^mod/i', '', get_class($objMod)));
251 
252 $text = '<span class="opacitymedium">'.$langs->trans("LastActivationDate").':</span> ';
253 if (!empty($conf->global->$const_name)) {
254  $text .= dol_print_date($objMod->getLastActivationDate(), 'dayhour');
255 } else {
256  $text .= $langs->trans("Disabled");
257 }
258 $tmp = $objMod->getLastActivationInfo();
259 $authorid = (empty($tmp['authorid']) ? '' : $tmp['authorid']);
260 if ($authorid > 0) {
261  $tmpuser = new User($db);
262  $tmpuser->fetch($authorid);
263  $text .= '<br><span class="opacitymedium">'.$langs->trans("LastActivationAuthor").':</span> ';
264  $text .= $tmpuser->getNomUrl(1);
265 }
266 $ip = (empty($tmp['ip']) ? '' : $tmp['ip']);
267 if ($ip) {
268  $text .= '<br><span class="opacitymedium">'.$langs->trans("LastActivationIP").':</span> ';
269  $text .= $ip;
270 }
271 $lastactivationversion = (empty($tmp['lastactivationversion']) ? '' : $tmp['lastactivationversion']);
272 if ($lastactivationversion) {
273  $text .= '<br><span class="opacitymedium">'.$langs->trans("LastActivationVersion").':</span> ';
274  $text .= $lastactivationversion;
275 }
276 
277 $moreinfo = $text;
278 
279 $title = ($modulename ? $modulename : $moduledesc);
280 
281 print '<div class="centpercent">';
282 
283 $picto = 'object_'.$objMod->picto;
284 
285 print load_fiche_titre(($modulename ? $modulename : $moduledesc), $moreinfo, $picto, 0, '', 'titlemodulehelp');
286 print '<br>';
287 
288 print dol_get_fiche_head($head, $mode, '', -1);
289 
290 if (!$modulename) {
291  dol_syslog("Error for module ".$key." - Property name of module looks empty", LOG_WARNING);
292 }
293 
294 // Load all lang files of module
295 if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
296  foreach ($objMod->langfiles as $domain) {
297  $langs->load($domain);
298  }
299 }
300 
301 
302 
303 
304 // Version (with picto warning or not)
305 $version = $objMod->getVersion(0);
306 $versiontrans = '';
307 if (preg_match('/development/i', $version)) {
308  $versiontrans .= img_warning($langs->trans("Development"), 'style="float: left"');
309 }
310 if (preg_match('/experimental/i', $version)) {
311  $versiontrans .= img_warning($langs->trans("Experimental"), 'style="float: left"');
312 }
313 if (preg_match('/deprecated/i', $version)) {
314  $versiontrans .= img_warning($langs->trans("Deprecated"), 'style="float: left"');
315 }
316 $versiontrans .= $objMod->getVersion(1);
317 
318 // Define imginfo
319 $imginfo = "info";
320 if ($objMod->isCoreOrExternalModule() == 'external') {
321  $imginfo = "info_black";
322 }
323 
324 // Define text of description of module
325 $text = '';
326 
327 if ($mode == 'desc') {
328  if ($moduledesc) {
329  $text .= '<br>'.$moduledesc.'<br><br><br>';
330  }
331 
332  $text .= '<span class="opacitymedium">'.$langs->trans("Version").':</span> '.$version;
333 
334  $moduledescriptorfile = get_class($objMod).'.class.php';
335  $text .= '<br><span class="opacitymedium">'.$langs->trans("DescriptorFile").':</span> '.$moduledescriptorfile;
336 
337  $textexternal = '';
338  if ($objMod->isCoreOrExternalModule() == 'external') {
339  $tmpdirofmoduletoshow = preg_replace('/^'.preg_quote(DOL_DOCUMENT_ROOT, '/').'/', '', $dirofmodule);
340  $textexternal .= '<br><span class="opacitymedium">'.$langs->trans("Origin").':</span> '.$langs->trans("ExternalModule").' - '.$langs->trans("InstalledInto", $tmpdirofmoduletoshow);
341 
342  global $dolibarr_allow_download_external_modules;
343  if (!empty($dolibarr_allow_download_external_modules) && preg_match('/\/custom\//', $dirofmodule)) {
344  // Add a link to download a zip of the module
345  $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>';
346  }
347 
348  if ($objMod->editor_name != 'dolibarr') {
349  $textexternal .= '<br><span class="opacitymedium">'.$langs->trans("Publisher").':</span> '.(empty($objMod->editor_name) ? $langs->trans("Unknown") : $objMod->editor_name);
350  }
351  $editor_url = $objMod->editor_url;
352  if (!preg_match('/^http/', $editor_url)) {
353  $editor_url = 'http://'.$editor_url;
354  }
355  if (!empty($objMod->editor_url) && !preg_match('/dolibarr\.org/i', $objMod->editor_url)) {
356  $textexternal .= ($objMod->editor_name != 'dolibarr' ? ' - ' : '').img_picto('', 'globe').' <a href="'.$editor_url.'" target="_blank" rel="noopener noreferrer external">'.$objMod->editor_url.'</a>';
357  }
358  $text .= $textexternal;
359  $text .= '<br>';
360  } else {
361  $text .= '<br><span class="opacitymedium">'.$langs->trans("Origin").':</span> '.$langs->trans("Core").'<br>';
362  }
363 
364  $moduledesclong = $objMod->getDescLong();
365  if ($moduledesclong) {
366  $text .= '<br><hr><div class="moduledesclong">'.$moduledesclong.'<div>';
367  }
368 }
369 
370 if ($mode == 'feature') {
371  $text .= '<br><strong>'.$langs->trans("DependsOn").':</strong> ';
372  if (count($objMod->depends)) {
373  $text .= join(',', $objMod->depends);
374  } else {
375  $text .= '<span class="opacitymedium">'.$langs->trans("None").'</span>';
376  }
377  $text .= '<br><strong>'.$langs->trans("RequiredBy").':</strong> ';
378  if (count($objMod->requiredby)) {
379  $text .= join(',', $objMod->requiredby);
380  } else {
381  $text .= '<span class="opacitymedium">'.$langs->trans("None").'</span>';
382  }
383 
384  $text .= '<br><br>';
385 
386  $text .= '<br><strong>'.$langs->trans("AddDataTables").':</strong> ';
387  $listofsqlfiles1 = dol_dir_list(DOL_DOCUMENT_ROOT.'/install/mysql/tables/', 'files', 0, 'llx.*-'.$moduledir.'\.sql', array('\.key\.sql', '\.sql\.back'));
388  $listofsqlfiles2 = dol_dir_list(dol_buildpath($moduledir.'/sql/'), 'files', 0, 'llx.*\.sql', array('\.key\.sql', '\.sql\.back'));
389  $sqlfiles = array_merge($listofsqlfiles1, $listofsqlfiles2);
390 
391  if (count($sqlfiles) > 0) {
392  $i = 0;
393  foreach ($sqlfiles as $val) {
394  $text .= ($i ? ', ' : '').preg_replace('/\-'.$moduledir.'$/', '', preg_replace('/\.sql$/', '', preg_replace('/llx_/', '', $val['name'])));
395  $i++;
396  }
397  } else {
398  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
399  }
400 
401  $text .= '<br>';
402 
403  $text .= '<br><strong>'.$langs->trans("AddDictionaries").':</strong> ';
404  if (isset($objMod->dictionaries) && isset($objMod->dictionaries['tablib']) && is_array($objMod->dictionaries['tablib']) && count($objMod->dictionaries['tablib'])) {
405  $i = 0;
406  foreach ($objMod->dictionaries['tablib'] as $val) {
407  $text .= ($i ? ', ' : '').$val;
408  $i++;
409  }
410  } else {
411  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
412  }
413 
414  $text .= '<br>';
415 
416  $text .= '<br><strong>'.$langs->trans("AddData").':</strong> ';
417  $filedata = dol_buildpath($moduledir.'/sql/data.sql');
418  if (dol_is_file($filedata)) {
419  $text .= $langs->trans("Yes").' <span class="opacitymedium">('.$moduledir.'/sql/data.sql)</span>';
420  } else {
421  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
422  }
423 
424  $text .= '<br>';
425 
426  $text .= '<br><strong>'.$langs->trans("AddRemoveTabs").':</strong> ';
427  if (isset($objMod->tabs) && is_array($objMod->tabs) && count($objMod->tabs)) {
428  $i = 0;
429  foreach ($objMod->tabs as $val) {
430  if (is_array($val)) {
431  $val = $val['data'];
432  }
433  if (is_string($val)) {
434  $tmp = explode(':', $val, 3);
435  $text .= ($i ? ', ' : '').$tmp[0].':'.$tmp[1];
436  $i++;
437  }
438  }
439  } else {
440  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
441  }
442 
443  $text .= '<br>';
444 
445  $text .= '<br><strong>'.$langs->trans("AddModels").':</strong> ';
446  if (isset($objMod->module_parts) && isset($objMod->module_parts['models']) && $objMod->module_parts['models']) {
447  $text .= $langs->trans("Yes");
448  } else {
449  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
450  }
451 
452  $text .= '<br>';
453 
454  $text .= '<br><strong>'.$langs->trans("AddSubstitutions").':</strong> ';
455  if (isset($objMod->module_parts) && isset($objMod->module_parts['substitutions']) && $objMod->module_parts['substitutions']) {
456  $text .= $langs->trans("Yes");
457  } else {
458  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
459  }
460 
461  $text .= '<br>';
462 
463  $text .= '<br><strong>'.$langs->trans("AddSheduledJobs").':</strong> ';
464  if (isset($objMod->cronjobs) && is_array($objMod->cronjobs) && count($objMod->cronjobs)) {
465  $i = 0;
466  foreach ($objMod->cronjobs as $val) {
467  $text .= ($i ? ', ' : '').($val['label']);
468  $i++;
469  }
470  } else {
471  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
472  }
473 
474  $text .= '<br>';
475 
476  $text .= '<br><strong>'.$langs->trans("AddTriggers").':</strong> ';
477  $moreinfoontriggerfile = '';
478  if (isset($objMod->module_parts) && isset($objMod->module_parts['triggers']) && $objMod->module_parts['triggers']) {
479  $yesno = 'Yes';
480  } else {
481  $yesno = 'No';
482  }
483  require_once DOL_DOCUMENT_ROOT.'/core/class/interfaces.class.php';
484  $interfaces = new Interfaces($db);
485  $triggers = $interfaces->getTriggersList(array((($objMod->isCoreOrExternalModule() == 'external') ? '/'.$moduledir : '').'/core/triggers'));
486  foreach ($triggers as $triggercursor) {
487  if ($triggercursor['module'] == $moduledir) {
488  $yesno = 'Yes';
489  $moreinfoontriggerfile = ' ('.$triggercursor['relpath'].')';
490  }
491  }
492 
493  $text .= $langs->trans($yesno).$moreinfoontriggerfile;
494 
495  $text .= '<br>';
496 
497  $text .= '<br><strong>'.$langs->trans("AddBoxes").':</strong> ';
498  if (isset($objMod->boxes) && is_array($objMod->boxes) && count($objMod->boxes)) {
499  $i = 0;
500  foreach ($objMod->boxes as $val) {
501  $boxstring = (empty($val['file']) ? (empty($val[0]) ? '' : $val[0]) : $val['file']);
502  if ($boxstring) {
503  $text .= ($i ? ', ' : '').$boxstring;
504  }
505  $i++;
506  }
507  } else {
508  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
509  }
510 
511  $text .= '<br>';
512 
513  $text .= '<br><strong>'.$langs->trans("AddHooks").':</strong> ';
514  if (isset($objMod->module_parts) && isset($objMod->module_parts['hooks']) && is_array($objMod->module_parts['hooks']) && count($objMod->module_parts['hooks'])) {
515  $i = 0;
516  foreach ($objMod->module_parts['hooks'] as $key => $val) {
517  if ($key === 'entity') {
518  continue;
519  }
520 
521  // For special values
522  if ($key === 'data') {
523  if (is_array($val)) {
524  foreach ($val as $value) {
525  $text .= ($i ? ', ' : '').($value);
526  $i++;
527  }
528 
529  continue;
530  }
531  }
532 
533  $text .= ($i ? ', ' : '').($val);
534  $i++;
535  }
536  } else {
537  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
538  }
539 
540  $text .= '<br>';
541 
542  $text .= '<br><strong>'.$langs->trans("AddPermissions").':</strong> ';
543  if (isset($objMod->rights) && is_array($objMod->rights) && count($objMod->rights)) {
544  $i = 0;
545  foreach ($objMod->rights as $val) {
546  $text .= ($i ? ', ' : '').($val[1]);
547  $i++;
548  }
549  } else {
550  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
551  }
552 
553  $text .= '<br>';
554 
555  $text .= '<br><strong>'.$langs->trans("AddMenus").':</strong> ';
556  if (isset($objMod->menu) && !empty($objMod->menu)) { // objMod can be an array or just an int 1
557  $text .= $langs->trans("Yes");
558  } else {
559  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
560  }
561 
562  $text .= '<br>';
563 
564  $text .= '<br><strong>'.$langs->trans("AddExportProfiles").':</strong> ';
565  if (isset($objMod->export_label) && is_array($objMod->export_label) && count($objMod->export_label)) {
566  $i = 0;
567  foreach ($objMod->export_label as $val) {
568  $text .= ($i ? ', ' : '').($val);
569  $i++;
570  }
571  } else {
572  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
573  }
574 
575  $text .= '<br>';
576 
577  $text .= '<br><strong>'.$langs->trans("AddImportProfiles").':</strong> ';
578  if (isset($objMod->import_label) && is_array($objMod->import_label) && count($objMod->import_label)) {
579  $i = 0;
580  foreach ($objMod->import_label as $val) {
581  $text .= ($i ? ', ' : '').($val);
582  $i++;
583  }
584  } else {
585  $text .= '<span class="opacitymedium">'.$langs->trans("No").'</span>';
586  }
587 
588  $text .= '<br>';
589 
590  $text .= '<br><strong>'.$langs->trans("AddOtherPagesOrServices").':</strong> ';
591  $text .= '<span class="opacitymedium">'.$langs->trans("DetectionNotPossible").'</span>';
592 }
593 
594 
595 if ($mode == 'changelog') {
596  $changelog = $objMod->getChangeLog();
597  if ($changelog) {
598  $text .= '<div class="moduledesclong">'.$changelog.'<div>';
599  } else {
600  $text .= '<div class="moduledesclong"><span class="opacitymedium">'.$langs->trans("NotAvailable").'</span></div>';
601  }
602 }
603 
604 print $text;
605 
606 
607 print dol_get_fiche_end();
608 
609 print '</div>';
610 
611 // End of page
612 llxFooter();
613 $db->close();
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:118
modulehelp_prepare_head($object)
Prepare array with list of tabs.
Definition: admin.lib.php:863
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage triggers.
Class to manage Dolibarr users.
Definition: user.class.php:47
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
dol_is_file($pathoffile)
Return if path is a file.
Definition: files.lib.php:481
dol_dir_list($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.
Definition: files.lib.php:61
dolGetModulesDirs($subdir='')
Return list of modules directories.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.