dolibarr 24.0.1
doc_generic_shipment_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-2021 Philippe Grand <philippe.grand@atoo-net.com>
7 * Copyright (C) 2018-2025 Frédéric France <frederic.france@free.fr>
8 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
9 *
10* This program is free software; you can redistribute it and/or modify
11* it under the terms of the GNU General Public License as published by
12* the Free Software Foundation; either version 3 of the License, or
13* (at your option) any later version.
14*
15* This program is distributed in the hope that it will be useful,
16* but WITHOUT ANY WARRANTY; without even the implied warranty of
17* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18* GNU General Public License for more details.
19*
20* You should have received a copy of the GNU General Public License
21* along with this program. If not, see <https://www.gnu.org/licenses/>.
22* or see https://www.gnu.org/
23*/
24
31require_once DOL_DOCUMENT_ROOT.'/core/modules/expedition/modules_expedition.php';
32require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/doc.lib.php';
37
38
43{
48 public $version = 'dolibarr';
49
50
56 public function __construct($db)
57 {
58 global $conf, $langs, $mysoc;
59
60 // Load translation files required by the page
61 $langs->loadLangs(array("main", "companies"));
62
63 $this->db = $db;
64 $this->name = "ODT templates";
65 $this->description = $langs->trans("DocumentModelOdt");
66 $this->update_main_doc_field = 1; // Save the name of generated file as the main doc when generating a doc with this template
67 $this->scandir = 'EXPEDITION_ADDON_PDF_ODT_PATH'; // Name of constant that is used to save list of directories to scan
68
69 // Page size for A4 format
70 $this->type = 'odt';
71 $this->page_largeur = 0;
72 $this->page_hauteur = 0;
73 $this->format = array($this->page_largeur, $this->page_hauteur);
74 $this->marge_gauche = 0;
75 $this->marge_droite = 0;
76 $this->marge_haute = 0;
77 $this->marge_basse = 0;
78
79 $this->option_logo = 1; // Display logo
80 $this->option_tva = 0; // Manage the vat option EXPEDITION_TVAOPTION
81 $this->option_modereg = 0; // Display payment mode
82 $this->option_condreg = 0; // Display payment terms
83 $this->option_multilang = 1; // Available in several languages
84 $this->option_escompte = 0; // Displays if there has been a discount
85 $this->option_credit_note = 0; // Support credit notes
86 $this->option_freetext = 1; // Support add of a personalised text
87 $this->option_draft_watermark = 0; // Support add of a watermark on drafts
88
89 if ($mysoc === null) {
90 dol_syslog(get_class($this).'::__construct() Global $mysoc should not be null.'. getCallerInfoString(), LOG_ERR);
91 return;
92 }
93
94 // Get source company
95 $this->emetteur = $mysoc;
96 if (!$this->emetteur->country_code) {
97 $this->emetteur->country_code = substr($langs->defaultlang, -2); // By default if not defined
98 }
99 }
100
101
108 public function info($langs)
109 {
110 global $conf, $langs;
111
112 // Load translation files required by the page
113 $langs->loadLangs(array("errors", "companies"));
114
115 $form = new Form($this->db);
116
117 $odtPath = trim(getDolGlobalString('EXPEDITION_ADDON_PDF_ODT_PATH'));
118
119 $texte = $this->description.".<br>\n";
120 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" enctype="multipart/form-data">';
121 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
122 $texte .= '<input type="hidden" name="page_y" value="">';
123 $texte .= '<input type="hidden" name="action" value="setModuleOptions">';
124 $texte .= '<input type="hidden" name="param1" value="EXPEDITION_ADDON_PDF_ODT_PATH">';
125 $texte .= '<table class="nobordernopadding centpercent">';
126
127 // List of directories area
128 $texte .= '<tr><td>';
129 $texttitle = $langs->trans("ListOfDirectories");
130 $listofdir = explode(',', preg_replace('/[\r\n]+/', ',', $odtPath));
131 $listoffiles = array();
132 foreach ($listofdir as $key => $tmpdir) {
133 $tmpdir = trim($tmpdir);
134 $tmpdir = preg_replace('/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
135 if (!$tmpdir) {
136 unset($listofdir[$key]);
137 continue;
138 }
139 if (!is_dir($tmpdir)) {
140 $texttitle .= img_warning($langs->trans("ErrorDirNotFound", $tmpdir), '');
141 } else {
142 $tmpfiles = dol_dir_list($tmpdir, 'files', 0, '\.(ods|odt)');
143 if (count($tmpfiles)) {
144 $listoffiles = array_merge($listoffiles, $tmpfiles);
145 }
146 }
147 }
148 $texthelp = $langs->trans("ListOfDirectoriesForModelGenODT");
149 $texthelp .= '<br><br><span class="opacitymedium">'.$langs->trans("ExampleOfDirectoriesForModelGen").'</span>';
150 // Add list of substitution keys
151 $texthelp .= '<br>'.$langs->trans("FollowingSubstitutionKeysCanBeUsed").'<br>';
152 $texthelp .= $langs->transnoentitiesnoconv("FullListOnOnlineDocumentation"); // This contains an url, we don't modify it
153
154 // Scan directories
155 $nbofiles = count($listoffiles);
156 if (!empty($odtPath)) {
157 $texte .= $langs->trans("NumberOfModelFilesFound").': <b>';
158 //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':'';
159 $texte .= count($listoffiles);
160 //$texte.=$nbofiles?'</a>':'';
161 $texte .= '</b><br>';
162 }
163 if ($nbofiles) {
164 $texte .= '<div id="div_'.get_class($this).'" class="hiddenx">';
165 // Show list of found files
166 foreach ($listoffiles as $file) {
167 $texte .= '- '.$file['name'];
168 $texte .= ' <a href="'.DOL_URL_ROOT.'/document.php?modulepart=doctemplates&file=shipments/'.urlencode(basename($file['name'])).'">'.img_picto('', 'listlight').'</a>';
169 $texte .= ' &nbsp; <a class="reposition" href="'.$_SERVER["PHP_SELF"].'?modulepart=doctemplates&keyforuploaddir=EXPEDITION_ADDON_PDF_ODT_PATH&action=deletefile&token='.newToken().'&file='.urlencode(basename($file['name'])).'">'.img_picto('', 'delete').'</a>';
170 $texte .= '<br>';
171 }
172 $texte .= '</div>';
173 }
174
175 $texte .= '<br>';
176 $texte .= $form->textwithpicto($texttitle, $texthelp, 1, 'help', '', 1, 3, $this->name);
177 $texte .= '<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
178 $texte .= '<textarea class="flat textareafordir" spellcheck="false" cols="60" name="value1">';
179 $texte .= $odtPath;
180 $texte .= '</textarea>';
181 $texte .= '</div><div style="display: inline-block; vertical-align: middle;">';
182 $texte .= '<input type="submit" class="button button-edit reposition smallpaddingimp" name="modify" value="'.dol_escape_htmltag($langs->trans("Modify")).'">';
183 $texte .= '<br></div></div>';
184
185 // Add input to upload a new template file.
186 $texte .= '<div>'.$langs->trans("UploadNewTemplate");
187 $maxfilesizearray = getMaxFileSizeArray();
188 $maxmin = $maxfilesizearray['maxmin'];
189 if ($maxmin > 0) {
190 $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).'">'; // MAX_FILE_SIZE must precede the field type=file
191 }
192 $texte .= ' <input type="file" name="uploadfile">';
193 $texte .= '<input type="hidden" value="EXPEDITION_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
194 $texte .= '<input type="submit" class="button smallpaddingimp reposition" value="'.dol_escape_htmltag($langs->trans("Upload")).'" name="upload">';
195 $texte .= '</div>';
196 $texte .= '</td>';
197
198 $texte .= '</tr>';
199
200 $texte .= '</table>';
201 $texte .= '</form>';
202
203 return $texte;
204 }
205
206 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
218 public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
219 {
220 // phpcs:enable
221 global $user, $langs, $conf, $mysoc, $hookmanager;
222
223 if (empty($srctemplatepath)) {
224 dol_syslog("doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
225 return -1;
226 }
227
228 // Add odtgeneration hook
229 if (!is_object($hookmanager)) {
230 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
231 $hookmanager = new HookManager($this->db);
232 }
233 $hookmanager->initHooks(array('odtgeneration'));
234 global $action;
235
236 if (!is_object($outputlangs)) {
237 $outputlangs = $langs;
238 }
239 $sav_charset_output = $outputlangs->charset_output;
240 $outputlangs->charset_output = 'UTF-8';
241
242 // Load translation files required by page
243 $outputlangs->loadLangs(array("main", "dict", "companies", "bills"));
244
245 if ($conf->expedition->multidir_output[$object->entity ?? $conf->entity]."/sending") {
246 // If $object is id instead of object
247 if (!is_object($object)) {
248 $id = $object;
249 $object = new Expedition($this->db);
250 $result = $object->fetch($id);
251 if ($result < 0) {
252 dol_print_error($this->db, $object->error);
253 return -1;
254 }
255 }
256
257 $object->fetch_thirdparty();
258
259 $dir = $conf->expedition->multidir_output[$object->entity ?? $conf->entity]."/sending";
260 $objectref = dol_sanitizeFileName($object->ref);
261 if (!preg_match('/specimen/i', $objectref)) {
262 $dir .= "/".$objectref;
263 }
264 $file = $dir."/".$objectref.".odt";
265
266 if (!file_exists($dir)) {
267 if (dol_mkdir($dir) < 0) {
268 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
269 return -1;
270 }
271 }
272
273 if (file_exists($dir)) {
274 //print "srctemplatepath=".$srctemplatepath; // Src filename
275 $newfile = basename($srctemplatepath);
276 $newfiletmp = preg_replace('/\.od[ts]/i', '', $newfile);
277 $newfiletmp = preg_replace('/template_/i', '', $newfiletmp);
278 $newfiletmp = preg_replace('/modele_/i', '', $newfiletmp);
279 $newfiletmp = $objectref . '_' . $newfiletmp;
280 //$file=$dir.'/'.$newfiletmp.'.'.dol_print_date(dol_now(),'%Y%m%d%H%M%S').'.odt';
281 // Get extension (ods or odt)
282 $newfileformat = substr($newfile, strrpos($newfile, '.') + 1);
283 if (getDolGlobalString('MAIN_DOC_USE_TIMING')) {
284 $format = getDolGlobalString('MAIN_DOC_USE_TIMING');
285 if ($format == '1') {
286 $format = '%Y%m%d%H%M%S';
287 }
288 $filename = $newfiletmp . '-' . dol_print_date(dol_now(), $format) . '.' . $newfileformat;
289 } else {
290 $filename = $newfiletmp . '.' . $newfileformat;
291 }
292 $file = $dir . '/' . $filename;
293 //print "newdir=".$dir;
294 //print "newfile=".$newfile;
295 //print "file=".$file;
296 //print "conf->societe->dir_temp=".$conf->societe->dir_temp;
297
298 dol_mkdir($conf->expedition->dir_temp);
299 if (!is_writable($conf->expedition->dir_temp)) {
300 $this->error = $langs->transnoentities("ErrorFailedToWriteInTempDirectory", $conf->expedition->dir_temp);
301 dol_syslog('Error in write_file: ' . $this->error, LOG_ERR);
302 return -1;
303 }
304
305 // If SHIPMENT contact defined on invoice, we use it
306 $usecontact = false;
307 $arrayidcontact = $object->getIdContact('external', 'SHIPPING');
308 if (count($arrayidcontact) > 0) {
309 $usecontact = true;
310 $result = $object->fetch_contact($arrayidcontact[0]);
311 }
312
313 // Recipient name
314 $contactobject = null;
315 if (!empty($usecontact)) {
316 // We can use the company of contact instead of thirdparty company
317 if ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || getDolGlobalString('MAIN_USE_COMPANY_NAME_OF_CONTACT'))) {
318 $object->contact->fetch_thirdparty();
319 $socobject = $object->contact->thirdparty;
320 $contactobject = $object->contact;
321 } else {
322 $socobject = $object->thirdparty;
323 // if we have a SHIPPING contact and we don't use it as thirdparty recipient we store the contact object for later use
324 $contactobject = $object->contact;
325 }
326 } else {
327 $socobject = $object->thirdparty;
328 }
329
330 // Make substitution
331 $substitutionarray = array(
332 '__FROM_NAME__' => $this->emetteur->name,
333 '__FROM_EMAIL__' => $this->emetteur->email,
334 '__TOTAL_TTC__' => $object->total_ttc,
335 '__TOTAL_HT__' => $object->total_ht,
336 '__TOTAL_VAT__' => $object->total_tva
337 );
338 complete_substitutions_array($substitutionarray, $langs, $object);
339 // Call the ODTSubstitution hook
340 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$substitutionarray);
341 $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
342
343 // Line of free text
344 $newfreetext = '';
345 $paramfreetext = 'EXPEDITION_FREE_TEXT';
346 if (getDolGlobalString($paramfreetext)) {
347 $newfreetext = make_substitutions(getDolGlobalString($paramfreetext), $substitutionarray);
348 }
349
350 // Open and load template
351 require_once ODTPHP_PATH.'odf.php';
352 try {
353 $odfHandler = new Odf(
354 $srctemplatepath,
355 array(
356 'PATH_TO_TMP' => $conf->expedition->dir_temp,
357 'ZIP_PROXY' => getDolGlobalString('MAIN_ODF_ZIP_PROXY', 'PclZipProxy'), // PhpZipProxy or PclZipProxy. Got "bad compression method" error when using PhpZipProxy.
358 'DELIMITER_LEFT' => '{',
359 'DELIMITER_RIGHT' => '}'
360 )
361 );
362 } catch (Exception $e) {
363 $this->error = $e->getMessage();
364 dol_syslog($e->getMessage(), LOG_INFO);
365 return -1;
366 }
367 // After construction $odfHandler->contentXml contains content and
368 // [!-- BEGIN row.lines --]*[!-- END row.lines --] has been replaced by
369 // [!-- BEGIN lines --]*[!-- END lines --]
370 //print html_entity_decode($odfHandler->__toString());
371 //print exit;
372
373
374 // Make substitutions into odt of freetext
375 try {
376 $odfHandler->setVars('free_text', $newfreetext, true, 'UTF-8');
377 } catch (OdfException $e) {
378 dol_syslog($e->getMessage(), LOG_INFO);
379 }
380
381 // retrieve the constant to apply a ratio for image size or set the ratio to 1
382 if (getDolGlobalString('MAIN_DOC_ODT_IMAGE_RATIO')) {
383 $ratio = (float) getDolGlobalString('MAIN_DOC_ODT_IMAGE_RATIO');
384 } else {
385 $ratio = 1;
386 }
387
388 // Make substitutions into odt of user info
389 $tmparray = $this->get_substitutionarray_user($user, $outputlangs);
390 foreach ($tmparray as $key => $value) {
391 try {
392 if (preg_match('/logo$/', $key)) { // Image
393 //var_dump($value);exit;
394 if (file_exists($value)) {
395 $odfHandler->setImage($key, $value, $ratio);
396 } else {
397 $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
398 }
399 } else { // Text
400 $odfHandler->setVars($key, $value, true, 'UTF-8');
401 }
402 } catch (OdfException $e) {
403 dol_syslog($e->getMessage(), LOG_INFO);
404 }
405 }
406 // Make substitutions into odt of mysoc
407 $tmparray = $this->get_substitutionarray_mysoc($mysoc, $outputlangs);
408 foreach ($tmparray as $key => $value) {
409 try {
410 if (preg_match('/logo$/', $key)) { // Image
411 //var_dump($value);exit;
412 if (file_exists($value)) {
413 $odfHandler->setImage($key, $value, $ratio);
414 } else {
415 $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
416 }
417 } else { // Text
418 $odfHandler->setVars($key, $value, true, 'UTF-8');
419 }
420 } catch (OdfException $e) {
421 dol_syslog($e->getMessage(), LOG_INFO);
422 }
423 }
424 // Make substitutions into odt of thirdparty
425 if ($socobject->element == 'contact') {
427 $tmparray = $this->get_substitutionarray_contact($socobject, $outputlangs);
428 } else {
429 $tmparray = $this->get_substitutionarray_thirdparty($socobject, $outputlangs);
430 }
431 foreach ($tmparray as $key => $value) {
432 try {
433 if (preg_match('/logo$/', $key)) { // Image
434 if (file_exists($value)) {
435 $odfHandler->setImage($key, $value, $ratio);
436 } else {
437 $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
438 }
439 } else { // Text
440 $odfHandler->setVars($key, $value, true, 'UTF-8');
441 }
442 } catch (OdfException $e) {
443 dol_syslog($e->getMessage(), LOG_INFO);
444 }
445 }
446
447 if ($usecontact && is_object($contactobject)) {
448 $tmparray = $this->get_substitutionarray_contact($contactobject, $outputlangs, 'contact');
449 foreach ($tmparray as $key => $value) {
450 try {
451 if (preg_match('/logo$/', $key)) { // Image
452 if (file_exists($value)) {
453 $odfHandler->setImage($key, $value, $ratio);
454 } else {
455 $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
456 }
457 } else { // Text
458 $odfHandler->setVars($key, $value, true, 'UTF-8');
459 }
460 } catch (OdfException $e) {
461 dol_syslog($e->getMessage(), LOG_INFO);
462 }
463 }
464 }
465
466 // Replace tags of object + external modules
467 $tmparray = array_merge($tmparray, $this->get_substitutionarray_shipment($object, $outputlangs));
468 $tmparray = array_merge($tmparray, $this->get_substitutionarray_other($outputlangs));
469
470 complete_substitutions_array($tmparray, $outputlangs, $object);
471 // Call the ODTSubstitution hook
472 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray);
473 $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
474
475 foreach ($tmparray as $key => $value) {
476 try {
477 if (preg_match('/logo$/', $key)) {
478 // Image
479 if (file_exists($value)) {
480 $odfHandler->setImage($key, $value, $ratio);
481 } else {
482 $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
483 }
484 } else {
485 // Text
486 $odfHandler->setVars($key, $value, true, 'UTF-8');
487 }
488 } catch (OdfException $e) {
489 dol_syslog($e->getMessage(), LOG_INFO);
490 }
491 }
492
493 // Replace tags of lines
494 $foundtagforlines = 1;
495 try {
496 $listlines = $odfHandler->setSegment('lines');
497 } catch (OdfExceptionSegmentNotFound $e) {
498 // We may arrive here if tags for lines not present into template
499 $foundtagforlines = 0;
500 dol_syslog($e->getMessage(), LOG_INFO);
501 }
502 if ($foundtagforlines) {
503 $linenumber = 0;
504 foreach ($object->lines as $line) {
505 $linenumber++;
506 $tmparray = $this->get_substitutionarray_lines($line, $outputlangs, $linenumber);
507 complete_substitutions_array($tmparray, $outputlangs, $object, $line, "completesubstitutionarray_lines");
508 // Call the ODTSubstitutionLine hook
509 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray, 'line' => $line);
510 $reshook = $hookmanager->executeHooks('ODTSubstitutionLine', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
511 foreach ($tmparray as $key => $val) {
512 try {
513 $listlines->setVars($key, $val, true, 'UTF-8');
514 } catch (SegmentException $e) {
515 dol_syslog($e->getMessage(), LOG_INFO);
516 }
517 }
518 $listlines->merge();
519 }
520 try {
521 $odfHandler->mergeSegment($listlines);
522 } catch (OdfException $e) {
523 $this->error = $e->getMessage();
524 dol_syslog($this->error, LOG_WARNING);
525 return -1;
526 }
527 }
528
529 // Replace labels translated
530 $tmparray = $outputlangs->get_translations_for_substitutions();
531 foreach ($tmparray as $key => $value) {
532 try {
533 $odfHandler->setVars($key, $value, true, 'UTF-8');
534 } catch (OdfException $e) {
535 dol_syslog($e->getMessage(), LOG_INFO);
536 }
537 }
538
539 // Call the beforeODTSave hook
540 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray);
541 $reshook = $hookmanager->executeHooks('beforeODTSave', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
542
543 // Write new file
544 if (getDolGlobalString('MAIN_ODT_AS_PDF')) {
545 try {
546 $odfHandler->exportAsAttachedPDF($file);
547 } catch (Exception $e) {
548 $this->error = $e->getMessage();
549 dol_syslog($e->getMessage(), LOG_INFO);
550 return -1;
551 }
552 } else {
553 try {
554 $odfHandler->saveToDisk($file);
555 } catch (Exception $e) {
556 $this->error = $e->getMessage();
557 dol_syslog($e->getMessage(), LOG_INFO);
558 return -1;
559 }
560 }
561
562 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray);
563 $reshook = $hookmanager->executeHooks('afterODTCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
564
565 dolChmod($file);
566
567 $odfHandler = null; // Destroy object
568
569 $this->result = array('fullpath' => $file);
570
571 return 1; // Success
572 } else {
573 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
574 }
575 }
576
577 return -1;
578 }
579}
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
get_substitutionarray_shipment($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 of sending receipts models.
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build pdf onto disk.
Class to build documents using ODF templates generator.
info($langs)
Return description of a module.
global $mysoc
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.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:64
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
getCallerInfoString()
Get caller info as a string that can be appended to a log message.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dolChmod($filepath, $newmask='')
Change mod of a file.
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_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a 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|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
'integer', 'integer:ObjectClass:PathToClass[:AddCreateButtonOrNot[:Filter[:Sortfield]]]',...
Definition repair.php:130
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133
getMaxFileSizeArray()
Return the max allowed for file upload.