20 use Luracast\Restler\RestException;
21 use Luracast\Restler\Format\UploadFormat;
23 require_once DOL_DOCUMENT_ROOT.
'/main.inc.php';
24 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
38 public static $DOCUMENT_FIELDS = array(
68 public function index($modulepart, $original_file =
'')
72 if (empty($modulepart)) {
73 throw new RestException(400,
'bad value for parameter modulepart');
75 if (empty($original_file)) {
76 throw new RestException(400,
'bad value for parameter original_file');
80 $entity = $conf->entity;
91 $relativefile = $original_file;
94 $accessallowed = $check_access[
'accessallowed'];
95 $sqlprotectagainstexternals = $check_access[
'sqlprotectagainstexternals'];
96 $original_file = $check_access[
'original_file'];
98 if (preg_match(
'/\.\./', $original_file) || preg_match(
'/[<>|]/', $original_file)) {
99 throw new RestException(401);
101 if (!$accessallowed) {
102 throw new RestException(401);
105 $filename = basename($original_file);
106 $original_file_osencoded =
dol_osencode($original_file);
108 if (!file_exists($original_file_osencoded)) {
109 dol_syslog(
"Try to download not found file ".$original_file_osencoded, LOG_WARNING);
110 throw new RestException(404,
'File not found');
113 $file_content = file_get_contents($original_file_osencoded);
114 return array(
'filename'=>$filename,
'content-type' =>
dol_mimetype($filename),
'filesize'=>filesize($original_file),
'content'=>base64_encode($file_content),
'encoding'=>
'base64');
137 public function builddoc($modulepart, $original_file =
'', $doctemplate =
'', $langcode =
'')
139 global $conf, $langs;
141 if (empty($modulepart)) {
142 throw new RestException(400,
'bad value for parameter modulepart');
144 if (empty($original_file)) {
145 throw new RestException(400,
'bad value for parameter original_file');
148 $outputlangs = $langs;
149 if ($langcode && $langs->defaultlang != $langcode) {
151 $outputlangs->setDefaultLang($langcode);
155 $entity = $conf->entity;
166 $relativefile = $original_file;
169 $accessallowed = $check_access[
'accessallowed'];
170 $sqlprotectagainstexternals = $check_access[
'sqlprotectagainstexternals'];
171 $original_file = $check_access[
'original_file'];
173 if (preg_match(
'/\.\./', $original_file) || preg_match(
'/[<>|]/', $original_file)) {
174 throw new RestException(401);
176 if (!$accessallowed) {
177 throw new RestException(401);
181 $hidedetails = empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS) ? 0 : 1;
182 $hidedesc = empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC) ? 0 : 1;
183 $hideref = empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 0 : 1;
187 if ($modulepart ==
'facture' || $modulepart ==
'invoice') {
188 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
190 $result = $this->invoice->fetch(0, preg_replace(
'/\.[^\.]+$/',
'', basename($original_file)));
192 throw new RestException(404,
'Invoice not found');
195 $templateused = $doctemplate ? $doctemplate : $this->invoice->model_pdf;
196 $result = $this->invoice->generateDocument($templateused, $outputlangs, $hidedetails, $hidedesc, $hideref);
198 throw new RestException(500,
'Error generating document');
200 } elseif ($modulepart ==
'commande' || $modulepart ==
'order') {
201 require_once DOL_DOCUMENT_ROOT.
'/commande/class/commande.class.php';
203 $result = $this->order->fetch(0, preg_replace(
'/\.[^\.]+$/',
'', basename($original_file)));
205 throw new RestException(404,
'Order not found');
207 $templateused = $doctemplate ? $doctemplate : $this->order->model_pdf;
208 $result = $this->order->generateDocument($templateused, $outputlangs, $hidedetails, $hidedesc, $hideref);
210 throw new RestException(500,
'Error generating document');
212 } elseif ($modulepart ==
'propal' || $modulepart ==
'proposal') {
213 require_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
214 $this->propal =
new Propal($this->
db);
215 $result = $this->propal->fetch(0, preg_replace(
'/\.[^\.]+$/',
'', basename($original_file)));
217 throw new RestException(404,
'Proposal not found');
219 $templateused = $doctemplate ? $doctemplate : $this->propal->model_pdf;
220 $result = $this->propal->generateDocument($templateused, $outputlangs, $hidedetails, $hidedesc, $hideref);
222 throw new RestException(500,
'Error generating document');
225 throw new RestException(403,
'Generation not available for this modulepart');
228 $filename = basename($original_file);
229 $original_file_osencoded =
dol_osencode($original_file);
231 if (!file_exists($original_file_osencoded)) {
232 throw new RestException(404,
'File not found');
235 $file_content = file_get_contents($original_file_osencoded);
236 return array(
'filename'=>$filename,
'content-type' =>
dol_mimetype($filename),
'filesize'=>filesize($original_file),
'content'=>base64_encode($file_content),
'langcode'=>$outputlangs->defaultlang,
'template'=>$templateused,
'encoding'=>
'base64');
260 if (empty($modulepart)) {
261 throw new RestException(400,
'bad value for parameter modulepart');
264 if (empty($id) && empty($ref)) {
265 throw new RestException(400,
'bad value for parameter id or ref');
268 $id = (empty($id) ? 0 : $id);
272 if ($modulepart ==
'societe' || $modulepart ==
'thirdparty') {
273 require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
275 if (!DolibarrApiAccess::$user->rights->societe->lire) {
276 throw new RestException(401);
280 $result = $object->fetch($id, $ref);
282 throw new RestException(404,
'Thirdparty not found');
285 $upload_dir = $conf->societe->multidir_output[$object->entity].
"/".$object->id;
286 } elseif ($modulepart ==
'user') {
287 require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
290 if (!DolibarrApiAccess::$user->rights->user->user->lire && DolibarrApiAccess::$user->id != $id) {
291 throw new RestException(401);
294 $object =
new User($this->
db);
295 $result = $object->fetch($id, $ref);
297 throw new RestException(404,
'User not found');
300 $upload_dir = $conf->user->dir_output.
'/'.
get_exdir(0, 0, 0, 0, $object,
'user').
'/'.$object->id;
301 } elseif ($modulepart ==
'adherent' || $modulepart ==
'member') {
302 require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
304 if (!DolibarrApiAccess::$user->rights->adherent->lire) {
305 throw new RestException(401);
309 $result = $object->fetch($id, $ref);
311 throw new RestException(404,
'Member not found');
314 $upload_dir = $conf->adherent->dir_output.
"/".
get_exdir(0, 0, 0, 1, $object,
'member');
315 } elseif ($modulepart ==
'propal' || $modulepart ==
'proposal') {
316 require_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
318 if (!DolibarrApiAccess::$user->rights->propal->lire) {
319 throw new RestException(401);
323 $result = $object->fetch($id, $ref);
325 throw new RestException(404,
'Proposal not found');
328 $upload_dir = $conf->propal->multidir_output[$object->entity].
"/".
get_exdir(0, 0, 0, 1, $object,
'propal');
329 } elseif ($modulepart ==
'supplier_proposal') {
330 require_once DOL_DOCUMENT_ROOT.
'/supplier_proposal/class/supplier_proposal.class.php';
332 if (!DolibarrApiAccess::$user->rights->supplier_proposal->read) {
333 throw new RestException(401);
337 $result = $object->fetch($id, $ref);
339 throw new RestException(404,
'Supplier proposal not found');
342 $upload_dir = $conf->propal->multidir_output[$object->entity].
"/".
get_exdir(0, 0, 0, 1, $object,
'propal');
343 } elseif ($modulepart ==
'commande' || $modulepart ==
'order') {
344 require_once DOL_DOCUMENT_ROOT.
'/commande/class/commande.class.php';
346 if (!DolibarrApiAccess::$user->rights->commande->lire) {
347 throw new RestException(401);
351 $result = $object->fetch($id, $ref);
353 throw new RestException(404,
'Order not found');
356 $upload_dir = $conf->commande->dir_output.
"/".
get_exdir(0, 0, 0, 1, $object,
'commande');
357 } elseif ($modulepart ==
'commande_fournisseur' || $modulepart ==
'supplier_order') {
358 $modulepart =
'supplier_order';
360 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.class.php';
362 if (empty(DolibarrApiAccess::$user->rights->fournisseur->commande->lire) && empty(DolibarrApiAccess::$user->rights->supplier_order->lire)) {
363 throw new RestException(401);
367 $result = $object->fetch($id, $ref);
369 throw new RestException(404,
'Purchase order not found');
372 $upload_dir = $conf->fournisseur->dir_output.
"/facture/".
get_exdir($object->id, 2, 0, 0, $object,
'invoice_supplier').dol_sanitizeFileName($object->ref);
373 } elseif ($modulepart ==
'shipment' || $modulepart ==
'expedition') {
374 require_once DOL_DOCUMENT_ROOT.
'/expedition/class/expedition.class.php';
376 if (!DolibarrApiAccess::$user->rights->expedition->lire) {
377 throw new RestException(401);
381 $result = $object->fetch($id, $ref);
383 throw new RestException(404,
'Shipment not found');
386 $upload_dir = $conf->expedition->dir_output.
"/sending/".
get_exdir(0, 0, 0, 1, $object,
'shipment');
387 } elseif ($modulepart ==
'facture' || $modulepart ==
'invoice') {
388 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
390 if (!DolibarrApiAccess::$user->rights->facture->lire) {
391 throw new RestException(401);
395 $result = $object->fetch($id, $ref);
397 throw new RestException(404,
'Invoice not found');
400 $upload_dir = $conf->facture->dir_output.
"/".
get_exdir(0, 0, 0, 1, $object,
'invoice');
401 } elseif ($modulepart ==
'facture_fournisseur' || $modulepart ==
'supplier_invoice') {
402 $modulepart =
'supplier_invoice';
404 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
406 if (empty(DolibarrApiAccess::$user->rights->fournisseur->facture->lire) && empty(DolibarrApiAccess::$user->rights->supplier_invoice->lire)) {
407 throw new RestException(401);
411 $result = $object->fetch($id, $ref);
413 throw new RestException(404,
'Invoice not found');
416 $upload_dir = $conf->fournisseur->dir_output.
"/facture/".
get_exdir($object->id, 2, 0, 0, $object,
'invoice_supplier').dol_sanitizeFileName($object->ref);
417 } elseif ($modulepart ==
'produit' || $modulepart ==
'product') {
418 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
420 if (!DolibarrApiAccess::$user->rights->produit->lire) {
421 throw new RestException(401);
425 $result = $object->fetch($id, $ref);
427 throw new RestException(404,
'Product not found');
428 } elseif ($result < 0) {
429 throw new RestException(500,
'Error while fetching object: '.$object->error);
432 $upload_dir = $conf->product->multidir_output[$object->entity].
'/'.
get_exdir(0, 0, 0, 1, $object,
'product');
433 } elseif ($modulepart ==
'agenda' || $modulepart ==
'action' || $modulepart ==
'event') {
434 require_once DOL_DOCUMENT_ROOT.
'/comm/action/class/actioncomm.class.php';
436 if (!DolibarrApiAccess::$user->rights->agenda->myactions->read && !DolibarrApiAccess::$user->rights->agenda->allactions->read) {
437 throw new RestException(401);
441 $result = $object->fetch($id, $ref);
443 throw new RestException(404,
'Event not found');
447 } elseif ($modulepart ==
'expensereport') {
448 require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport.class.php';
450 if (!DolibarrApiAccess::$user->rights->expensereport->read && !DolibarrApiAccess::$user->rights->expensereport->read) {
451 throw new RestException(401);
455 $result = $object->fetch($id, $ref);
457 throw new RestException(404,
'Expense report not found');
461 } elseif ($modulepart ==
'knowledgemanagement') {
462 require_once DOL_DOCUMENT_ROOT.
'/knowledgemanagement/class/knowledgerecord.class.php';
464 if (!DolibarrApiAccess::$user->rights->knowledgemanagement->knowledgerecord->read && !DolibarrApiAccess::$user->rights->knowledgemanagement->knowledgerecord->read) {
465 throw new RestException(401);
469 $result = $object->fetch($id, $ref);
471 throw new RestException(404,
'KM article not found');
474 $upload_dir = $conf->knowledgemanagement->dir_output.
'/knowledgerecord/'.
dol_sanitizeFileName($object->ref);
475 } elseif ($modulepart ==
'categorie' || $modulepart ==
'category') {
476 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
478 if (!DolibarrApiAccess::$user->rights->categorie->lire) {
479 throw new RestException(401);
483 $result = $object->fetch($id, $ref);
485 throw new RestException(404,
'Category not found');
488 $upload_dir = $conf->categorie->multidir_output[$object->entity].
'/'.
get_exdir($object->id, 2, 0, 0, $object,
'category').$object->id.
"/photos/".
dol_sanitizeFileName($object->ref);
489 } elseif ($modulepart ==
'ecm') {
490 throw new RestException(500,
'Modulepart Ecm not implemented yet.');
506 throw new RestException(500,
'Modulepart '.$modulepart.
' not implemented yet.');
509 $filearray =
dol_dir_list($upload_dir, $type, $recursive,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ?SORT_DESC:SORT_ASC), 1);
510 if (empty($filearray)) {
511 throw new RestException(404,
'Search for modulepart '.$modulepart.
' with Id '.$object->id.(!empty($object->ref) ?
' or Ref '.$object->ref :
'').
' does not return any document.');
513 if (($object->id) > 0 && !empty($modulepart)) {
514 require_once DOL_DOCUMENT_ROOT.
'/ecm/class/ecmfiles.class.php';
516 $result = $ecmfile->fetchAll(
'',
'', 0, 0, array(
't.src_object_type' => $modulepart,
't.src_object_id' => $object->id));
518 throw new RestException(503,
'Error when retrieve ecm list : '.$this->
db->lasterror());
519 } elseif (is_array($ecmfile->lines) && count($ecmfile->lines) > 0) {
520 $filearray[
'ecmfiles_infos'] = $ecmfile->lines;
567 public function post($filename, $modulepart, $ref =
'', $subdir =
'', $filecontent =
'', $fileencoding =
'', $overwriteifexists = 0, $createdirifnotexists = 1)
575 if (empty($modulepart)) {
576 throw new RestException(400,
'Modulepart not provided.');
579 if (!DolibarrApiAccess::$user->rights->ecm->upload) {
580 throw new RestException(401);
583 $newfilecontent =
'';
584 if (empty($fileencoding)) {
585 $newfilecontent = $filecontent;
587 if ($fileencoding ==
'base64') {
588 $newfilecontent = base64_decode($filecontent);
595 $entity = DolibarrApiAccess::$user->entity;
596 if (empty($entity)) {
603 if ($modulepart ==
'facture' || $modulepart ==
'invoice') {
604 $modulepart =
'facture';
606 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
608 } elseif ($modulepart ==
'facture_fournisseur' || $modulepart ==
'supplier_invoice') {
609 $modulepart =
'supplier_invoice';
611 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
613 } elseif ($modulepart ==
'commande' || $modulepart ==
'order') {
614 $modulepart =
'commande';
616 require_once DOL_DOCUMENT_ROOT.
'/commande/class/commande.class.php';
618 } elseif ($modulepart ==
'commande_fournisseur' || $modulepart ==
'supplier_order') {
619 $modulepart =
'supplier_order';
621 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.class.php';
623 } elseif ($modulepart ==
'project') {
624 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
626 } elseif ($modulepart ==
'task' || $modulepart ==
'project_task') {
627 $modulepart =
'project_task';
629 require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
630 $object =
new Task($this->
db);
632 $task_result = $object->fetch(
'', $ref);
635 if ($task_result > 0) {
636 $project_result = $object->fetch_projet();
638 if ($project_result >= 0) {
642 throw new RestException(500,
'Error while fetching Task '.$ref);
644 } elseif ($modulepart ==
'product' || $modulepart ==
'produit' || $modulepart ==
'service' || $modulepart ==
'produit|service') {
645 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
647 } elseif ($modulepart ==
'expensereport') {
648 require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport.class.php';
650 } elseif ($modulepart ==
'fichinter') {
651 require_once DOL_DOCUMENT_ROOT.
'/fichinter/class/fichinter.class.php';
653 } elseif ($modulepart ==
'adherent' || $modulepart ==
'member') {
654 $modulepart =
'adherent';
655 require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
657 } elseif ($modulepart ==
'proposal' || $modulepart ==
'propal' || $modulepart ==
'propale') {
658 $modulepart =
'propale';
659 require_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
663 throw new RestException(500,
'Modulepart '.$modulepart.
' not implemented yet.');
666 if (is_object($object)) {
667 $result = $object->fetch(
'', $ref);
670 throw new RestException(404,
"Object with ref '".$ref.
"' was not found.");
671 } elseif ($result < 0) {
672 throw new RestException(500,
'Error while fetching object: '.$object->error);
676 if (!($object->id > 0)) {
677 throw new RestException(404,
'The object '.$modulepart.
" with ref '".$ref.
"' was not found.");
682 if ($modulepart ==
'supplier_invoice') {
683 $tmpreldir =
get_exdir($object->id, 2, 0, 0, $object,
'invoice_supplier');
686 $relativefile = $tmpreldir.dol_sanitizeFileName($object->ref);
689 $upload_dir = $tmp[
'original_file'];
691 if (empty($upload_dir) || $upload_dir ==
'/') {
692 throw new RestException(500,
'This value of modulepart ('.$modulepart.
') does not support yet usage of ref. Check modulepart parameter or try to use subdir parameter instead of ref.');
695 if ($modulepart ==
'invoice') {
696 $modulepart =
'facture';
698 if ($modulepart ==
'member') {
699 $modulepart =
'adherent';
702 $relativefile = $subdir;
704 $upload_dir = $tmp[
'original_file'];
706 if (empty($upload_dir) || $upload_dir ==
'/') {
707 if (!empty($tmp[
'error'])) {
708 throw new RestException(401,
'Error returned by dol_check_secure_access_document: '.$tmp[
'error']);
710 throw new RestException(500,
'This value of modulepart ('.$modulepart.
') is not allowed with this value of subdir ('.$relativefile.
')');
718 if (!empty($createdirifnotexists)) {
720 throw new RestException(500,
'Error while trying to create directory '.$upload_dir);
724 $destfile = $upload_dir.
'/'.$original_file;
725 $destfiletmp = DOL_DATA_ROOT.
'/admin/temp/'.$original_file;
730 throw new RestException(401,
'Directory not exists : '.dirname($destfile));
733 if (!$overwriteifexists &&
dol_is_file($destfile)) {
734 throw new RestException(500,
"File with name '".$original_file.
"' already exists.");
737 $fhandle = @fopen($destfiletmp,
'w');
739 $nbofbyteswrote = fwrite($fhandle, $newfilecontent);
741 @chmod($destfiletmp, octdec($conf->global->MAIN_UMASK));
743 throw new RestException(500,
"Failed to open file '".$destfiletmp.
"' for write");
746 $result =
dol_move($destfiletmp, $destfile, 0, $overwriteifexists, 1);
748 throw new RestException(500,
"Failed to move file into '".$destfile.
"'");
767 public function delete($modulepart, $original_file)
769 global $conf, $langs;
771 if (empty($modulepart)) {
772 throw new RestException(400,
'bad value for parameter modulepart');
774 if (empty($original_file)) {
775 throw new RestException(400,
'bad value for parameter original_file');
779 $entity = $conf->entity;
790 $relativefile = $original_file;
793 $accessallowed = $check_access[
'accessallowed'];
794 $sqlprotectagainstexternals = $check_access[
'sqlprotectagainstexternals'];
795 $original_file = $check_access[
'original_file'];
797 if (preg_match(
'/\.\./', $original_file) || preg_match(
'/[<>|]/', $original_file)) {
798 throw new RestException(401);
800 if (!$accessallowed) {
801 throw new RestException(401);
804 $filename = basename($original_file);
805 $original_file_osencoded =
dol_osencode($original_file);
807 if (!file_exists($original_file_osencoded)) {
808 dol_syslog(
"Try to download not found file ".$original_file_osencoded, LOG_WARNING);
809 throw new RestException(404,
'File not found');
812 if (@unlink($original_file_osencoded)) {
816 'message' =>
'Document deleted'
821 throw new RestException(401);
836 foreach (Documents::$DOCUMENT_FIELDS as $field) {
837 if (!isset($data[$field])) {
838 throw new RestException(400,
"$field field missing");
840 $result[$field] = $data[$field];
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
index($modulepart, $original_file= '')
Download a document.
dol_sanitizePathName($str, $newstr= '_', $unaccent=1)
Clean a string to use it as a path name.
_validate_file($data)
Validate fields before create or update object.
Class for KnowledgeRecord.
dol_mkdir($dir, $dataroot= '', $newmask= '')
Creation of a directory (this can create recursive subdir)
Class to manage agenda events (actions)
$conf db
API class for accounts.
API class for receive files.
Class to manage products or services.
Class to manage interventions.
Class to manage Dolibarr users.
post($filename, $modulepart, $ref= '', $subdir= '', $filecontent= '', $fileencoding= '', $overwriteifexists=0, $createdirifnotexists=1)
Return a document.
dol_is_dir($folder)
Test if filename is a directory.
Class to manage suppliers invoices.
builddoc($modulepart, $original_file= '', $doctemplate= '', $langcode= '')
Build a document.
dol_move($srcfile, $destfile, $newmask=0, $overwriteifexists=1, $testvirus=0, $indexdatabase=1)
Move a file into another name.
getDocumentsListByElement($modulepart, $id=0, $ref= '', $sortfield= '', $sortorder= '')
Return the list of documents of a dedicated element (from its ID or Ref)
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage categories.
dol_check_secure_access_document($modulepart, $original_file, $entity, $fuser= '', $refname= '', $mode= 'read')
Security check when accessing to a document (used by document.php, viewimage.php and webservices to g...
Class to manage projects.
dol_mimetype($file, $default= 'application/octet-stream', $mode=0)
Return MIME type of a file from its name with extension.
Class to manage shipments.
Class to manage customers orders.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart= '')
Return a path to have a the directory according to object where files are stored. ...
Class to manage members of a foundation.
dol_basename($pathfile)
Make a basename working with all page code (default PHP basenamed fails with cyrillic).
Class to manage translations.
dol_sanitizeFileName($str, $newstr= '_', $unaccent=1)
Clean a string to use it as a file name.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Class to manage Trips and Expenses.
Class to manage predefined suppliers products.
dol_is_file($pathoffile)
Return if path is a file.
__construct()
Constructor.
Class to manage invoices.
Class to manage ECM files.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
Class to manage proposals.