dolibarr  16.0.5
document.php
Go to the documentation of this file.
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 
25 require '../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.'/core/lib/asset.lib.php';
27 require_once DOL_DOCUMENT_ROOT.'/asset/class/asset.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
32 
33 // Load translation files required by the page
34 $langs->loadLangs(array('assets', 'companies', 'other', 'mails'));
35 
36 
37 $action = GETPOST('action', 'aZ09');
38 $confirm = GETPOST('confirm', 'alpha');
39 $id = GETPOST('id', 'int');
40 $ref = GETPOST('ref', 'alpha');
41 
42 // Get parameters
43 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
44 $sortfield = GETPOST("sortfield", 'alpha');
45 $sortorder = GETPOST("sortorder", 'alpha');
46 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
47 if (empty($page) || $page == -1) {
48  $page = 0;
49 } // If $page is not defined, or '' or -1
50 $offset = $limit * $page;
51 $pageprev = $page - 1;
52 $pagenext = $page + 1;
53 if (!$sortorder) {
54  $sortorder = "ASC";
55 }
56 if (!$sortfield) {
57  $sortfield = "name";
58 }
59 
60 // Initialize technical objects
61 $object = new Asset($db);
62 $extrafields = new ExtraFields($db);
63 $diroutputmassaction = $conf->asset->dir_output.'/temp/massgeneration/'.$user->id;
64 $hookmanager->initHooks(array('assetdocument', 'globalcard')); // Note that conf->hooks_modules contains array
65 // Fetch optionals attributes and labels
66 $extrafields->fetch_name_optionals_label($object->table_element);
67 
68 // Load object
69 include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
70 
71 if ($id > 0 || !empty($ref)) {
72  $upload_dir = $conf->asset->multidir_output[$object->entity ? $object->entity : $conf->entity]."/".get_exdir(0, 0, 0, 1, $object);
73 }
74 
75 $permissiontoadd = $user->rights->asset->write; // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles.inc.php
76 
77 // Security check (enable the most restrictive one)
78 if ($user->socid > 0) accessforbidden();
79 $isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
80 restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
81 if (empty($conf->asset->enabled)) accessforbidden();
82 
83 
84 /*
85  * Actions
86  */
87 
88 include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
89 
90 
91 /*
92  * View
93  */
94 
95 $form = new Form($db);
96 
97 $title = $langs->trans("Asset").' - '.$langs->trans("Files");
98 $help_url = '';
99 llxHeader('', $title, $help_url);
100 
101 if ($object->id) {
102  /*
103  * Show tabs
104  */
105  $head = assetPrepareHead($object);
106 
107  print dol_get_fiche_head($head, 'document', $langs->trans("Asset"), -1, $object->picto);
108 
109 
110  // Build file list
111  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
112  $totalsize = 0;
113  foreach ($filearray as $key => $file) {
114  $totalsize += $file['size'];
115  }
116 
117  // Object card
118  // ------------------------------------------------------------
119  $linkback = '<a href="' . dol_buildpath('/asset/asset_list.php', 1) . '?restore_lastsearch_values=1' . (!empty($socid) ? '&socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
120 
121  $morehtmlref = '<div class="refidno">';
122  $morehtmlref .= '</div>';
123 
124  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
125 
126  print '<div class="fichecenter">';
127 
128  print '<div class="underbanner clearboth"></div>';
129  print '<table class="border centpercent tableforfield">';
130 
131  // Number of files
132  print '<tr><td class="titlefield">' . $langs->trans("NbOfAttachedFiles") . '</td><td colspan="3">' . count($filearray) . '</td></tr>';
133 
134  // Total size
135  print '<tr><td>' . $langs->trans("TotalSizeOfAttachedFiles") . '</td><td colspan="3">' . $totalsize . ' ' . $langs->trans("bytes") . '</td></tr>';
136 
137  print '</table>';
138 
139  print '</div>';
140 
141  print dol_get_fiche_end();
142 
143  $modulepart = 'asset';
144  $permissiontoadd = $user->rights->asset->write;
145  // $permissiontoadd = 1;
146  $permtoedit = $user->rights->asset->write;
147  // $permtoedit = 1;
148  $param = '&id=' . $object->id;
149 
150  //$relativepathwithnofile='asset/' . dol_sanitizeFileName($object->id).'/';
151  $relativepathwithnofile = dol_sanitizeFileName($object->ref) . '/';
152 
153  include DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_post_headers.tpl.php';
154 } else {
155  accessforbidden('', 0, 1);
156 }
157 
158 // End of page
159 llxFooter();
160 $db->close();
Asset
Class for Asset.
Definition: asset.class.php:30
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1226
restrictedArea
restrictedArea($user, $features, $objectid=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
Definition: security.lib.php:234
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_buildpath
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
Definition: functions.lib.php:1062
llxFooter
llxFooter()
Footer empty.
Definition: document.php:89
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
dol_dir_list
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.
Definition: files.lib.php:60
dol_banner_tab
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
Definition: functions.lib.php:2046
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:116
llxHeader
if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(isset($_GET["hashp"]) &&!defined("NOLOGIN")) if((isset($_GET["modulepart"]) && $_GET["modulepart"]=='medias')) llxHeader()
Header empty.
Definition: document.php:80
get_exdir
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
Definition: functions.lib.php:6549
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
assetPrepareHead
assetPrepareHead(Asset $object)
Prepare array of tabs for Asset.
Definition: asset.lib.php:74
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933