26require
'../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
33$action =
GETPOST(
'action',
'aZ09');
35$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
36$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
37$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
44if (empty($page) || $page == -1) {
47$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
48$offset = $limit * $page;
59if ($action ==
'deletefile') {
60 if (preg_match(
'/^backup\//',
GETPOST(
'urlfile',
'alpha'))) {
61 $file = $conf->admin->dir_output.
'/backup/'.basename(
GETPOST(
'urlfile',
'alpha'));
69 $file = $conf->admin->dir_output.
'/documents/'.basename(
GETPOST(
'urlfile',
'alpha'));
92$help_url =
'EN:Backups|FR:Sauvegardes|ES:Copias_de_seguridad';
95print
'<script type="text/javascript">
96jQuery(document).ready(function() {';
99 function hideoptions () {
100 jQuery(
"#mysql_options").hide();
101 jQuery(
"#mysql_nobin_options").hide();
102 jQuery(
"#postgresql_options").hide();
106 jQuery(
"#radio_dump_mysql").click(
function() {
108 jQuery(
"#mysql_options").show();
110 jQuery(
"#radio_dump_mysql_nobin").click(
function() {
112 jQuery(
"#mysql_nobin_options").show();
114 jQuery(
"#radio_dump_postgresql").click(
function() {
116 jQuery(
"#postgresql_options").show();
118 jQuery(
"#select_sql_compat").click(
function() {
119 if (jQuery(
"#select_sql_compat").val() ==
'POSTGRESQL')
121 jQuery(
"#checkbox_dump_disable-add-locks").prop(
'checked',
true);
126if (in_array($type, array(
'mysql',
'mysqli'))) {
127 print
'jQuery("#radio_dump_mysql").click();';
129if (in_array($type, array(
'pgsql'))) {
130 print
'jQuery("#radio_dump_postgresql").click();';
135$title = $langs->trans(
"Backup");
140print
'<div class="center">';
141print $langs->trans(
"BackupDesc", DOL_DATA_ROOT);
145print
"<!-- Dump of a server -->\n";
146print
'<form method="post" action="export.php" name="dump">';
147print
'<input type="hidden" name="token" value="'.newToken().
'" />';
148print
'<input type="hidden" name="export_type" value="server" />';
149print
'<input type="hidden" name="page_y" value="" />';
151print
'<fieldset id="fieldsetexport"><legend class="legendforfieldsetstep" style="font-size: 3em">1</legend>';
153print
'<span class="opacitymedium">';
154print $langs->trans(
"BackupDesc3", $dolibarr_main_db_name).
'<br>';
160print
'<div id="backupdatabaseleft" class="fichehalfleft" >';
162$title = $langs->trans(
"BackupDumpWizard");
169print
'<span class="opacitymedium">'.$langs->trans(
"DatabaseName").
' : </span><b>'.$dolibarr_main_db_name.
'</b><br><br>';
174print
'<table class="centpercent noborderbottom">';
177print
'<td class="tdtop nopaddingleftimp">';
179print
'<div id="div_container_exportoptions">';
180print
'<fieldset id="exportoptions"><legend>'.$langs->trans(
"ExportMethod").
'</legend>';
181if (in_array($type, array(
'mysql',
'mysqli'))) {
182 print
'<div class="formelementrow"><input type="radio" name="what" value="mysql" id="radio_dump_mysql" />';
183 print
'<label for="radio_dump_mysql">MySQL Dump (mysqldump)</label>';
186 print
'<div class="formelementrow"><input type="radio" name="what" value="mysqlnobin" id="radio_dump_mysql_nobin" />';
187 print
'<label for="radio_dump_mysql_nobin">MySQL Dump (php) '.img_warning($langs->trans(
'BackupPHPWarning')).
'</label>';
189} elseif (in_array($type, array(
'pgsql'))) {
190 print
'<div class="formelementrow"><input type="radio" name="what" value="postgresql" id="radio_dump_postgresql" />';
191 print
'<label for="radio_dump_postgresql">PostgreSQL Dump (pg_dump)</label>';
194 print
'No method available with database '.$label;
203print
'<td class="tdtop nopaddingleftimp">';
205print
'<div class="centpercent center margintoponly marginbottomonly">';
206print
img_picto(
'',
'setup',
'class="pictofixedwidth"').
'<a id="lnk">'.$langs->trans(
"ShowAdvancedOptions").
'...</a>';
209print
'<script type="text/javascript">
210jQuery(document).ready(function() {
211 jQuery("#lnk").click(function() {
212 console.log("We click on link");
217function hideoptions(domelem) {
218 const div = document.getElementById("div_container_sub_exportoptions");
220 if (div.style.display === "none") {
221 div.style.display = "block";
222 domelem.innerText="'.dol_escape_js($langs->transnoentitiesnoconv(
"HideAdvancedoptions")).
'";
224 div.style.display = "none";
225 domelem.innerText="'.
dol_escape_js($langs->transnoentitiesnoconv(
"ShowAdvancedOptions")).
'...";
231print
'<div id="div_container_sub_exportoptions" style="display: none;">';
233if (in_array($type, array(
'mysql',
'mysqli'))) {
234 print
"<!-- Fieldset mysqldump -->\n";
235 print
'<fieldset id="mysql_options">';
237 print
'<fieldset class="formelementrow"><legend>'.$langs->trans(
"FullPathToMysqldumpCommand").
'</legend>';
238 if (empty($conf->global->SYSTEMTOOLS_MYSQLDUMP)) {
239 $fullpathofmysqldump = $db->getPathOfDump();
241 $fullpathofmysqldump = $conf->global->SYSTEMTOOLS_MYSQLDUMP;
243 print
'<input type="text" name="mysqldump" style="width: 80%" value="'.$fullpathofmysqldump.
'">';
247 print
'<fieldset><legend>'.$langs->trans(
"ExportOptions").
'</legend>';
249 if (!empty($conf->global->MYSQL_OLD_OPTION_DISABLE_FK)) {
250 print
'<div class="formelementrow">';
251 print
'<input type="checkbox" name="disable_fk" value="yes" id="checkbox_disable_fk" checked>';
252 print
'<label for="checkbox_disable_fk">'.$langs->trans(
"CommandsToDisableForeignKeysForImport").
' '.
img_info($langs->trans(
'CommandsToDisableForeignKeysForImportWarning')).
'</label>';
256 print
'<label for="select_sql_compat">'.$langs->trans(
"ExportCompatibility").
'</label>';
258 print
'<select name="sql_compat" id="select_sql_compat" class="flat">';
259 print
'<option value="NONE" selected>NONE</option>';
260 print
'<option value="ANSI">ANSI</option>';
261 print
'<option value="DB2">DB2</option>';
262 print
'<option value="MAXDB">MAXDB</option>';
263 print
'<option value="MYSQL323">MYSQL323</option>';
264 print
'<option value="MYSQL40">MYSQL40</option>';
265 print
'<option value="MSSQL">MSSQL</option>';
266 print
'<option value="ORACLE">ORACLE</option>';
267 print
'<option value="POSTGRESQL">POSTGRESQL</option>';
271 print
'<div class="formelementrow">';
272 print
'<input type="checkbox" name="use_transaction" value="yes" id="checkbox_use_transaction" checked="checked">';
273 print
'<label for="checkbox_use_transaction">'.$langs->trans(
"UseTransactionnalMode").
'</label>';
276 print
'<input type="checkbox" name="use_mysql_quick_param" value="yes" id="checkbox_use_quick" checked="checked" />';
277 print
'<label for="checkbox_use_quick">';
278 print $form->textwithpicto($langs->trans(
'ExportUseMySQLQuickParameter'), $langs->trans(
'ExportUseMySQLQuickParameterHelp'));
283 if (!empty($conf->global->MAIN_EXEC_USE_POPEN)) {
284 $execmethod = $conf->global->MAIN_EXEC_USE_POPEN;
286 if (empty($execmethod)) {
289 if ($execmethod == 1) {
291 print
'<input type="checkbox" name="lowmemorydump" value="yes" id="lowmemorydump"'.((GETPOSTISSET(
'lowmemorydump') ?
GETPOST(
'lowmemorydump',
'alpha') :
getDolGlobalString(
'MAIN_LOW_MEMORY_DUMP')) ?
' checked="checked"' :
'').
'" />';
292 print
'<label for="lowmemorydump">';
293 print $form->textwithpicto($langs->trans(
'ExportUseLowMemoryMode'), $langs->trans(
'ExportUseLowMemoryModeHelp'));
298 print
'<!-- <input type="checkbox" name="drop_database" value="yes" id="checkbox_drop_database" />';
299 print
'<label for="checkbox_drop_database">'.$langs->trans(
"AddDropDatabase").
'</label>';
306 print
'<input type="checkbox" name="sql_structure" value="structure" id="checkbox_sql_structure" checked />';
307 print
'<label for="checkbox_sql_structure">'.$langs->trans(
'ExportStructure').
'</label>';
310 print
'<input type="checkbox" name="drop"'.((!GETPOSTISSET(
"drop") ||
GETPOST(
'drop')) ?
' checked' :
'').
' id="checkbox_dump_drop" />';
311 print
'<label for="checkbox_dump_drop">'.$langs->trans(
"AddDropTable").
'</label>';
318 print
'<input type="checkbox" name="sql_data" value="data" id="checkbox_sql_data" checked />';
319 print
'<label for="checkbox_sql_data">'.$langs->trans(
"Datas").
'</label>';
321 print
'<input type="checkbox" name="showcolumns" value="yes" id="checkbox_dump_showcolumns" checked />';
322 print
'<label for="checkbox_dump_showcolumns">'.$langs->trans(
"NameColumn").
'</label>';
325 print
'<input type="checkbox" name="extended_ins" value="yes" id="checkbox_dump_extended_ins" checked />';
326 print
'<label for="checkbox_dump_extended_ins">'.$langs->trans(
"ExtendedInsert").
'</label>';
329 print
'<input type="checkbox" name="disable-add-locks" value="no" id="checkbox_dump_disable-add-locks" />';
330 print
'<label for="checkbox_dump_disable-add-locks">'.$langs->trans(
"NoLockBeforeInsert").
'</label>';
333 print
'<input type="checkbox" name="delayed" value="yes" id="checkbox_dump_delayed" />';
334 print
'<label for="checkbox_dump_delayed">'.$langs->trans(
"DelayedInsert").
'</label>';
337 print
'<input type="checkbox" name="sql_ignore" value="yes" id="checkbox_dump_ignore" />';
338 print
'<label for="checkbox_dump_ignore">'.$langs->trans(
"IgnoreDuplicateRecords").
'</label>';
341 print
'<input type="checkbox" name="hexforbinary" value="yes" id="checkbox_hexforbinary" checked />';
342 print
'<label for="checkbox_hexforbinary">'.$langs->trans(
"EncodeBinariesInHexa").
'</label>';
345 print
'<input type="checkbox" name="charset_utf8" value="yes" id="checkbox_charset_utf8" checked disabled />';
346 print
'<label for="checkbox_charset_utf8">'.$langs->trans(
"UTF8").
'</label>';
353 print
"<!-- Fieldset mysql_nobin -->\n";
354 print
'<fieldset id="mysql_nobin_options">';
357 print
'<legend>'.$langs->trans(
"ExportOptions").
'</legend>';
359 print
'<div class="formelementrow">';
360 print
'<input type="checkbox" name="nobin_use_transaction" value="yes" id="checkbox_use_transaction" />';
361 print
'<label for="checkbox_use_transaction">'.$langs->trans(
"UseTransactionnalMode").
'</label>';
364 if (!empty($conf->global->MYSQL_OLD_OPTION_DISABLE_FK)) {
365 print
'<div class="formelementrow">';
366 print
'<input type="checkbox" name="nobin_disable_fk" value="yes" id="checkbox_disable_fk" checked />';
367 print
'<label for="checkbox_disable_fk">'.$langs->trans(
"CommandsToDisableForeignKeysForImport").
' '.
img_info($langs->trans(
'CommandsToDisableForeignKeysForImportWarning')).
'</label>';
373 print
'<fieldset><legend>'.$langs->trans(
'ExportStructure').
'</legend>';
374 print
'<input type="checkbox" name="nobin_drop"'.((!GETPOSTISSET(
"nobin_drop") ||
GETPOST(
'nobin_drop')) ?
' checked' :
'').
' id="checkbox_dump_drop" />';
375 print
'<label for="checkbox_dump_drop">'.$langs->trans(
"AddDropTable").
'</label>';
381 print
'<legend>'.$langs->trans(
"Datas").
'</legend>';
383 print
'<input type="checkbox" name="nobin_nolocks" value="no" id="checkbox_dump_disable-add-locks" />';
384 print
'<label for="checkbox_dump_disable-add-locks">'.$langs->trans(
"NoLockBeforeInsert").
'</label>';
387 print
'<input type="checkbox" name="nobin_delayed" value="yes" id="checkbox_dump_delayed" />';
388 print
'<label for="checkbox_dump_delayed">'.$langs->trans(
"DelayedInsert").
'</label>';
391 print
'<input type="checkbox" name="nobin_sql_ignore" value="yes" id="checkbox_dump_ignore" />';
392 print
'<label for="checkbox_dump_ignore">'.$langs->trans(
"IgnoreDuplicateRecords").
'</label>';
395 print
'<input type="checkbox" name="nobin_charset_utf8" value="yes" id="checkbox_charset_utf8" checked disabled />';
396 print
'<label for="checkbox_charset_utf8">'.$langs->trans(
"UTF8").
'</label>';
403if (in_array($type, array(
'pgsql'))) {
404 print
"<!-- Fieldset pg_dump -->\n";
405 print
'<fieldset id="postgresql_options">';
408 print
'<fieldset class="formelementrow"><legend>'.$langs->trans(
"FullPathToPostgreSQLdumpCommand").
'</legend>';
409 if (empty($conf->global->SYSTEMTOOLS_POSTGRESQLDUMP)) {
410 $fullpathofpgdump = $db->getPathOfDump();
412 $fullpathofpgdump = $conf->global->SYSTEMTOOLS_POSTGRESQLDUMP;
415 print
'<input type="text" name="postgresqldump" style="width: 80%" value="'.$fullpathofpgdump.
'" />';
420 print
'<legend>'.$langs->trans(
"ExportOptions").
'</legend>';
421 print
'<label for="select_sql_compat">'.$langs->trans(
"ExportCompatibility").
'</label>';
422 print
'<select name="sql_compat" id="select_sql_compat" class="flat">';
423 print
'<option value="POSTGRESQL" selected>POSTGRESQL</option>';
424 print
'<option value="ANSI">ANSI</option>';
427 print
'<!-- <input type="checkbox" name="drop_database" value="yes" id="checkbox_drop_database" />';
428 print
'<label for="checkbox_drop_database">'.$langs->trans(
"AddDropDatabase").
'</label>';
434 print
'<input type="checkbox" name="sql_structure" value="structure" id="checkbox_sql_structure" checked />';
435 print
'<label for="checkbox_sql_structure">'.$langs->trans(
'ExportStructure').
'</label>';
441 print
'<input type="checkbox" name="sql_data" value="data" id="checkbox_sql_data" checked />';
442 print
'<label for="checkbox_sql_data">'.$langs->trans(
"Datas").
'</label>';
444 print
'<input type="checkbox" name="showcolumns" value="yes" id="checkbox_dump_showcolumns" checked />';
445 print
'<label for="checkbox_dump_showcolumns">'.$langs->trans(
"NameColumn").
'</label>';
459print
'<!--<fieldset>';
460print
'<legend>'.$langs->trans(
"Destination").
'</legend> -->';
462print
'<label for="filename_template" class="line-height-large opacitymedium">'.$langs->trans(
"FileNameToGenerate").
'</label>';
466if (in_array($type, array(
'mysql',
'mysqli'))) {
467 $prefix =
'mysqldump';
474if (in_array($type, array(
'pgsql'))) {
479print
'<input type="text" name="filename_template" style="width: 90%" id="filename_template" value="'.$file.
'" />';
484$compression = array();
485if (in_array($type, array(
'mysql',
'mysqli'))) {
486 $compression[
'gz'] = array(
487 'function' =>
'gzopen',
488 'id' =>
'radio_compression_gzip',
489 'label' => $langs->trans(
"Gzip")
497 $compression[
'bz'] = array(
498 'function' =>
'bzopen',
499 'id' =>
'radio_compression_bzip',
500 'label' => $langs->trans(
"Bzip2")
502 $compression[
'zstd'] = array(
503 'function' =>
'zstd_compress',
504 'id' =>
'radio_compression_zstd',
505 'label' => $langs->trans(
"Zstd")
507 $compression[
'none'] = array(
509 'id' =>
'radio_compression_none',
510 'label' => $langs->trans(
"None")
513 $compression[
'none'] = array(
515 'id' =>
'radio_compression_none',
516 'label' => $langs->trans(
"None")
518 $compression[
'gz'] = array(
519 'function' =>
'gzopen',
520 'id' =>
'radio_compression_gzip',
521 'label' => $langs->trans(
"Gzip")
526print
'<div class="formelementrow">';
529print $langs->trans(
"Compression").
': ';
532foreach ($compression as $key => $val) {
533 if (!$val[
'function'] || function_exists($val[
'function'])) {
537 $checked =
' checked';
539 print
'<input type="radio" name="compression" value="'.$key.
'" id="'.$val[
'id'].
'"'.$checked.
'>';
540 print
' <label for="'.$val[
'id'].
'">'.$val[
'label'].
'</label>';
543 print
'<input type="radio" name="compression" value="'.$key.
'" id="'.$val[
'id'].
'" disabled>';
544 print
' <label for="'.$val[
'id'].
'">'.$val[
'label'].
'</label>';
545 print
' <span class="opacitymedium">('.$langs->trans(
"NotAvailable").
')</span>';
547 print
' ';
554print
"<!--</fieldset>--> <!-- End destination -->\n";
557print
'<div class="center">';
558print
'<input type="submit" class="button reposition" value="'.$langs->trans(
"GenerateBackup").
'" id="buttonGo">';
562if (!empty($_SESSION[
"commandbackuplastdone"])) {
563 print
'<br><b>'.$langs->trans(
"RunCommandSummary").
':</b><br>'.
"\n";
564 print
'<textarea rows="'.ROWS_2.
'" class="centpercent">'.$_SESSION[
"commandbackuplastdone"].
'</textarea><br>'.
"\n";
570 print
'<b>'.$langs->trans(
"BackupResult").
':</b> ';
571 print $_SESSION[
"commandbackupresult"];
573 $_SESSION[
"commandbackuplastdone"] =
'';
574 $_SESSION[
"commandbackuptorun"] =
'';
575 $_SESSION[
"commandbackupresult"] =
'';
577if (!empty($_SESSION[
"commandbackuptorun"])) {
578 print
'<br><span class="warning">'.$langs->trans(
"YouMustRunCommandFromCommandLineAfterLoginToUser", $dolibarr_main_db_user, $dolibarr_main_db_user).
':</span><br>'.
"\n";
579 print
'<textarea id="commandbackuptoruntext" rows="'.ROWS_2.
'" class="centpercent">'.$_SESSION[
"commandbackuptorun"].
'</textarea><br>'.
"\n";
585 $_SESSION[
"commandbackuplastdone"] =
'';
586 $_SESSION[
"commandbackuptorun"] =
'';
587 $_SESSION[
"commandbackupresult"] =
'';
590print
"</div> <!-- end div center button -->\n";
595print
"</div> <!-- end div fichehalfleft -->\n";
598print
'<div id="backupdatabaseright" class="fichehalfright">';
600$filearray =
dol_dir_list($conf->admin->dir_output.
'/backup',
'files', 0,
'',
'', $sortfield, (strtolower($sortorder) ==
'asc' ?SORT_ASC:SORT_DESC), 1);
601$result = $formfile->list_of_documents($filearray,
null,
'systemtools',
'', 1,
'backup/', 1, 0, $langs->trans(
"NoBackupFileAvailable"), 0, $langs->trans(
"PreviousDumpFiles"),
'', 0, -1,
'',
'',
'ASC', 1, 0, -1,
'style="height:250px; overflow: auto;"');
609$title = $langs->trans(
"BackupZipWizard");
612print
"<!-- Dump of a server -->\n";
614print
'<form method="post" action="export_files.php" name="dump">';
615print
'<input type="hidden" name="token" value="'.newToken().
'" />';
616print
'<input type="hidden" name="export_type" value="server" />';
617print
'<input type="hidden" name="page_y" value="" />';
619print
'<fieldset><legend class="legendforfieldsetstep" style="font-size: 3em">2</legend>';
621print
'<span class="opacitymedium">';
622print $langs->trans(
"BackupDesc2", DOL_DATA_ROOT).
'<br>';
623print $langs->trans(
"BackupDescX").
'<br><br>';
626print
'<div id="backupfilesleft" class="fichehalfleft">';
630print
'<label for="zipfilename_template" class="line-height-large paddingbottom opacitymedium">'.$langs->trans(
"FileNameToGenerate").
'</label><br>';
631$prefix =
'documents';
634print
'<input type="text" name="zipfilename_template" style="width: 90%" id="zipfilename_template" value="'.$file.
'" /> <br>';
640print
'<div class="formelementrow">';
643print $langs->trans(
"Compression").
': ';
644$filecompression = $compression;
645unset($filecompression[
'none']);
646$filecompression[
'zip'] = array(
'function' =>
'dol_compress_dir',
'id' =>
'radio_compression_zip',
'label' => $langs->trans(
"FormatZip"));
649foreach ($filecompression as $key => $val) {
650 if (!$val[
'function'] || function_exists($val[
'function'])) {
653 $checked =
' checked';
655 print
'<input type="radio" name="compression" value="'.$key.
'" id="'.$val[
'id'].
'2"'.$checked.
'>';
656 print
' <label for="'.$val[
'id'].
'2">'.$val[
'label'].
'</label>';
659 print
'<input type="radio" name="compression" value="'.$key.
'" id="'.$val[
'id'].
'2" disabled>';
660 print
' <label for="'.$val[
'id'].
'2">'.$val[
'label'].
'</label>';
661 print
' <span class="opacitymedium">('.$langs->trans(
"NotAvailable").
')</span>';
663 print
' ';
671print
'<div class="center">';
672print
'<input type="submit" class="button reposition" value="'.$langs->trans(
"GenerateBackup").
'" id="buttonGo" /><br>';
678print
'<div id="backupfileright" class="fichehalfright">';
680$filearray =
dol_dir_list($conf->admin->dir_output.
'/documents',
'files', 0,
'',
'', $sortfield, (strtolower($sortorder) ==
'asc' ?SORT_ASC:SORT_DESC), 1);
681$result = $formfile->list_of_documents($filearray,
null,
'systemtools',
'', 1,
'documents/', 1, 0, $langs->trans(
"NoBackupFileAvailable"), 0, $langs->trans(
"PreviousArchiveFiles"),
'', 0, -1,
'',
'',
'ASC', 1, 0, -1,
'style="height:250px; overflow: auto;"');
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
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.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_escape_js($stringtoescape, $mode=0, $noescapebackslashn=0)
Returns text escaped for inclusion into javascript code.
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
img_info($titlealt='default')
Show info logo.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.