dolibarr  19.0.0-dev
doc_generic_bom_odt.modules.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2010-2012 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
4  * Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
5  * Copyright (C) 2016 Charlie Benke <charlie@patas-monkey.com>
6  * Copyright (C) 2018-2019 Philippe Grand <philippe.grand@atoo-net.com>
7  * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  * or see https://www.gnu.org/
22  */
23 
30 require_once DOL_DOCUMENT_ROOT.'/core/modules/bom/modules_bom.php';
31 require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
34 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
35 require_once DOL_DOCUMENT_ROOT.'/core/lib/doc.lib.php';
36 
37 
42 {
47  public $emetteur;
48 
52  public $version = 'dolibarr';
53 
54 
60  public function __construct($db)
61  {
62  global $conf, $langs, $mysoc;
63 
64  // Load translation files required by the page
65  $langs->loadLangs(array("main", "companies"));
66 
67  $this->db = $db;
68  $this->name = "ODT templates";
69  $this->description = $langs->trans("DocumentModelOdt");
70  $this->scandir = 'BOM_ADDON_PDF_ODT_PATH'; // Name of constant that is used to save list of directories to scan
71 
72  // Page size for A4 format
73  $this->type = 'odt';
74  $this->page_largeur = 0;
75  $this->page_hauteur = 0;
76  $this->format = array($this->page_largeur, $this->page_hauteur);
77  $this->marge_gauche = 0;
78  $this->marge_droite = 0;
79  $this->marge_haute = 0;
80  $this->marge_basse = 0;
81 
82  $this->option_multilang = 1; // Dispo en plusieurs langues
83  $this->option_freetext = 1; // Support add of a personalised text
84  $this->option_draft_watermark = 0; // Support add of a watermark on drafts
85 
86  // Get source company
87  $this->emetteur = $mysoc;
88  if (!$this->emetteur->country_code) {
89  $this->emetteur->country_code = substr($langs->defaultlang, -2); // By default if not defined
90  }
91  }
92 
93 
100  public function info($langs)
101  {
102  global $conf, $langs;
103 
104  // Load translation files required by the page
105  $langs->loadLangs(array("errors", "companies"));
106 
107  $form = new Form($this->db);
108 
109  $texte = $this->description.".<br>\n";
110  $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" enctype="multipart/form-data">';
111  $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
112  $texte .= '<input type="hidden" name="page_y" value="">';
113  $texte .= '<input type="hidden" name="action" value="setModuleOptions">';
114  $texte .= '<input type="hidden" name="param1" value="BOM_ADDON_PDF_ODT_PATH">';
115  $texte .= '<table class="nobordernopadding" width="100%">';
116 
117  // List of directories area
118  $texte .= '<tr><td>';
119  $texttitle = $langs->trans("ListOfDirectories");
120  $listofdir = explode(',', preg_replace('/[\r\n]+/', ',', trim($conf->global->BOM_ADDON_PDF_ODT_PATH)));
121  $listoffiles = array();
122  foreach ($listofdir as $key => $tmpdir) {
123  $tmpdir = trim($tmpdir);
124  $tmpdir = preg_replace('/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
125  if (!$tmpdir) {
126  unset($listofdir[$key]);
127  continue;
128  }
129  if (!is_dir($tmpdir)) {
130  $texttitle .= img_warning($langs->trans("ErrorDirNotFound", $tmpdir), 0);
131  } else {
132  $tmpfiles = dol_dir_list($tmpdir, 'files', 0, '\.(ods|odt)');
133  if (count($tmpfiles)) {
134  $listoffiles = array_merge($listoffiles, $tmpfiles);
135  }
136  }
137  }
138  $texthelp = $langs->trans("ListOfDirectoriesForModelGenODT");
139  // Add list of substitution keys
140  $texthelp .= '<br>'.$langs->trans("FollowingSubstitutionKeysCanBeUsed").'<br>';
141  $texthelp .= $langs->transnoentitiesnoconv("FullListOnOnlineDocumentation"); // This contains an url, we don't modify it
142 
143  $texte .= $form->textwithpicto($texttitle, $texthelp, 1, 'help', '', 1);
144  $texte .= '<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
145  $texte .= '<textarea class="flat" cols="60" name="value1">';
146  $texte .= $conf->global->BOM_ADDON_PDF_ODT_PATH;
147  $texte .= '</textarea>';
148  $texte .= '</div><div style="display: inline-block; vertical-align: middle;">';
149  $texte .= '<input type="submit" class="button small reposition" name="modify" value="'.$langs->trans("Modify").'">';
150  $texte .= '<br></div></div>';
151 
152  // Scan directories
153  $nbofiles = count($listoffiles);
154  if (!empty($conf->global->BOM_ADDON_PDF_ODT_PATH)) {
155  $texte .= $langs->trans("NumberOfModelFilesFound").': <b>';
156  //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':'';
157  $texte .= count($listoffiles);
158  //$texte.=$nbofiles?'</a>':'';
159  $texte .= '</b>';
160  }
161 
162  if ($nbofiles) {
163  $texte .= '<div id="div_'.get_class($this).'" class="hiddenx">';
164  // Show list of found files
165  foreach ($listoffiles as $file) {
166  $texte .= '- '.$file['name'].' <a href="'.DOL_URL_ROOT.'/document.php?modulepart=doctemplates&file=boms/'.urlencode(basename($file['name'])).'">'.img_picto('', 'listlight').'</a>';
167  $texte .= ' &nbsp; <a class="reposition" href="'.$_SERVER["PHP_SELF"].'?modulepart=doctemplates&keyforuploaddir=BOM_ADDON_PDF_ODT_PATH&action=deletefile&token='.newToken().'&file='.urlencode(basename($file['name'])).'">'.img_picto('', 'delete').'</a>';
168  $texte .= '<br>';
169  }
170  $texte .= '</div>';
171  }
172  // Add input to upload a new template file.
173  $texte .= '<div>'.$langs->trans("UploadNewTemplate");
174  $maxfilesizearray = getMaxFileSizeArray();
175  $maxmin = $maxfilesizearray['maxmin'];
176  if ($maxmin > 0) {
177  $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).'">'; // MAX_FILE_SIZE must precede the field type=file
178  }
179  $texte .= ' <input type="file" name="uploadfile">';
180  $texte .= '<input type="hidden" value="BOM_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
181  $texte .= '<input type="submit" class="button small reposition" value="'.dol_escape_htmltag($langs->trans("Upload")).'" name="upload">';
182  $texte .= '</div>';
183 
184  $texte .= '</td>';
185 
186  $texte .= '<td rowspan="2" class="tdtop hideonsmartphone">';
187  $texte .= '<span class="opacitymedium">';
188  $texte .= $langs->trans("ExampleOfDirectoriesForModelGen");
189  $texte .= '</span>';
190  $texte .= '</td>';
191  $texte .= '</tr>';
192 
193  $texte .= '</table>';
194  $texte .= '</form>';
195 
196  return $texte;
197  }
198 
199  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
211  public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
212  {
213  // phpcs:enable
214  global $user, $langs, $conf, $mysoc, $hookmanager;
215 
216  if (empty($srctemplatepath)) {
217  dol_syslog("doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
218  return -1;
219  }
220 
221  // Add odtgeneration hook
222  if (!is_object($hookmanager)) {
223  include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
224  $hookmanager = new HookManager($this->db);
225  }
226  $hookmanager->initHooks(array('odtgeneration'));
227  global $action;
228 
229  if (!is_object($outputlangs)) {
230  $outputlangs = $langs;
231  }
232  $sav_charset_output = $outputlangs->charset_output;
233  $outputlangs->charset_output = 'UTF-8';
234 
235  // Load translation files required by the page
236  $outputlangs->loadLangs(array("main", "dict", "companies", "bills"));
237 
238  if ($conf->bom->dir_output) {
239  // If $object is id instead of object
240  if (!is_object($object)) {
241  $id = $object;
242  $object = new BOM($this->db);
243  $result = $object->fetch($id);
244  if ($result < 0) {
245  dol_print_error($this->db, $object->error);
246  return -1;
247  }
248  }
249 
250  $object->fetch_thirdparty();
251  $object->fetch_product();
252 
253  $dir = $conf->bom->multidir_output[isset($object->entity) ? $object->entity : 1];
254  $objectref = dol_sanitizeFileName($object->ref);
255  if (!preg_match('/specimen/i', $objectref)) {
256  $dir .= "/".$objectref;
257  }
258  $file = $dir."/".$objectref.".odt";
259 
260  if (!file_exists($dir)) {
261  if (dol_mkdir($dir) < 0) {
262  $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
263  return -1;
264  }
265  }
266 
267  if (file_exists($dir)) {
268  //print "srctemplatepath=".$srctemplatepath; // Src filename
269  $newfile = basename($srctemplatepath);
270  $newfiletmp = preg_replace('/\.od[ts]/i', '', $newfile);
271  $newfiletmp = preg_replace('/template_/i', '', $newfiletmp);
272  $newfiletmp = preg_replace('/modele_/i', '', $newfiletmp);
273  $newfiletmp = $objectref . '_' . $newfiletmp;
274  //$file=$dir.'/'.$newfiletmp.'.'.dol_print_date(dol_now(),'%Y%m%d%H%M%S').'.odt';
275  // Get extension (ods or odt)
276  $newfileformat = substr($newfile, strrpos($newfile, '.') + 1);
277  if (getDolGlobalInt('MAIN_DOC_USE_TIMING')) {
278  $format = getDolGlobalInt('MAIN_DOC_USE_TIMING');
279  if ($format == '1') {
280  $format = '%Y%m%d%H%M%S';
281  }
282  $filename = $newfiletmp . '-' . dol_print_date(dol_now(), $format) . '.' . $newfileformat;
283  } else {
284  $filename = $newfiletmp . '.' . $newfileformat;
285  }
286  $file = $dir . '/' . $filename;
287  //print "newdir=".$dir;
288  //print "newfile=".$newfile;
289  //print "file=".$file;
290  //print "conf->societe->dir_temp=".$conf->societe->dir_temp;
291 
292  dol_mkdir($conf->bom->dir_temp);
293  if (!is_writable($conf->bom->dir_temp)) {
294  $this->error = $langs->transnoentities("ErrorFailedToWriteInTempDirectory", $conf->bom->dir_temp);
295  dol_syslog('Error in write_file: ' . $this->error, LOG_ERR);
296  return -1;
297  }
298 
299  // If CUSTOMER contact defined on order, we use it
300  $usecontact = false;
301  $arrayidcontact = $object->getIdContact('external', 'CUSTOMER');
302  if (count($arrayidcontact) > 0) {
303  $usecontact = true;
304  $result = $object->fetch_contact($arrayidcontact[0]);
305  }
306 
307  // Recipient name
308  $contactobject = null;
309  if (!empty($usecontact)) {
310  // We can use the company of contact instead of thirdparty company
311  if ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || !empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT))) {
312  $object->contact->fetch_thirdparty();
313  $socobject = $object->contact->thirdparty;
314  $contactobject = $object->contact;
315  } else {
316  $socobject = $object->thirdparty;
317  // if we have a CUSTOMER contact and we dont use it as thirdparty recipient we store the contact object for later use
318  $contactobject = $object->contact;
319  }
320  } else {
321  $socobject = $object->thirdparty;
322  }
323 
324  // Make substitution
325  $substitutionarray = array(
326  '__QTY_TO_PRODUCE__' => $object->qty,
327  );
328  complete_substitutions_array($substitutionarray, $langs, $object);
329  // Call the ODTSubstitution hook
330  $parameters = array('file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$substitutionarray);
331  $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
332 
333  // Line of free text
334  $newfreetext = '';
335  $paramfreetext = 'BOM_FREE_TEXT';
336  if (!empty($conf->global->$paramfreetext)) {
337  $newfreetext = make_substitutions($conf->global->$paramfreetext, $substitutionarray);
338  }
339 
340  // Open and load template
341  require_once ODTPHP_PATH.'odf.php';
342  try {
343  $odfHandler = new Odf(
344  $srctemplatepath,
345  array(
346  'PATH_TO_TMP' => $conf->bom->dir_temp,
347  'ZIP_PROXY' => 'PclZipProxy', // PhpZipProxy or PclZipProxy. Got "bad compression method" error when using PhpZipProxy.
348  'DELIMITER_LEFT' => '{',
349  'DELIMITER_RIGHT' => '}'
350  )
351  );
352  } catch (Exception $e) {
353  $this->error = $e->getMessage();
354  dol_syslog($e->getMessage(), LOG_INFO);
355  return -1;
356  }
357  // After construction $odfHandler->contentXml contains content and
358  // [!-- BEGIN row.lines --]*[!-- END row.lines --] has been replaced by
359  // [!-- BEGIN lines --]*[!-- END lines --]
360  //print html_entity_decode($odfHandler->__toString());
361  //print exit;
362 
363 
364  // Make substitutions into odt of freetext
365  try {
366  $odfHandler->setVars('free_text', $newfreetext, true, 'UTF-8');
367  } catch (OdfException $e) {
368  dol_syslog($e->getMessage(), LOG_INFO);
369  }
370 
371  // Define substitution array
372  $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
373  $array_object_from_properties = $this->get_substitutionarray_each_var_object($object, $outputlangs);
374  $array_objet = $this->get_substitutionarray_object($object, $outputlangs);
375  $array_user = $this->get_substitutionarray_user($user, $outputlangs);
376  $array_soc = $this->get_substitutionarray_mysoc($mysoc, $outputlangs);
377  $array_thirdparty = $this->get_substitutionarray_thirdparty($socobject, $outputlangs);
378  $array_other = $this->get_substitutionarray_other($outputlangs);
379  // retrieve contact information for use in object as contact_xxx tags
380  $array_thirdparty_contact = array();
381  if ($usecontact && is_object($contactobject)) {
382  $array_thirdparty_contact = $this->get_substitutionarray_contact($contactobject, $outputlangs, 'contact');
383  }
384 
385  $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
386  complete_substitutions_array($tmparray, $outputlangs, $object);
387 
388  // Call the ODTSubstitution hook
389  $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray);
390  $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
391 
392  foreach ($tmparray as $key => $value) {
393  try {
394  if (preg_match('/logo$/', $key)) { // Image
395  if (file_exists($value)) {
396  $odfHandler->setImage($key, $value);
397  } else {
398  $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
399  }
400  } else // Text
401  {
402  $odfHandler->setVars($key, $value, true, 'UTF-8');
403  }
404  } catch (OdfException $e) {
405  dol_syslog($e->getMessage(), LOG_INFO);
406  }
407  }
408  // Replace tags of lines
409  try {
410  $foundtagforlines = 1;
411  try {
412  $listlines = $odfHandler->setSegment('lines');
413  } catch (OdfException $e) {
414  // We may arrive here if tags for lines not present into template
415  $foundtagforlines = 0;
416  dol_syslog($e->getMessage(), LOG_INFO);
417  }
418 
419  if ($foundtagforlines) {
420  $linenumber = 0;
421  foreach ($object->lines as $line) {
422  $linenumber++;
423 
424  if ($line->fk_product > 0) {
425  $line->fetch_product();
426 
427  $line->product_ref = $line->product->ref;
428  $line->product_desc = $line->product->description;
429  $line->product_label = $line->product->label;
430  $line->product_type = $line->product->type;
431  $line->product_barcode = $line->product->barcode;
432  }
433 
434  $tmparray = $this->get_substitutionarray_lines($line, $outputlangs, $linenumber);
435  complete_substitutions_array($tmparray, $outputlangs, $object, $line, "completesubstitutionarray_lines");
436  // Call the ODTSubstitutionLine hook
437  $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray, 'line'=>$line);
438  $reshook = $hookmanager->executeHooks('ODTSubstitutionLine', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
439  foreach ($tmparray as $key => $val) {
440  try {
441  $listlines->setVars($key, $val, true, 'UTF-8');
442  } catch (OdfException $e) {
443  dol_syslog($e->getMessage(), LOG_INFO);
444  } catch (SegmentException $e) {
445  dol_syslog($e->getMessage(), LOG_INFO);
446  }
447  }
448  $listlines->merge();
449  }
450  $odfHandler->mergeSegment($listlines);
451  }
452  } catch (OdfException $e) {
453  $this->error = $e->getMessage();
454  dol_syslog($this->error, LOG_WARNING);
455  return -1;
456  }
457 
458  // Replace labels translated
459  $tmparray = $outputlangs->get_translations_for_substitutions();
460  foreach ($tmparray as $key => $value) {
461  try {
462  $odfHandler->setVars($key, $value, true, 'UTF-8');
463  } catch (OdfException $e) {
464  dol_syslog($e->getMessage(), LOG_INFO);
465  }
466  }
467 
468  // Call the beforeODTSave hook
469 
470  $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray);
471  $reshook = $hookmanager->executeHooks('beforeODTSave', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
472 
473  // Write new file
474  if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
475  try {
476  $odfHandler->exportAsAttachedPDF($file);
477  } catch (Exception $e) {
478  $this->error = $e->getMessage();
479  dol_syslog($e->getMessage(), LOG_INFO);
480  return -1;
481  }
482  } else {
483  try {
484  $odfHandler->saveToDisk($file);
485  } catch (Exception $e) {
486  $this->error = $e->getMessage();
487  dol_syslog($e->getMessage(), LOG_INFO);
488  return -1;
489  }
490  }
491 
492  $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray);
493  $reshook = $hookmanager->executeHooks('afterODTCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
494 
495  dolChmod($file);
496 
497  $odfHandler = null; // Destroy object
498 
499  $this->result = array('fullpath'=>$file);
500 
501  return 1; // Success
502  } else {
503  $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
504  return -1;
505  }
506  }
507 
508  return -1;
509  }
510 }
Class for BOM.
Definition: bom.class.php:43
get_substitutionarray_each_var_object(&$object, $outputlangs, $recursive=1)
Define array with couple substitution key => substitution value.
get_substitutionarray_object($object, $outputlangs, $array_key='object')
Define array with couple substitution key => substitution value Note that vars into substitutions arr...
get_substitutionarray_mysoc($mysoc, $outputlangs)
Define array with couple substitution key => substitution value.
get_substitutionarray_contact($object, $outputlangs, $array_key='object')
Define array with couple substitution key => substitution value.
get_substitutionarray_other($outputlangs)
Define array with couple substitution key => substitution value.
get_substitutionarray_lines($line, $outputlangs, $linenumber=0)
Define array with couple substitution key => substitution value Note that vars into substitutions arr...
get_substitutionarray_thirdparty($object, $outputlangs, $array_key='company')
Define array with couple substitution key => substitution value For example {company_name},...
get_substitutionarray_user($user, $outputlangs)
Define array with couple substitution key => substitution value.
Class to manage generation of HTML components Only common components must be here.
Class to manage hooks.
Parent class for boms models.
Definition: modules_bom.php:40
Class to build documents using ODF templates generator.
write_file($object, $outputlangs, $srctemplatepath, $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build a document on disk using the generic odt module.
info($langs)
Return description of a module.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
print *****$script_file(".$version.") pid cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
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:62
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
newToken()
Return the value of token currently saved into session with name 'newtoken'.
complete_substitutions_array(&$substitutionarray, $outputlangs, $object=null, $parameters=null, $callfunc="completesubstitutionarray")
Complete the $substitutionarray with more entries coming from external module that had set the "subst...
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
getCommonSubstitutionArray($outputlangs, $onlykey=0, $exclude=null, $object=null, $include=null)
Return array of possible common substitutions.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:120
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition: repair.php:123
getMaxFileSizeArray()
Return the max allowed for file upload.