dolibarr 19.0.3
doc_generic_proposal_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) 2016 Charlie Benke <charlie@patas-monkey.com>
5 * Copyright (C) 2018-2019 Frédéric France <frederic.france@netlogic.fr>
6 *
7* This program is free software; you can redistribute it and/or modify
8* it under the terms of the GNU General Public License as published by
9* the Free Software Foundation; either version 3 of the License, or
10* (at your option) any later version.
11*
12* This program is distributed in the hope that it will be useful,
13* but WITHOUT ANY WARRANTY; without even the implied warranty of
14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15* GNU General Public License for more details.
16*
17* You should have received a copy of the GNU General Public License
18* along with this program. If not, see <https://www.gnu.org/licenses/>.
19* or see https://www.gnu.org/
20*/
21
28require_once DOL_DOCUMENT_ROOT.'/core/modules/propale/modules_propale.php';
29require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/doc.lib.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/signature.lib.php';
35
36
41{
45 public $version = 'dolibarr';
46
47
53 public function __construct($db)
54 {
55 global $langs, $mysoc;
56
57 // Load translation files required by the page
58 $langs->loadLangs(array("main", "companies"));
59
60 $this->db = $db;
61 $this->name = "ODT templates";
62 $this->description = $langs->trans("DocumentModelOdt");
63 $this->update_main_doc_field = 1; // Save the name of generated file as the main doc when generating a doc with this template
64 $this->scandir = 'PROPALE_ADDON_PDF_ODT_PATH'; // Name of constant that is used to save list of directories to scan
65
66 // Page size for A4 format
67 $this->type = 'odt';
68 $this->page_largeur = 0;
69 $this->page_hauteur = 0;
70 $this->format = array($this->page_largeur, $this->page_hauteur);
71 $this->marge_gauche = 0;
72 $this->marge_droite = 0;
73 $this->marge_haute = 0;
74 $this->marge_basse = 0;
75
76 $this->option_logo = 1; // Display logo
77 $this->option_tva = 0; // Manage the vat option PROPALE_TVAOPTION
78 $this->option_modereg = 0; // Display payment mode
79 $this->option_condreg = 0; // Display payment terms
80 $this->option_multilang = 1; // Available in several languages
81 $this->option_escompte = 0; // Displays if there has been a discount
82 $this->option_credit_note = 0; // Support credit notes
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 $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 $odtChosen = getDolGlobalInt('MAIN_PROPAL_CHOOSE_ODT_DOCUMENT') > 0;
110 $odtPath = trim(getDolGlobalString('PROPALE_ADDON_PDF_ODT_PATH'));
111
112 $texte = $this->description.".<br>\n";
113 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" enctype="multipart/form-data">';
114 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
115 $texte .= '<input type="hidden" name="page_y" value="">';
116 $texte .= '<input type="hidden" name="action" value="setModuleOptions">';
117 $texte .= '<input type="hidden" name="param1" value="PROPALE_ADDON_PDF_ODT_PATH">';
118 if ($odtChosen) {
119 $texte .= '<input type="hidden" name="param2" value="PROPALE_ADDON_PDF_ODT_DEFAULT">';
120 $texte .= '<input type="hidden" name="param3" value="PROPALE_ADDON_PDF_ODT_TOBILL">';
121 $texte .= '<input type="hidden" name="param4" value="PROPALE_ADDON_PDF_ODT_CLOSED">';
122 }
123 $texte .= '<table class="nobordernopadding centpercent">';
124
125 // List of directories area
126 $texte .= '<tr><td>';
127 $texttitle = $langs->trans("ListOfDirectories");
128 $listofdir = explode(',', preg_replace('/[\r\n]+/', ',', $odtPath));
129 $listoffiles = array();
130 foreach ($listofdir as $key => $tmpdir) {
131 $tmpdir = trim($tmpdir);
132 $tmpdir = preg_replace('/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
133 if (!$tmpdir) {
134 unset($listofdir[$key]);
135 continue;
136 }
137 if (!is_dir($tmpdir)) {
138 $texttitle .= img_warning($langs->trans("ErrorDirNotFound", $tmpdir), 0);
139 } else {
140 $tmpfiles = dol_dir_list($tmpdir, 'files', 0, '\.(ods|odt)');
141 if (count($tmpfiles)) {
142 $listoffiles = array_merge($listoffiles, $tmpfiles);
143 }
144 }
145 }
146 $texthelp = $langs->trans("ListOfDirectoriesForModelGenODT");
147 $texthelp .= '<br><br><span class="opacitymedium">'.$langs->trans("ExampleOfDirectoriesForModelGen").'</span>';
148 // Add list of substitution keys
149 $texthelp .= '<br>'.$langs->trans("FollowingSubstitutionKeysCanBeUsed").'<br>';
150 $texthelp .= $langs->transnoentitiesnoconv("FullListOnOnlineDocumentation"); // This contains an url, we don't modify it
151
152 $texte .= $form->textwithpicto($texttitle, $texthelp, 1, 'help', '', 1, 3, $this->name);
153 $texte .= '<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
154 $texte .= '<textarea class="flat" cols="60" name="value1">';
155 $texte .= $odtPath;
156 $texte .= '</textarea>';
157 $texte .= '</div><div style="display: inline-block; vertical-align: middle;">';
158 $texte .= '<input type="submit" class="button button-edit reposition smallpaddingimp" name="modify" value="'.dol_escape_htmltag($langs->trans("Modify")).'">';
159 $texte .= '<br></div></div>';
160
161 // Scan directories
162 $nbofiles = count($listoffiles);
163 if (!empty($odtPath)) {
164 $texte .= $langs->trans("NumberOfModelFilesFound").': <b>';
165 //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':'';
166 $texte .= count($listoffiles);
167 //$texte.=$nbofiles?'</a>':'';
168 $texte .= '</b>';
169 }
170
171 if ($nbofiles) {
172 $texte .= '<div id="div_'.get_class($this).'" class="hiddenx">';
173 // Show list of found files
174 foreach ($listoffiles as $file) {
175 $texte .= '- '.$file['name'];
176 $texte .= ' <a href="'.DOL_URL_ROOT.'/document.php?modulepart=doctemplates&file=proposals/'.urlencode(basename($file['name'])).'">'.img_picto('', 'listlight').'</a>';
177 $texte .= ' &nbsp; <a class="reposition" href="'.$_SERVER["PHP_SELF"].'?modulepart=doctemplates&keyforuploaddir=PROPALE_ADDON_PDF_ODT_PATH&action=deletefile&token='.newToken().'&file='.urlencode(basename($file['name'])).'">'.img_picto('', 'delete').'</a>';
178 $texte .= '<br>';
179 }
180 $texte .= '</div>';
181
182 // Set default template for different status of proposal
183 if ($odtChosen) {
184 // Model for creation
185 $list = ModelePDFPropales::liste_modeles($this->db);
186 $texte .= '<table width="50%">';
187 $texte .= '<tr>';
188 $texte .= '<td width="60%">'.$langs->trans("DefaultModelPropalCreate").'</td>';
189 $texte .= '<td colspan="">';
190 $texte .= $form->selectarray('value2', $list, getDolGlobalString('PROPALE_ADDON_PDF_ODT_DEFAULT'));
191 $texte .= "</td></tr>";
192
193 $texte .= '<tr>';
194 $texte .= '<td width="60%">'.$langs->trans("DefaultModelPropalToBill").'</td>';
195 $texte .= '<td colspan="">';
196 $texte .= $form->selectarray('value3', $list, getDolGlobalString('PROPALE_ADDON_PDF_ODT_TOBILL'));
197 $texte .= "</td></tr>";
198 $texte .= '<tr>';
199
200 $texte .= '<td width="60%">'.$langs->trans("DefaultModelPropalClosed").'</td>';
201 $texte .= '<td colspan="">';
202 $texte .= $form->selectarray('value4', $list, getDolGlobalString('PROPALE_ADDON_PDF_ODT_CLOSED'));
203 $texte .= "</td></tr>";
204 $texte .= '</table>';
205 }
206 }
207 // Add input to upload a new template file.
208 $texte .= '<div>'.$langs->trans("UploadNewTemplate");
209 $maxfilesizearray = getMaxFileSizeArray();
210 $maxmin = $maxfilesizearray['maxmin'];
211 if ($maxmin > 0) {
212 $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).'">'; // MAX_FILE_SIZE must precede the field type=file
213 }
214 $texte .= ' <input type="file" name="uploadfile">';
215 $texte .= '<input type="hidden" value="PROPALE_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
216 $texte .= '<input type="submit" class="button smallpaddingimp reposition" value="'.dol_escape_htmltag($langs->trans("Upload")).'" name="upload">';
217 $texte .= '</div>';
218 $texte .= '</td>';
219
220 $texte .= '</tr>';
221
222 $texte .= '</table>';
223 $texte .= '</form>';
224
225 return $texte;
226 }
227
228 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
240 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
241 {
242 // phpcs:enable
243 global $user, $langs, $conf, $mysoc, $hookmanager;
244
245 if (empty($srctemplatepath)) {
246 dol_syslog("doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
247 return -1;
248 }
249
250 // Add odtgeneration hook
251 if (!is_object($hookmanager)) {
252 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
253 $hookmanager = new HookManager($this->db);
254 }
255 $hookmanager->initHooks(array('odtgeneration'));
256 global $action;
257
258 if (!is_object($outputlangs)) {
259 $outputlangs = $langs;
260 }
261 $sav_charset_output = $outputlangs->charset_output;
262 $outputlangs->charset_output = 'UTF-8';
263
264 // Load translation files required by the page
265 $outputlangs->loadLangs(array("main", "dict", "companies", "bills"));
266
267 if ($conf->propal->multidir_output[$conf->entity]) {
268 // If $object is id instead of object
269 if (!is_object($object)) {
270 $id = $object;
271 $object = new Propal($this->db);
272 $result = $object->fetch($id);
273 if ($result < 0) {
274 dol_print_error($this->db, $object->error);
275 return -1;
276 }
277 }
278
279 $object->fetch_thirdparty();
280
281 $dir = $conf->propal->multidir_output[$object->entity];
282 $objectref = dol_sanitizeFileName($object->ref);
283 if (!preg_match('/specimen/i', $objectref)) {
284 $dir .= "/".$objectref;
285 }
286 $file = $dir."/".$objectref.".odt";
287
288 if (!file_exists($dir)) {
289 if (dol_mkdir($dir) < 0) {
290 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
291 return -1;
292 }
293 }
294
295 if (file_exists($dir)) {
296 //print "srctemplatepath=".$srctemplatepath; // Src filename
297 $newfile = basename($srctemplatepath);
298 $newfiletmp = preg_replace('/\.od[ts]/i', '', $newfile);
299 $newfiletmp = preg_replace('/template_/i', '', $newfiletmp);
300 $newfiletmp = preg_replace('/modele_/i', '', $newfiletmp);
301
302 $newfiletmp = $objectref . '_' . $newfiletmp;
303
304 // Get extension (ods or odt)
305 $newfileformat = substr($newfile, strrpos($newfile, '.') + 1);
306 if (getDolGlobalString('MAIN_DOC_USE_TIMING')) {
307 $format = getDolGlobalString('MAIN_DOC_USE_TIMING');
308 if ($format == '1') {
309 $format = '%Y%m%d%H%M%S';
310 }
311 $filename = $newfiletmp . '-' . dol_print_date(dol_now(), $format) . '.' . $newfileformat;
312 } else {
313 $filename = $newfiletmp . '.' . $newfileformat;
314 }
315 $file = $dir . '/' . $filename;
316 //print "newdir=".$dir;
317 //print "newfile=".$newfile;
318 //print "file=".$file;
319 //print "conf->propal->dir_temp=".$conf->propal->dir_temp;
320
321 dol_mkdir($conf->propal->multidir_temp[$object->entity]);
322 if (!is_writable($conf->propal->dir_temp)) {
323 $this->error = $langs->transnoentities("ErrorFailedToWriteInTempDirectory", $conf->propal->dir_temp);
324 dol_syslog('Error in write_file: ' . $this->error, LOG_ERR);
325 return -1;
326 }
327
328 // If CUSTOMER contact defined on proposal, we use it
329 $usecontact = false;
330 $arrayidcontact = $object->getIdContact('external', 'CUSTOMER');
331 if (count($arrayidcontact) > 0) {
332 $usecontact = true;
333 $result = $object->fetch_contact($arrayidcontact[0]);
334 }
335
336 // Recipient name
337 $contactobject = null;
338 if (!empty($usecontact)) {
339 // We can use the company of contact instead of thirdparty company
340 if ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || getDolGlobalString('MAIN_USE_COMPANY_NAME_OF_CONTACT'))) {
341 $object->contact->fetch_thirdparty();
342 $socobject = $object->contact->thirdparty;
343 $contactobject = $object->contact;
344 } else {
345 $socobject = $object->thirdparty;
346 // if we have a CUSTOMER contact and we dont use it as thirdparty recipient we store the contact object for later use
347 $contactobject = $object->contact;
348 }
349 } else {
350 $socobject = $object->thirdparty;
351 }
352 // Make substitution
353 $substitutionarray = array(
354 '__FROM_NAME__' => $this->emetteur->name,
355 '__FROM_EMAIL__' => $this->emetteur->email,
356 '__TOTAL_TTC__' => $object->total_ttc,
357 '__TOTAL_HT__' => $object->total_ht,
358 '__TOTAL_VAT__' => $object->total_tva
359 );
360 complete_substitutions_array($substitutionarray, $langs, $object);
361 // Call the ODTSubstitution hook
362 $parameters = array('file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$substitutionarray);
363 $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
364
365 // Line of free text
366 $newfreetext = '';
367 $paramfreetext = 'PROPOSAL_FREE_TEXT';
368 if (!empty($conf->global->$paramfreetext)) {
369 $newfreetext = make_substitutions(getDolGlobalString($paramfreetext), $substitutionarray);
370 }
371
372 // Open and load template
373 require_once ODTPHP_PATH.'odf.php';
374 try {
375 $odfHandler = new Odf(
376 $srctemplatepath,
377 array(
378 'PATH_TO_TMP' => $conf->propal->multidir_temp[$object->entity],
379 'ZIP_PROXY' => 'PclZipProxy', // PhpZipProxy or PclZipProxy. Got "bad compression method" error when using PhpZipProxy.
380 'DELIMITER_LEFT' => '{',
381 'DELIMITER_RIGHT' => '}'
382 )
383 );
384 } catch (Exception $e) {
385 $this->error = $e->getMessage();
386 dol_syslog($e->getMessage(), LOG_INFO);
387 return -1;
388 }
389 // After construction $odfHandler->contentXml contains content and
390 // [!-- BEGIN row.lines --]*[!-- END row.lines --] has been replaced by
391 // [!-- BEGIN lines --]*[!-- END lines --]
392 //print html_entity_decode($odfHandler->__toString());
393 //print exit;
394
395 $object->fetch_optionals();
396
397 // Make substitutions into odt of freetext
398 try {
399 $odfHandler->setVars('free_text', $newfreetext, true, 'UTF-8');
400 } catch (OdfException $e) {
401 dol_syslog($e->getMessage(), LOG_INFO);
402 }
403
404 // Define substitution array
405 $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
406 $array_object_from_properties = $this->get_substitutionarray_each_var_object($object, $outputlangs);
407 $array_objet = $this->get_substitutionarray_object($object, $outputlangs);
408 $array_user = $this->get_substitutionarray_user($user, $outputlangs);
409 $array_soc = $this->get_substitutionarray_mysoc($mysoc, $outputlangs);
410 $array_thirdparty = $this->get_substitutionarray_thirdparty($socobject, $outputlangs);
411 $array_other = $this->get_substitutionarray_other($outputlangs);
412
413 include_once DOL_DOCUMENT_ROOT.'/societe/class/companybankaccount.class.php';
414 $companybankaccount = new CompanyBankAccount($this->db);
415 $companybankaccount->fetch(0, $object->thirdparty->id);
416 $array_objet['company_default_bank_iban']=$companybankaccount->iban;
417 $array_objet['company_default_bank_bic']=$companybankaccount->bic;
418
419 // retrieve contact information for use in object as contact_xxx tags
420 $array_thirdparty_contact = array();
421 if ($usecontact && is_object($contactobject)) {
422 $array_thirdparty_contact = $this->get_substitutionarray_contact($contactobject, $outputlangs, 'contact');
423 }
424
425 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
426 complete_substitutions_array($tmparray, $outputlangs, $object);
427
428 // Call the ODTSubstitution hook
429 $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray);
430 $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
431
432 foreach ($tmparray as $key => $value) {
433 try {
434 if (preg_match('/logo$/', $key)) { // Image
435 if (file_exists($value)) {
436 $odfHandler->setImage($key, $value);
437 } else {
438 $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
439 }
440 } else { // Text
441 $odfHandler->setVars($key, $value, true, 'UTF-8');
442 }
443 } catch (OdfException $e) {
444 dol_syslog($e->getMessage(), LOG_INFO);
445 }
446 }
447 // Replace tags of lines
448 try {
449 $foundtagforlines = 1;
450 try {
451 $listlines = $odfHandler->setSegment('lines');
452 } catch (OdfExceptionSegmentNotFound $e) {
453 // We may arrive here if tags for lines not present into template
454 $foundtagforlines = 0;
455 dol_syslog($e->getMessage(), LOG_INFO);
456 } catch (OdfException $e) {
457 $foundtagforlines = 0;
458 dol_syslog($e->getMessage(), LOG_INFO);
459 }
460 if ($foundtagforlines) {
461 $linenumber = 0;
462 foreach ($object->lines as $line) {
463 $linenumber++;
464 $tmparray = $this->get_substitutionarray_lines($line, $outputlangs, $linenumber);
465 complete_substitutions_array($tmparray, $outputlangs, $object, $line, "completesubstitutionarray_lines");
466 // Call the ODTSubstitutionLine hook
467 $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray, 'line'=>$line);
468 $reshook = $hookmanager->executeHooks('ODTSubstitutionLine', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
469 foreach ($tmparray as $key => $val) {
470 try {
471 $listlines->setVars($key, $val, true, 'UTF-8');
472 } catch (OdfException $e) {
473 dol_syslog($e->getMessage(), LOG_INFO);
474 } catch (SegmentException $e) {
475 dol_syslog($e->getMessage(), LOG_INFO);
476 }
477 }
478 $listlines->merge();
479 }
480 $odfHandler->mergeSegment($listlines);
481 }
482 } catch (OdfException $e) {
483 $this->error = $e->getMessage();
484 dol_syslog($this->error, LOG_WARNING);
485 return -1;
486 }
487
488 // Replace labels translated
489 $tmparray = $outputlangs->get_translations_for_substitutions();
490 foreach ($tmparray as $key => $value) {
491 try {
492 $odfHandler->setVars($key, $value, true, 'UTF-8');
493 } catch (OdfException $e) {
494 dol_syslog($e->getMessage(), LOG_INFO);
495 }
496 }
497
498 // Call the beforeODTSave hook
499 $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray);
500 $reshook = $hookmanager->executeHooks('beforeODTSave', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
501
502 // Write new file
503 if (getDolGlobalString('MAIN_ODT_AS_PDF')) {
504 try {
505 $odfHandler->exportAsAttachedPDF($file);
506 } catch (Exception $e) {
507 $this->error = $e->getMessage();
508 dol_syslog($e->getMessage(), LOG_INFO);
509 return -1;
510 }
511 } else {
512 try {
513 $odfHandler->saveToDisk($file);
514 } catch (Exception $e) {
515 $this->error = $e->getMessage();
516 dol_syslog($e->getMessage(), LOG_INFO);
517 return -1;
518 }
519 }
520 $parameters = array('odfHandler'=>&$odfHandler, 'file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs, 'substitutionarray'=>&$tmparray);
521 $reshook = $hookmanager->executeHooks('afterODTCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
522
523 dolChmod($file);
524
525 $odfHandler = null; // Destroy object
526
527 $this->result = array('fullpath'=>$file);
528
529 return 1; // Success
530 } else {
531 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
532 return -1;
533 }
534 }
535
536 return -1;
537 }
538}
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 bank accounts description of third parties.
Class to manage generation of HTML components Only common components must be here.
Class to manage hooks.
Classe mere des modeles de propale.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
Class to manage proposals.
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.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after 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 a 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)
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.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
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:121
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:124
getMaxFileSizeArray()
Return the max allowed for file upload.