dolibarr 24.0.0-beta
doc_generic_myobject_odt.modules.php
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-2024 Frédéric France <frederic.france@free.fr>
8 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
9 * Copyright (C) ---Replace with your own copyright and developer email---
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 * or see https://www.gnu.org/
24 */
25
32dol_include_once('/mymodule/core/modules/mymodule/modules_myobject.php');
33require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/doc.lib.php';
38
39
44{
49 public $emetteur;
50
55 public $phpmin = array(7, 0);
56
60 public $version = 'dolibarr';
61
62
68 public function __construct($db)
69 {
70 global $langs, $mysoc;
71
72 // Load translation files required by the page
73 $langs->loadLangs(array("main", "companies"));
74
75 $this->db = $db;
76 $this->name = "ODT templates";
77 $this->description = $langs->trans("DocumentModelOdt");
78 $this->scandir = 'MYMODULE_MYOBJECT_ADDON_PDF_ODT_PATH'; // Name of constant that is used to save list of directories to scan
79
80 // Page size for A4 format
81 $this->type = 'odt';
82 $this->page_largeur = 0;
83 $this->page_hauteur = 0;
84 $this->format = array($this->page_largeur, $this->page_hauteur);
85 $this->marge_gauche = 0;
86 $this->marge_droite = 0;
87 $this->marge_haute = 0;
88 $this->marge_basse = 0;
89
90 $this->option_logo = 1; // Display logo
91 $this->option_tva = 0; // Manage the vat option FACTURE_TVAOPTION
92 $this->option_modereg = 0; // Display payment mode
93 $this->option_condreg = 0; // Display payment terms
94 $this->option_multilang = 1; // Available in several languages
95 $this->option_escompte = 0; // Displays if there has been a discount
96 $this->option_credit_note = 0; // Support credit notes
97 $this->option_freetext = 1; // Support add of a personalised text
98 $this->option_draft_watermark = 0; // Support add of a watermark on drafts
99
100 if ($mysoc === null) {
101 dol_syslog(get_class($this).'::__construct() Global $mysoc should not be null.'. getCallerInfoString(), LOG_ERR);
102 return;
103 }
104
105 // Get source company
106 $this->emetteur = $mysoc;
107 if (!$this->emetteur->country_code) {
108 $this->emetteur->country_code = substr($langs->defaultlang, -2); // By default if not defined
109 }
110 }
111
112
119 public function info($langs)
120 {
121 global $langs;
122
123 // Load translation files required by the page
124 $langs->loadLangs(array("errors", "companies"));
125
126 $form = new Form($this->db);
127
128 $odtPath = trim(getDolGlobalString('MYMODULE_MYOBJECT_ADDON_PDF_ODT_PATH'));
129
130 $texte = $this->description.".<br>\n";
131 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" enctype="multipart/form-data">';
132 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
133 $texte .= '<input type="hidden" name="page_y" value="">';
134 $texte .= '<input type="hidden" name="action" value="setModuleOptions">';
135 $texte .= '<input type="hidden" name="param1" value="MYMODULE_MYOBJECT_ADDON_PDF_ODT_PATH">';
136
137 $texte .= '<table class="nobordernopadding centpercent">';
138
139 // List of directories area
140 $texte .= '<tr><td>';
141 $texttitle = $langs->trans("ListOfDirectories");
142 $listofdir = explode(',', preg_replace('/[\r\n]+/', ',', $odtPath));
143 $listoffiles = array();
144 foreach ($listofdir as $key => $tmpdir) {
145 $tmpdir = trim($tmpdir);
146 $tmpdir = preg_replace('/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
147 if (!$tmpdir) {
148 unset($listofdir[$key]);
149 continue;
150 }
151 if (!is_dir($tmpdir)) {
152 $texttitle .= img_warning($langs->trans("ErrorDirNotFound", $tmpdir), '');
153 } else {
154 $tmpfiles = dol_dir_list($tmpdir, 'files', 0, '\.(ods|odt)');
155 if (count($tmpfiles)) {
156 $listoffiles = array_merge($listoffiles, $tmpfiles);
157 }
158 }
159 }
160 $texthelp = $langs->trans("ListOfDirectoriesForModelGenODT");
161 $texthelp .= '<br><br><span class="opacitymedium">'.$langs->trans("ExampleOfDirectoriesForModelGen").'</span>';
162 // Add list of substitution keys
163 $texthelp .= '<br>'.$langs->trans("FollowingSubstitutionKeysCanBeUsed").'<br>';
164 $texthelp .= $langs->transnoentitiesnoconv("FullListOnOnlineDocumentation"); // This contains an url, we don't modify it
165
166 // Scan directories
167 $nbofiles = count($listoffiles);
168 if ($odtPath) {
169 $texte .= $langs->trans("NumberOfModelFilesFound").': <b>';
170 //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':'';
171 $texte .= count($listoffiles);
172 //$texte.=$nbofiles?'</a>':'';
173 $texte .= '</b>';
174 }
175
176 if ($nbofiles) {
177 $texte .= '<div id="div_'.get_class($this).'" class="hiddenx">';
178 // Show list of found files
179 foreach ($listoffiles as $file) {
180 $texte .= '- '.$file['name'].' <a href="'.DOL_URL_ROOT.'/document.php?modulepart=doctemplates&file=mymodule_myobject/'.urlencode(basename($file['name'])).'">'.img_picto('', 'listlight').'</a>';
181 $texte .= ' &nbsp; <a class="reposition" href="'.$_SERVER["PHP_SELF"].'?modulepart=doctemplates&keyforuploaddir=MYMODULE_MYOBJECT_ADDON_PDF_ODT_PATH&action=deletefile&token='.newToken().'&file='.urlencode(basename($file['name'])).'">'.img_picto('', 'delete').'</a>';
182 $texte .= '<br>';
183 }
184 $texte .= '</div>';
185 }
186
187 if (!getDolGlobalString('MAIN_NO_MULTIDIR_FOR_ODT')) {
188 $texte .= '<br>';
189 $texte .= $form->textwithpicto($texttitle, $texthelp, 1, 'help', '', 1, 3, $this->name);
190 $texte .= '<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
191 $texte .= '<textarea class="flat textareafordir" spellcheck="false" cols="60" name="value1">';
192 $texte .= $odtPath;
193 $texte .= '</textarea>';
194 $texte .= '</div><div style="display: inline-block; vertical-align: middle;">';
195 $texte .= '<input type="submit" class="button button-edit smallpaddingimp reposition" name="modify" value="'.dolPrintHTMLForAttribute($langs->trans("Modify")).'">';
196 $texte .= '<br></div></div>';
197 } else {
198 $texte .= '<br>';
199 $texte .= '<input type="hidden" name="value1" value="MYMODULE_MYOBJECT_ADDON_PDF_ODT_PATH">';
200 }
201
202 // Add input to upload a new template file.
203 $texte .= '<div>'.$langs->trans("UploadNewTemplate");
204 $maxfilesizearray = getMaxFileSizeArray();
205 $maxmin = $maxfilesizearray['maxmin'];
206 if ($maxmin > 0) {
207 $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).'">'; // MAX_FILE_SIZE must precede the field type=file
208 }
209 $texte .= ' <input type="file" name="uploadfile">';
210 $texte .= '<input type="hidden" value="MYMODULE_MYOBJECT_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
211 $texte .= '<input type="submit" class="button smallpaddingimp reposition" value="'.dol_escape_htmltag($langs->trans("Upload")).'" name="upload">';
212 $texte .= '</div>';
213
214 $texte .= '</td>';
215
216 $texte .= '</tr>';
217
218 $texte .= '</table>';
219 $texte .= '</form>';
220
221 return $texte;
222 }
223
224 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
236 public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
237 {
238 // phpcs:enable
239 global $user, $langs, $conf, $mysoc, $hookmanager;
240 global $action;
241
242 if (empty($srctemplatepath)) {
243 dol_syslog("doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
244 return -1;
245 }
246
247 // Add odtgeneration hook
248 if (!is_object($hookmanager)) {
249 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
250 $hookmanager = new HookManager($this->db);
251 }
252 $hookmanager->initHooks(array('odtgeneration'));
253 global $action;
254
255 if (!is_object($outputlangs)) {
256 $outputlangs = $langs;
257 }
258 $sav_charset_output = $outputlangs->charset_output;
259 $outputlangs->charset_output = 'UTF-8';
260
261 $outputlangs->loadLangs(array("main", "dict", "companies", "bills"));
262
263 if ($conf->mymodule->dir_output) {
264 // If $object is id instead of object
265 if (!is_object($object)) {
266 $id = $object;
267 $object = new MyObject($this->db);
268 $result = $object->fetch($id);
269 if ($result < 0) {
270 dol_print_error($this->db, $object->error);
271 return -1;
272 }
273 }
274
275 $object->fetch_thirdparty();
276
277 $dir = $conf->mymodule->multidir_output[isset($object->entity) ? $object->entity : 1];
278 $objectref = dol_sanitizeFileName($object->ref);
279 if (!preg_match('/specimen/i', $objectref)) {
280 $dir .= "/".$objectref;
281 }
282 $file = $dir."/".$objectref.".odt";
283
284 if (!file_exists($dir)) {
285 if (dol_mkdir($dir) < 0) {
286 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
287 return -1;
288 }
289 }
290
291 if (file_exists($dir)) {
292 //print "srctemplatepath=".$srctemplatepath; // Src filename
293 $newfile = basename($srctemplatepath);
294 $newfiletmp = preg_replace('/\.od[ts]/i', '', $newfile);
295 $newfiletmp = preg_replace('/template_/i', '', $newfiletmp);
296 $newfiletmp = preg_replace('/modele_/i', '', $newfiletmp);
297
298 $newfiletmp = $objectref . '_' . $newfiletmp;
299 //$file=$dir.'/'.$newfiletmp.'.'.dol_print_date(dol_now(),'%Y%m%d%H%M%S').'.odt';
300
301 // Get extension (ods or odt)
302 $newfileformat = substr($newfile, strrpos($newfile, '.') + 1);
303 if (getDolGlobalString('MAIN_DOC_USE_TIMING')) {
304 $format = getDolGlobalString('MAIN_DOC_USE_TIMING');
305 if ($format == '1') {
306 $format = '%Y%m%d%H%M%S';
307 }
308 $filename = $newfiletmp . '-' . dol_print_date(dol_now(), $format) . '.' . $newfileformat;
309 } else {
310 $filename = $newfiletmp . '.' . $newfileformat;
311 }
312 $file = $dir . '/' . $filename;
313 //print "newdir=".$dir;
314 //print "newfile=".$newfile;
315 //print "file=".$file;
316 //print "conf->societe->dir_temp=".$conf->societe->dir_temp;
317
318 dol_mkdir($conf->mymodule->dir_temp);
319 if (!is_writable($conf->mymodule->dir_temp)) {
320 $this->error = $langs->transnoentities("ErrorFailedToWriteInTempDirectory", $conf->mymodule->dir_temp);
321 dol_syslog('Error in write_file: ' . $this->error, LOG_ERR);
322 return -1;
323 }
324
325 // If CUSTOMER contact defined on object, we use it
326 $usecontact = false;
327 $arrayidcontact = $object->getIdContact('external', 'CUSTOMER');
328 if (count($arrayidcontact) > 0) {
329 $usecontact = true;
330 $result = $object->fetch_contact($arrayidcontact[0]);
331 }
332
333 // Recipient name
334 $contactobject = null;
335 if (!empty($usecontact)) {
336 // We can use the company of contact instead of thirdparty company
337 if ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || getDolGlobalInt('MAIN_USE_COMPANY_NAME_OF_CONTACT'))) {
338 $object->contact->fetch_thirdparty();
339 $socobject = $object->contact->thirdparty;
340 $contactobject = $object->contact;
341 } else {
342 $socobject = $object->thirdparty;
343 // if we have a CUSTOMER contact and we don't use it as thirdparty recipient we store the contact object for later use
344 $contactobject = $object->contact;
345 }
346 } else {
347 $socobject = $object->thirdparty;
348 }
349
350 // Make substitution
351 $substitutionarray = array(
352 '__FROM_NAME__' => $this->emetteur->name,
353 '__FROM_EMAIL__' => $this->emetteur->email,
354 '__TOTAL_TTC__' => $object->total_ttc,
355 '__TOTAL_HT__' => $object->total_ht,
356 '__TOTAL_VAT__' => $object->total_tva
357 );
358 complete_substitutions_array($substitutionarray, $langs, $object);
359 // Call the ODTSubstitution hook
360 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$substitutionarray);
361 $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
362
363 // Line of free text
364 $newfreetext = '';
365 $paramfreetext = 'MYMODULE_MYOBJECT_FREE_TEXT';
366 if (getDolGlobalString($paramfreetext)) {
367 $newfreetext = make_substitutions(getDolGlobalString($paramfreetext), $substitutionarray);
368 }
369
370 // Open and load template
371 require_once ODTPHP_PATH.'odf.php';
372 try {
373 $odfHandler = new Odf(
374 $srctemplatepath,
375 array(
376 'PATH_TO_TMP' => $conf->mymodule->dir_temp,
377 'ZIP_PROXY' => getDolGlobalString('MAIN_ODF_ZIP_PROXY', 'PclZipProxy'), // PhpZipProxy or PclZipProxy. Got "bad compression method" error when using PhpZipProxy.
378 'DELIMITER_LEFT' => '{',
379 'DELIMITER_RIGHT' => '}'
380 )
381 );
382 } catch (Exception $e) {
383 $this->error = $e->getMessage();
384 dol_syslog($e->getMessage(), LOG_INFO);
385 return -1;
386 }
387 // After construction $odfHandler->contentXml contains content and
388 // [!-- BEGIN row.lines --]*[!-- END row.lines --] has been replaced by
389 // [!-- BEGIN lines --]*[!-- END lines --]
390 //print html_entity_decode($odfHandler->__toString());
391 //print exit;
392
393 $object->fetch_optionals();
394
395 // Make substitutions into odt of freetext
396 try {
397 $odfHandler->setVars('free_text', $newfreetext, true, 'UTF-8');
398 } catch (OdfException $e) {
399 dol_syslog($e->getMessage(), LOG_INFO);
400 }
401
402 // Define substitution array
403 $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
404 $array_object_from_properties = $this->get_substitutionarray_each_var_object($object, $outputlangs);
405 $array_objet = $this->get_substitutionarray_object($object, $outputlangs);
406 $array_user = $this->get_substitutionarray_user($user, $outputlangs);
407 $array_soc = $this->get_substitutionarray_mysoc($mysoc, $outputlangs);
408 $array_thirdparty = $this->get_substitutionarray_thirdparty($socobject, $outputlangs);
409 $array_other = $this->get_substitutionarray_other($outputlangs);
410 // retrieve contact information for use in object as contact_xxx tags
411 $array_thirdparty_contact = array();
412 if ($usecontact && is_object($contactobject)) {
413 $array_thirdparty_contact = $this->get_substitutionarray_contact($contactobject, $outputlangs, 'contact');
414 }
415
416 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
417 complete_substitutions_array($tmparray, $outputlangs, $object);
418
419 // Call the ODTSubstitution hook
420 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray);
421 $reshook = $hookmanager->executeHooks('ODTSubstitution', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
422
423 // retrieve the constant to apply a ratio for image size or set the ratio to 1
424 if (getDolGlobalString('MAIN_DOC_ODT_IMAGE_RATIO')) {
425 $ratio = (float) getDolGlobalString('MAIN_DOC_ODT_IMAGE_RATIO');
426 } else {
427 $ratio = 1;
428 }
429
430 foreach ($tmparray as $key => $value) {
431 try {
432 if (preg_match('/logo$/', $key)) {
433 // 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 {
440 // 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 $foundtagforlines = 1;
449 try {
450 $listlines = $odfHandler->setSegment('lines');
451 } catch (OdfExceptionSegmentNotFound $e) {
452 // We may arrive here if tags for lines not present into template
453 $foundtagforlines = 0;
454 dol_syslog($e->getMessage(), LOG_INFO);
455 }
456
457 if ($foundtagforlines) {
458 $linenumber = 0;
459 foreach ($object->lines as $line) {
461 $linenumber++;
462
463 $tmparray = $this->get_substitutionarray_lines($line, $outputlangs, $linenumber);
464 complete_substitutions_array($tmparray, $outputlangs, $object, $line, "completesubstitutionarray_lines");
465 // Call the ODTSubstitutionLine hook
466 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray, 'line' => $line);
467 $reshook = $hookmanager->executeHooks('ODTSubstitutionLine', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
468 foreach ($tmparray as $key => $val) {
469 try {
470 $listlines->setVars($key, $val, true, 'UTF-8');
471 } catch (SegmentException $e) {
472 dol_syslog($e->getMessage(), LOG_INFO);
473 }
474 }
475 $listlines->merge();
476 }
477 try {
478 $odfHandler->mergeSegment($listlines);
479 } catch (OdfException $e) {
480 $this->error = $e->getMessage();
481 dol_syslog($this->error, LOG_WARNING);
482 return -1;
483 }
484 }
485
486 // Replace labels translated
487 $tmparray = $outputlangs->get_translations_for_substitutions();
488 foreach ($tmparray as $key => $value) {
489 try {
490 $odfHandler->setVars($key, $value, true, 'UTF-8');
491 } catch (OdfException $e) {
492 dol_syslog($e->getMessage(), LOG_INFO);
493 }
494 }
495
496 // Call the beforeODTSave hook
497
498 $parameters = array('odfHandler' => &$odfHandler, 'file' => $file, 'object' => $object, 'outputlangs' => $outputlangs, 'substitutionarray' => &$tmparray);
499 $reshook = $hookmanager->executeHooks('beforeODTSave', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
500
501 // Write new file
502 if (getDolGlobalString('MAIN_ODT_AS_PDF')) {
503 try {
504 $odfHandler->exportAsAttachedPDF($file);
505 } catch (Exception $e) {
506 $this->error = $e->getMessage();
507 dol_syslog($e->getMessage(), LOG_INFO);
508 return -1;
509 }
510 } else {
511 try {
512 $odfHandler->saveToDisk($file);
513 } catch (Exception $e) {
514 $this->error = $e->getMessage();
515 dol_syslog($e->getMessage(), LOG_INFO);
516 return -1;
517 }
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}
$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_each_var_object(&$object, $outputlangs, $recursive=1)
Define array with couple substitution key => substitution value @phpstan-template T.
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 document models.
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build a document on disk.
Class for MyObject.
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
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.