document.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. /* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2018-2021 Alexandre Spangaro <aspangaro@open-dsi.fr>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. /**
  19. * \file htdocs/asset/document.php
  20. * \ingroup asset
  21. * \brief Page for attached files on assets
  22. */
  23. require '../main.inc.php';
  24. require_once DOL_DOCUMENT_ROOT.'/core/lib/asset.lib.php';
  25. require_once DOL_DOCUMENT_ROOT.'/asset/class/asset.class.php';
  26. require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
  27. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  28. require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
  29. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
  30. // Load translation files required by the page
  31. $langs->loadLangs(array('assets', 'companies', 'other'));
  32. $id = (GETPOST('id', 'int') ?GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
  33. $ref = GETPOST('ref', 'alpha');
  34. $socid = GETPOST('socid', 'int');
  35. $action = GETPOST('action', 'aZ09');
  36. $confirm = GETPOST('confirm', 'alpha');
  37. // Get parameters
  38. $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
  39. $sortfield = GETPOST('sortfield', 'aZ09comma');
  40. $sortorder = GETPOST('sortorder', 'aZ09comma');
  41. $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
  42. if (empty($page) || $page == -1) {
  43. $page = 0;
  44. } // If $page is not defined, or '' or -1
  45. $offset = $limit * $page;
  46. $pageprev = $page - 1;
  47. $pagenext = $page + 1;
  48. if (!$sortorder) {
  49. $sortorder = "ASC";
  50. }
  51. if (!$sortfield) {
  52. $sortfield = "name";
  53. }
  54. $object = new Asset($db);
  55. if ($object->fetch($id)) {
  56. $upload_dir = $conf->asset->dir_output."/".dol_sanitizeFileName($object->ref);
  57. }
  58. $permissiontoadd = $user->rights->asset->write; // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles.inc.php
  59. // Security check
  60. if ($user->socid) {
  61. $socid = $user->socid;
  62. }
  63. $result=restrictedArea($user, 'asset', $id, '');
  64. /*
  65. * Actions
  66. */
  67. include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
  68. /*
  69. * View
  70. */
  71. $title = $langs->trans('Assets')." - ".$langs->trans('Documents');
  72. $help_url = '';
  73. llxHeader('', $title, $help_url);
  74. $form = new Form($db);
  75. if ($id > 0 || !empty($ref)) {
  76. if ($object->fetch($id, $ref) > 0) {
  77. $upload_dir = $conf->asset->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref);
  78. $head = asset_prepare_head($object);
  79. print dol_get_fiche_head($head, 'documents', $langs->trans('Asset'), -1, 'accounting');
  80. // Build file list
  81. $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
  82. $totalsize = 0;
  83. foreach ($filearray as $key => $file) {
  84. $totalsize += $file['size'];
  85. }
  86. // Asset content
  87. $linkback = '<a href="'.DOL_URL_ROOT.'/asset/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
  88. $morehtmlref = '';
  89. dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, '', 0);
  90. print '<div class="fichecenter">';
  91. print '<div class="underbanner clearboth"></div>';
  92. print '<table class="border tableforfield centpercent">';
  93. print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
  94. print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
  95. print "</table>\n";
  96. print "</div>\n";
  97. print dol_get_fiche_end();
  98. $modulepart = 'asset';
  99. $permissiontoadd = $user->rights->asset->write;
  100. $permtoedit = $user->rights->asset->write;
  101. $param = '&id='.$object->id;
  102. include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
  103. } else {
  104. dol_print_error($db);
  105. }
  106. } else {
  107. print $langs->trans("ErrorUnknown");
  108. }
  109. // End of page
  110. llxFooter();
  111. $db->close();