| Total Complexity | 528 |
| Total Lines | 2212 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like FormFile often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use FormFile, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 43 | class FormFile |
||
| 44 | { |
||
| 45 | private $db; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @var string Error code (or message) |
||
| 49 | */ |
||
| 50 | public $error; |
||
| 51 | |||
| 52 | public $numoffiles; |
||
| 53 | public $infofiles; // Used to return information by function getDocumentsLink |
||
| 54 | |||
| 55 | |||
| 56 | /** |
||
| 57 | * Constructor |
||
| 58 | * |
||
| 59 | * @param DoliDB $db Database handler |
||
| 60 | */ |
||
| 61 | public function __construct($db) |
||
| 62 | { |
||
| 63 | $this->db = $db; |
||
| 64 | $this->numoffiles = 0; |
||
| 65 | } |
||
| 66 | |||
| 67 | |||
| 68 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 69 | /** |
||
| 70 | * Show form to upload a new file. |
||
| 71 | * |
||
| 72 | * @param string $url Url |
||
| 73 | * @param string $title Title zone (Title or '' or 'none') |
||
| 74 | * @param int $addcancel 1=Add 'Cancel' button |
||
| 75 | * @param int $sectionid If upload must be done inside a particular ECM section (is sectionid defined, sectiondir must not be) |
||
| 76 | * @param int $perm Value of permission to allow upload |
||
| 77 | * @param int $size Length of input file area. Deprecated. |
||
| 78 | * @param Object $object Object to use (when attachment is done on an element) |
||
| 79 | * @param string $options Add an option column |
||
| 80 | * @param integer $useajax Use fileupload ajax (0=never, 1=if enabled, 2=always whatever is option). |
||
| 81 | * Deprecated 2 should never be used and if 1 is used, option should not be enabled. |
||
| 82 | * @param string $savingdocmask Mask to use to define output filename. For example 'XXXXX-__YYYYMMDD__-__file__' |
||
| 83 | * @param integer $linkfiles 1=Also add form to link files, 0=Do not show form to link files |
||
| 84 | * @param string $htmlname Name and id of HTML form ('formuserfile' by default, 'formuserfileecm' when used to upload a file in ECM) |
||
| 85 | * @param string $accept Specifies the types of files accepted (This is not a security check but an user interface facility. eg '.pdf,image/*' or '.png,.jpg' or 'video/*') |
||
| 86 | * @param string $sectiondir If upload must be done inside a particular directory (if sectiondir defined, sectionid must not be) |
||
| 87 | * @param int $usewithoutform 0=Default, 1=Disable <form> and <input hidden> to use in existing form area, 2=Disable the tag <form> only |
||
| 88 | * @param int $capture 1=Add tag capture="capture" to force use of micro or video recording to generate file. When setting this to 1, you must also provide a value for $accept. |
||
| 89 | * @param int $disablemulti 0=Default, 1=Disable multiple file upload |
||
| 90 | * @param int $nooutput 0=Output result with print, 1=Return result |
||
| 91 | * @return int|string Return integer <0 if KO, >0 if OK, or string if $noouput=1 |
||
| 92 | */ |
||
| 93 | public function form_attach_new_file($url, $title = '', $addcancel = 0, $sectionid = 0, $perm = 1, $size = 50, $object = null, $options = '', $useajax = 1, $savingdocmask = '', $linkfiles = 1, $htmlname = 'formuserfile', $accept = '', $sectiondir = '', $usewithoutform = 0, $capture = 0, $disablemulti = 0, $nooutput = 0) |
||
| 94 | { |
||
| 95 | // phpcs:enable |
||
| 96 | global $conf, $langs, $hookmanager; |
||
| 97 | $hookmanager->initHooks(array('formfile')); |
||
| 98 | |||
| 99 | // Deprecation warning |
||
| 100 | if ($useajax == 2) { |
||
| 101 | dol_syslog(__METHOD__ . ": using 2 for useajax is deprecated and should be not used", LOG_WARNING); |
||
| 102 | } |
||
| 103 | |||
| 104 | if (!empty($conf->browser->layout) && $conf->browser->layout != 'classic') { |
||
| 105 | $useajax = 0; |
||
| 106 | } |
||
| 107 | |||
| 108 | if ((getDolGlobalString('MAIN_USE_JQUERY_FILEUPLOAD') && $useajax) || ($useajax == 2)) { |
||
| 109 | // TODO: Check this works with 2 forms on same page |
||
| 110 | // TODO: Check this works with GED module, otherwise, force useajax to 0 |
||
| 111 | // TODO: This does not support option savingdocmask |
||
| 112 | // TODO: This break feature to upload links too |
||
| 113 | // TODO: Thisdoes not work when param nooutput=1 |
||
| 114 | //return $this->_formAjaxFileUpload($object); |
||
| 115 | return 'Feature too bugged so removed'; |
||
| 116 | } else { |
||
| 117 | //If there is no permission and the option to hide unauthorized actions is enabled, then nothing is printed |
||
| 118 | if (!$perm && getDolGlobalString('MAIN_BUTTON_HIDE_UNAUTHORIZED')) { |
||
| 119 | if ($nooutput) { |
||
| 120 | return ''; |
||
| 121 | } else { |
||
| 122 | return 1; |
||
| 123 | } |
||
| 124 | } |
||
| 125 | |||
| 126 | $out = "\n\n" . '<!-- Start form attach new file --><div class="formattachnewfile">' . "\n"; |
||
| 127 | |||
| 128 | if (empty($title)) { |
||
| 129 | $title = $langs->trans("AttachANewFile"); |
||
| 130 | } |
||
| 131 | if ($title != 'none') { |
||
| 132 | $out .= load_fiche_titre($title, null, null); |
||
| 133 | } |
||
| 134 | |||
| 135 | if (empty($usewithoutform)) { // Try to avoid this and set instead the form by the caller. |
||
| 136 | // Add a param as GET parameter to detect when POST were cleaned by PHP because a file larger than post_max_size |
||
| 137 | $url .= (strpos($url, '?') === false ? '?' : '&') . 'uploadform=1'; |
||
| 138 | |||
| 139 | $out .= '<form name="' . $htmlname . '" id="' . $htmlname . '" action="' . $url . '" enctype="multipart/form-data" method="POST">' . "\n"; |
||
| 140 | } |
||
| 141 | if (empty($usewithoutform) || $usewithoutform == 2) { |
||
| 142 | $out .= '<input type="hidden" name="token" value="' . newToken() . '">' . "\n"; |
||
| 143 | $out .= '<input type="hidden" id="' . $htmlname . '_section_dir" name="section_dir" value="' . $sectiondir . '">' . "\n"; |
||
| 144 | $out .= '<input type="hidden" id="' . $htmlname . '_section_id" name="section_id" value="' . $sectionid . '">' . "\n"; |
||
| 145 | $out .= '<input type="hidden" name="sortfield" value="' . GETPOST('sortfield', 'aZ09comma') . '">' . "\n"; |
||
| 146 | $out .= '<input type="hidden" name="sortorder" value="' . GETPOST('sortorder', 'aZ09comma') . '">' . "\n"; |
||
| 147 | $out .= '<input type="hidden" name="page_y" value="">' . "\n"; |
||
| 148 | } |
||
| 149 | |||
| 150 | $out .= '<table class="nobordernopadding centpercent">'; |
||
| 151 | $out .= '<tr>'; |
||
| 152 | |||
| 153 | if (!empty($options)) { |
||
| 154 | $out .= '<td>' . $options . '</td>'; |
||
| 155 | } |
||
| 156 | |||
| 157 | $out .= '<td class="valignmiddle nowrap">'; |
||
| 158 | |||
| 159 | $maxfilesizearray = getMaxFileSizeArray(); |
||
| 160 | $max = $maxfilesizearray['max']; |
||
| 161 | $maxmin = $maxfilesizearray['maxmin']; |
||
| 162 | $maxphptoshow = $maxfilesizearray['maxphptoshow']; |
||
| 163 | $maxphptoshowparam = $maxfilesizearray['maxphptoshowparam']; |
||
| 164 | if ($maxmin > 0) { |
||
| 165 | $out .= '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">'; // MAX_FILE_SIZE must precede the field type=file |
||
| 166 | } |
||
| 167 | $out .= '<input class="flat minwidth400 maxwidth200onsmartphone" type="file"'; |
||
| 168 | $out .= ((getDolGlobalString('MAIN_DISABLE_MULTIPLE_FILEUPLOAD') || $disablemulti) ? ' name="userfile"' : ' name="userfile[]" multiple'); |
||
| 169 | $out .= (!getDolGlobalString('MAIN_UPLOAD_DOC') || empty($perm) ? ' disabled' : ''); |
||
| 170 | $out .= (!empty($accept) ? ' accept="' . $accept . '"' : ' accept=""'); |
||
| 171 | $out .= (!empty($capture) ? ' capture="capture"' : ''); |
||
| 172 | $out .= '>'; |
||
| 173 | $out .= ' '; |
||
| 174 | if ($sectionid) { // Show overwrite if exists for ECM module only |
||
| 175 | $langs->load('link'); |
||
| 176 | $out .= '<span class="nowraponsmartphone"><input style="margin-right: 2px;" type="checkbox" id="overwritefile" name="overwritefile" value="1"><label for="overwritefile">' . $langs->trans("OverwriteIfExists") . '</label></span>'; |
||
| 177 | } |
||
| 178 | $out .= '<input type="submit" class="button small reposition" name="sendit" value="' . $langs->trans("Upload") . '"'; |
||
| 179 | $out .= (!getDolGlobalString('MAIN_UPLOAD_DOC') || empty($perm) ? ' disabled' : ''); |
||
| 180 | $out .= '>'; |
||
| 181 | |||
| 182 | if ($addcancel) { |
||
| 183 | $out .= ' '; |
||
| 184 | $out .= '<input type="submit" class="button small button-cancel" name="cancel" value="' . $langs->trans("Cancel") . '">'; |
||
| 185 | } |
||
| 186 | |||
| 187 | if (getDolGlobalString('MAIN_UPLOAD_DOC')) { |
||
| 188 | if ($perm) { |
||
| 189 | $menudolibarrsetupmax = $langs->transnoentitiesnoconv("Home") . ' - ' . $langs->transnoentitiesnoconv("Setup") . ' - ' . $langs->transnoentitiesnoconv("Security"); |
||
| 190 | $langs->load('other'); |
||
| 191 | $out .= ' '; |
||
| 192 | $out .= info_admin($langs->trans("ThisLimitIsDefinedInSetupAt", $menudolibarrsetupmax, $max, $maxphptoshowparam, $maxphptoshow), 1); |
||
| 193 | } |
||
| 194 | } else { |
||
| 195 | $out .= ' (' . $langs->trans("UploadDisabled") . ')'; |
||
| 196 | } |
||
| 197 | $out .= "</td></tr>"; |
||
| 198 | |||
| 199 | if ($savingdocmask) { |
||
| 200 | //add a global variable for disable the auto renaming on upload |
||
| 201 | $rename = (!getDolGlobalString('MAIN_DOC_UPLOAD_NOT_RENAME_BY_DEFAULT') ? 'checked' : ''); |
||
| 202 | |||
| 203 | $out .= '<tr>'; |
||
| 204 | if (!empty($options)) { |
||
| 205 | $out .= '<td>' . $options . '</td>'; |
||
| 206 | } |
||
| 207 | $out .= '<td valign="middle" class="nowrap">'; |
||
| 208 | $out .= '<input type="checkbox" ' . $rename . ' class="savingdocmask" name="savingdocmask" id="savingdocmask" value="' . dol_escape_js($savingdocmask) . '"> '; |
||
| 209 | $out .= '<label class="opacitymedium small" for="savingdocmask">'; |
||
| 210 | $out .= $langs->trans("SaveUploadedFileWithMask", preg_replace('/__file__/', $langs->transnoentitiesnoconv("OriginFileName"), $savingdocmask), $langs->transnoentitiesnoconv("OriginFileName")); |
||
| 211 | $out .= '</label>'; |
||
| 212 | $out .= '</td>'; |
||
| 213 | $out .= '</tr>'; |
||
| 214 | } |
||
| 215 | |||
| 216 | $out .= "</table>"; |
||
| 217 | |||
| 218 | if (empty($usewithoutform)) { |
||
| 219 | $out .= '</form>'; |
||
| 220 | if (empty($sectionid)) { |
||
| 221 | $out .= '<br>'; |
||
| 222 | } |
||
| 223 | } |
||
| 224 | |||
| 225 | $out .= "\n</div><!-- End form attach new file -->\n"; |
||
| 226 | |||
| 227 | if ($linkfiles) { |
||
| 228 | $out .= "\n" . '<!-- Start form link new url --><div class="formlinknewurl">' . "\n"; |
||
| 229 | $langs->load('link'); |
||
| 230 | $title = $langs->trans("LinkANewFile"); |
||
| 231 | $out .= load_fiche_titre($title, null, null); |
||
| 232 | |||
| 233 | if (empty($usewithoutform)) { |
||
| 234 | $out .= '<form name="' . $htmlname . '_link" id="' . $htmlname . '_link" action="' . $url . '" method="POST">' . "\n"; |
||
| 235 | $out .= '<input type="hidden" name="token" value="' . newToken() . '">' . "\n"; |
||
| 236 | $out .= '<input type="hidden" id="' . $htmlname . '_link_section_dir" name="link_section_dir" value="">' . "\n"; |
||
| 237 | $out .= '<input type="hidden" id="' . $htmlname . '_link_section_id" name="link_section_id" value="' . $sectionid . '">' . "\n"; |
||
| 238 | $out .= '<input type="hidden" name="page_y" value="">' . "\n"; |
||
| 239 | } |
||
| 240 | |||
| 241 | $out .= '<div class="valignmiddle">'; |
||
| 242 | $out .= '<div class="inline-block" style="padding-right: 10px;">'; |
||
| 243 | if (getDolGlobalString('OPTIMIZEFORTEXTBROWSER')) { |
||
| 244 | $out .= '<label for="link">' . $langs->trans("URLToLink") . ':</label> '; |
||
| 245 | } |
||
| 246 | $out .= '<input type="text" name="link" class="flat minwidth400imp" id="link" placeholder="' . dol_escape_htmltag($langs->trans("URLToLink")) . '">'; |
||
| 247 | $out .= '</div>'; |
||
| 248 | $out .= '<div class="inline-block" style="padding-right: 10px;">'; |
||
| 249 | if (getDolGlobalString('OPTIMIZEFORTEXTBROWSER')) { |
||
| 250 | $out .= '<label for="label">' . $langs->trans("Label") . ':</label> '; |
||
| 251 | } |
||
| 252 | $out .= '<input type="text" class="flat" name="label" id="label" placeholder="' . dol_escape_htmltag($langs->trans("Label")) . '">'; |
||
| 253 | $out .= '<input type="hidden" name="objecttype" value="' . $object->element . '">'; |
||
| 254 | $out .= '<input type="hidden" name="objectid" value="' . $object->id . '">'; |
||
| 255 | $out .= '</div>'; |
||
| 256 | $out .= '<div class="inline-block" style="padding-right: 10px;">'; |
||
| 257 | $out .= '<input type="submit" class="button small reposition" name="linkit" value="' . $langs->trans("ToLink") . '"'; |
||
| 258 | $out .= (!getDolGlobalString('MAIN_UPLOAD_DOC') || empty($perm) ? ' disabled' : ''); |
||
| 259 | $out .= '>'; |
||
| 260 | $out .= '</div>'; |
||
| 261 | $out .= '</div>'; |
||
| 262 | if (empty($usewithoutform)) { |
||
| 263 | $out .= '<div class="clearboth"></div>'; |
||
| 264 | $out .= '</form><br>'; |
||
| 265 | } |
||
| 266 | |||
| 267 | $out .= "\n</div><!-- End form link new url -->\n"; |
||
| 268 | } |
||
| 269 | |||
| 270 | $parameters = array('socid' => (isset($GLOBALS['socid']) ? $GLOBALS['socid'] : ''), 'id' => (isset($GLOBALS['id']) ? $GLOBALS['id'] : ''), 'url' => $url, 'perm' => $perm, 'options' => $options); |
||
| 271 | $res = $hookmanager->executeHooks('formattachOptions', $parameters, $object); |
||
| 272 | if (empty($res)) { |
||
| 273 | $out = '<div class="' . ($usewithoutform ? 'inline-block valignmiddle' : 'attacharea attacharea' . $htmlname) . '">' . $out . '</div>'; |
||
| 274 | } |
||
| 275 | $out .= $hookmanager->resPrint; |
||
| 276 | |||
| 277 | if ($nooutput) { |
||
| 278 | return $out; |
||
| 279 | } else { |
||
| 280 | print $out; |
||
| 281 | return 1; |
||
| 282 | } |
||
| 283 | } |
||
| 284 | } |
||
| 285 | |||
| 286 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 287 | /** |
||
| 288 | * Show the box with list of available documents for object |
||
| 289 | * |
||
| 290 | * @param string $modulepart propal, facture, facture_fourn, ... |
||
| 291 | * @param string $modulesubdir Sub-directory to scan (Example: '0/1/10', 'FA/DD/MM/YY/9999'). Use '' if file is not into subdir of module. |
||
| 292 | * @param string $filedir Directory to scan |
||
| 293 | * @param string $urlsource Url of origin page (for return) |
||
| 294 | * @param int $genallowed Generation is allowed (1/0 or array of formats) |
||
| 295 | * @param int $delallowed Remove is allowed (1/0) |
||
| 296 | * @param string $modelselected Model to preselect by default |
||
| 297 | * @param integer $allowgenifempty Show warning if no model activated |
||
| 298 | * @param integer $forcenomultilang Do not show language option (even if MAIN_MULTILANGS defined) |
||
| 299 | * @param int $iconPDF Show only PDF icon with link (1/0) |
||
| 300 | * @param int $notused Not used |
||
| 301 | * @param integer $noform Do not output html form tags |
||
| 302 | * @param string $param More param on http links |
||
| 303 | * @param string $title Title to show on top of form |
||
| 304 | * @param string $buttonlabel Label on submit button |
||
| 305 | * @param string $codelang Default language code to use on lang combo box if multilang is enabled |
||
| 306 | * @return int Return integer <0 if KO, number of shown files if OK |
||
| 307 | * @deprecated Use print xxx->showdocuments() instead. |
||
| 308 | */ |
||
| 309 | public function show_documents($modulepart, $modulesubdir, $filedir, $urlsource, $genallowed, $delallowed = 0, $modelselected = '', $allowgenifempty = 1, $forcenomultilang = 0, $iconPDF = 0, $notused = 0, $noform = 0, $param = '', $title = '', $buttonlabel = '', $codelang = '') |
||
| 310 | { |
||
| 311 | // phpcs:enable |
||
| 312 | $this->numoffiles = 0; |
||
| 313 | print $this->showdocuments($modulepart, $modulesubdir, $filedir, $urlsource, $genallowed, $delallowed, $modelselected, $allowgenifempty, $forcenomultilang, $iconPDF, $notused, $noform, $param, $title, $buttonlabel, $codelang); |
||
| 314 | return $this->numoffiles; |
||
| 315 | } |
||
| 316 | |||
| 317 | /** |
||
| 318 | * Return a string to show the box with list of available documents for object. |
||
| 319 | * This also set the property $this->numoffiles |
||
| 320 | * |
||
| 321 | * @param string $modulepart Module the files are related to ('propal', 'facture', 'facture_fourn', 'mymodule', 'mymodule:MyObject', 'mymodule_temp', ...) |
||
| 322 | * @param string $modulesubdir Existing (so sanitized) sub-directory to scan (Example: '0/1/10', 'FA/DD/MM/YY/9999'). Use '' if file is not into a subdir of module. |
||
| 323 | * @param string $filedir Directory to scan (must not end with a /). Example: '/mydolibarrdocuments/facture/FAYYMM-1234' |
||
| 324 | * @param string $urlsource Url of origin page (for return) |
||
| 325 | * @param int|string[] $genallowed Generation is allowed (1/0 or array list of templates) |
||
| 326 | * @param int $delallowed Remove is allowed (1/0) |
||
| 327 | * @param string $modelselected Model to preselect by default |
||
| 328 | * @param integer $allowgenifempty Allow generation even if list of template ($genallowed) is empty (show however a warning) |
||
| 329 | * @param integer $forcenomultilang Do not show language option (even if MAIN_MULTILANGS defined) |
||
| 330 | * @param int $iconPDF Deprecated, see getDocumentsLink |
||
| 331 | * @param int $notused Not used |
||
| 332 | * @param integer $noform Do not output html form tags |
||
| 333 | * @param string $param More param on http links |
||
| 334 | * @param string $title Title to show on top of form. Example: '' (Default to "Documents") or 'none' |
||
| 335 | * @param string $buttonlabel Label on submit button |
||
| 336 | * @param string $codelang Default language code to use on lang combo box if multilang is enabled |
||
| 337 | * @param string $morepicto Add more HTML content into cell with picto |
||
| 338 | * @param Object|null $object Object when method is called from an object card. |
||
| 339 | * @param int $hideifempty Hide section of generated files if there is no file |
||
| 340 | * @param string $removeaction (optional) The action to remove a file |
||
| 341 | * @param string $tooltipontemplatecombo Text to show on a tooltip after the combo list of templates |
||
| 342 | * @return string|int Output string with HTML array of documents (might be empty string) |
||
| 343 | */ |
||
| 344 | public function showdocuments($modulepart, $modulesubdir, $filedir, $urlsource, $genallowed, $delallowed = 0, $modelselected = '', $allowgenifempty = 1, $forcenomultilang = 0, $iconPDF = 0, $notused = 0, $noform = 0, $param = '', $title = '', $buttonlabel = '', $codelang = '', $morepicto = '', $object = null, $hideifempty = 0, $removeaction = 'remove_file', $tooltipontemplatecombo = '') |
||
| 345 | { |
||
| 346 | global $dolibarr_main_url_root; |
||
| 347 | |||
| 348 | // Deprecation warning |
||
| 349 | if (!empty($iconPDF)) { |
||
| 350 | dol_syslog(__METHOD__ . ": passing iconPDF parameter is deprecated", LOG_WARNING); |
||
| 351 | } |
||
| 352 | |||
| 353 | global $langs, $conf, $user, $hookmanager; |
||
| 354 | global $form; |
||
| 355 | |||
| 356 | $reshook = 0; |
||
| 357 | if (is_object($hookmanager)) { |
||
| 358 | $parameters = array( |
||
| 359 | 'modulepart' => &$modulepart, |
||
| 360 | 'modulesubdir' => &$modulesubdir, |
||
| 361 | 'filedir' => &$filedir, |
||
| 362 | 'urlsource' => &$urlsource, |
||
| 363 | 'genallowed' => &$genallowed, |
||
| 364 | 'delallowed' => &$delallowed, |
||
| 365 | 'modelselected' => &$modelselected, |
||
| 366 | 'allowgenifempty' => &$allowgenifempty, |
||
| 367 | 'forcenomultilang' => &$forcenomultilang, |
||
| 368 | 'noform' => &$noform, |
||
| 369 | 'param' => &$param, |
||
| 370 | 'title' => &$title, |
||
| 371 | 'buttonlabel' => &$buttonlabel, |
||
| 372 | 'codelang' => &$codelang, |
||
| 373 | 'morepicto' => &$morepicto, |
||
| 374 | 'hideifempty' => &$hideifempty, |
||
| 375 | 'removeaction' => &$removeaction |
||
| 376 | ); |
||
| 377 | $reshook = $hookmanager->executeHooks('showDocuments', $parameters, $object); // Note that parameters may have been updated by hook |
||
| 378 | // May report error |
||
| 379 | if ($reshook < 0) { |
||
| 380 | setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); |
||
| 381 | } |
||
| 382 | } |
||
| 383 | // Remode default action if $reskook > 0 |
||
| 384 | if ($reshook > 0) { |
||
| 385 | return $hookmanager->resPrint; |
||
| 386 | } |
||
| 387 | |||
| 388 | if (!is_object($form)) { |
||
| 389 | $form = new Form($this->db); |
||
| 390 | } |
||
| 391 | |||
| 392 | include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php'; |
||
| 393 | |||
| 394 | // For backward compatibility |
||
| 395 | if (!empty($iconPDF)) { |
||
| 396 | return $this->getDocumentsLink($modulepart, $modulesubdir, $filedir); |
||
| 397 | } |
||
| 398 | |||
| 399 | // Add entity in $param if not already exists |
||
| 400 | if (!preg_match('/entity\=[0-9]+/', $param)) { |
||
| 401 | $param .= ($param ? '&' : '') . 'entity=' . (empty($object->entity) ? $conf->entity : $object->entity); |
||
| 402 | } |
||
| 403 | |||
| 404 | $printer = 0; |
||
| 405 | // The direct print feature is implemented only for such elements |
||
| 406 | if (in_array($modulepart, array('contract', 'facture', 'supplier_proposal', 'propal', 'proposal', 'order', 'commande', 'expedition', 'commande_fournisseur', 'expensereport', 'delivery', 'ticket'))) { |
||
| 407 | $printer = ($user->hasRight('printing', 'read') && !empty($conf->printing->enabled)) ? true : false; |
||
| 408 | } |
||
| 409 | |||
| 410 | $hookmanager->initHooks(array('formfile')); |
||
| 411 | |||
| 412 | // Get list of files |
||
| 413 | $file_list = null; |
||
| 414 | if (!empty($filedir)) { |
||
| 415 | $file_list = dol_dir_list($filedir, 'files', 0, '', '(\.meta|_preview.*.*\.png)$', 'date', SORT_DESC); |
||
| 416 | } |
||
| 417 | if ($hideifempty && empty($file_list)) { |
||
| 418 | return ''; |
||
| 419 | } |
||
| 420 | |||
| 421 | $out = ''; |
||
| 422 | $forname = 'builddoc'; |
||
| 423 | $headershown = 0; |
||
| 424 | $showempty = 0; |
||
| 425 | $i = 0; |
||
| 426 | |||
| 427 | $out .= "\n" . '<!-- Start show_document -->' . "\n"; |
||
| 428 | //print 'filedir='.$filedir; |
||
| 429 | |||
| 430 | if (preg_match('/massfilesarea_/', $modulepart)) { |
||
| 431 | $out .= '<div id="show_files"><br></div>' . "\n"; |
||
| 432 | $title = $langs->trans("MassFilesArea") . ' <a href="" id="togglemassfilesarea" ref="shown">(' . $langs->trans("Hide") . ')</a>'; |
||
| 433 | $title .= '<script nonce="' . getNonce() . '"> |
||
| 434 | jQuery(document).ready(function() { |
||
| 435 | jQuery(\'#togglemassfilesarea\').click(function() { |
||
| 436 | if (jQuery(\'#togglemassfilesarea\').attr(\'ref\') == "shown") |
||
| 437 | { |
||
| 438 | jQuery(\'#' . $modulepart . '_table\').hide(); |
||
| 439 | jQuery(\'#togglemassfilesarea\').attr("ref", "hidden"); |
||
| 440 | jQuery(\'#togglemassfilesarea\').text("(' . dol_escape_js($langs->trans("Show")) . ')"); |
||
| 441 | } |
||
| 442 | else |
||
| 443 | { |
||
| 444 | jQuery(\'#' . $modulepart . '_table\').show(); |
||
| 445 | jQuery(\'#togglemassfilesarea\').attr("ref","shown"); |
||
| 446 | jQuery(\'#togglemassfilesarea\').text("(' . dol_escape_js($langs->trans("Hide")) . ')"); |
||
| 447 | } |
||
| 448 | return false; |
||
| 449 | }); |
||
| 450 | }); |
||
| 451 | </script>'; |
||
| 452 | } |
||
| 453 | |||
| 454 | $titletoshow = $langs->trans("Documents"); |
||
| 455 | if (!empty($title)) { |
||
| 456 | $titletoshow = ($title == 'none' ? '' : $title); |
||
| 457 | } |
||
| 458 | |||
| 459 | $submodulepart = $modulepart; |
||
| 460 | |||
| 461 | // modulepart = 'nameofmodule' or 'nameofmodule:NameOfObject' |
||
| 462 | $tmp = explode(':', $modulepart); |
||
| 463 | if (!empty($tmp[1])) { |
||
| 464 | $modulepart = $tmp[0]; |
||
| 465 | $submodulepart = $tmp[1]; |
||
| 466 | } |
||
| 467 | |||
| 468 | $addcolumforpicto = ($delallowed || $printer || $morepicto); |
||
| 469 | $colspan = (4 + ($addcolumforpicto ? 1 : 0)); |
||
| 470 | $colspanmore = 0; |
||
| 471 | |||
| 472 | // Show table |
||
| 473 | if ($genallowed) { |
||
| 474 | $modellist = array(); |
||
| 475 | |||
| 476 | if ($modulepart == 'company') { |
||
| 477 | $showempty = 1; // can have no template active |
||
| 478 | if (is_array($genallowed)) { |
||
| 479 | $modellist = $genallowed; |
||
| 480 | } else { |
||
| 481 | include_once DOL_DOCUMENT_ROOT . '/core/modules/societe/modules_societe.class.php'; |
||
| 482 | $modellist = ModeleThirdPartyDoc::liste_modeles($this->db); |
||
|
|
|||
| 483 | } |
||
| 484 | } elseif ($modulepart == 'propal') { |
||
| 485 | if (is_array($genallowed)) { |
||
| 486 | $modellist = $genallowed; |
||
| 487 | } else { |
||
| 488 | include_once DOL_DOCUMENT_ROOT . '/core/modules/propale/modules_propale.php'; |
||
| 489 | $modellist = ModelePDFPropales::liste_modeles($this->db); |
||
| 490 | } |
||
| 491 | } elseif ($modulepart == 'supplier_proposal') { |
||
| 492 | if (is_array($genallowed)) { |
||
| 493 | $modellist = $genallowed; |
||
| 494 | } else { |
||
| 495 | include_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_proposal/modules_supplier_proposal.php'; |
||
| 496 | $modellist = ModelePDFSupplierProposal::liste_modeles($this->db); |
||
| 497 | } |
||
| 498 | } elseif ($modulepart == 'commande') { |
||
| 499 | if (is_array($genallowed)) { |
||
| 500 | $modellist = $genallowed; |
||
| 501 | } else { |
||
| 502 | include_once DOL_DOCUMENT_ROOT . '/core/modules/commande/modules_commande.php'; |
||
| 503 | $modellist = ModelePDFCommandes::liste_modeles($this->db); |
||
| 504 | } |
||
| 505 | } elseif ($modulepart == 'expedition') { |
||
| 506 | if (is_array($genallowed)) { |
||
| 507 | $modellist = $genallowed; |
||
| 508 | } else { |
||
| 509 | include_once DOL_DOCUMENT_ROOT . '/core/modules/expedition/modules_expedition.php'; |
||
| 510 | $modellist = ModelePdfExpedition::liste_modeles($this->db); |
||
| 511 | } |
||
| 512 | } elseif ($modulepart == 'reception') { |
||
| 513 | if (is_array($genallowed)) { |
||
| 514 | $modellist = $genallowed; |
||
| 515 | } else { |
||
| 516 | include_once DOL_DOCUMENT_ROOT . '/core/modules/reception/modules_reception.php'; |
||
| 517 | $modellist = ModelePdfReception::liste_modeles($this->db); |
||
| 518 | } |
||
| 519 | } elseif ($modulepart == 'delivery') { |
||
| 520 | if (is_array($genallowed)) { |
||
| 521 | $modellist = $genallowed; |
||
| 522 | } else { |
||
| 523 | include_once DOL_DOCUMENT_ROOT . '/core/modules/delivery/modules_delivery.php'; |
||
| 524 | $modellist = ModelePDFDeliveryOrder::liste_modeles($this->db); |
||
| 525 | } |
||
| 526 | } elseif ($modulepart == 'ficheinter') { |
||
| 527 | if (is_array($genallowed)) { |
||
| 528 | $modellist = $genallowed; |
||
| 529 | } else { |
||
| 530 | include_once DOL_DOCUMENT_ROOT . '/core/modules/fichinter/modules_fichinter.php'; |
||
| 531 | $modellist = ModelePDFFicheinter::liste_modeles($this->db); |
||
| 532 | } |
||
| 533 | } elseif ($modulepart == 'facture') { |
||
| 534 | if (is_array($genallowed)) { |
||
| 535 | $modellist = $genallowed; |
||
| 536 | } else { |
||
| 537 | include_once DOL_DOCUMENT_ROOT . '/core/modules/facture/modules_facture.php'; |
||
| 538 | $modellist = ModelePDFFactures::liste_modeles($this->db); |
||
| 539 | } |
||
| 540 | } elseif ($modulepart == 'contract') { |
||
| 541 | $showempty = 1; // can have no template active |
||
| 542 | if (is_array($genallowed)) { |
||
| 543 | $modellist = $genallowed; |
||
| 544 | } else { |
||
| 545 | include_once DOL_DOCUMENT_ROOT . '/core/modules/contract/modules_contract.php'; |
||
| 546 | $modellist = ModelePDFContract::liste_modeles($this->db); |
||
| 547 | } |
||
| 548 | } elseif ($modulepart == 'project') { |
||
| 549 | if (is_array($genallowed)) { |
||
| 550 | $modellist = $genallowed; |
||
| 551 | } else { |
||
| 552 | include_once DOL_DOCUMENT_ROOT . '/core/modules/project/modules_project.php'; |
||
| 553 | $modellist = ModelePDFProjects::liste_modeles($this->db); |
||
| 554 | } |
||
| 555 | } elseif ($modulepart == 'project_task') { |
||
| 556 | if (is_array($genallowed)) { |
||
| 557 | $modellist = $genallowed; |
||
| 558 | } else { |
||
| 559 | include_once DOL_DOCUMENT_ROOT . '/core/modules/project/task/modules_task.php'; |
||
| 560 | $modellist = ModelePDFTask::liste_modeles($this->db); |
||
| 561 | } |
||
| 562 | } elseif ($modulepart == 'product') { |
||
| 563 | if (is_array($genallowed)) { |
||
| 564 | $modellist = $genallowed; |
||
| 565 | } else { |
||
| 566 | include_once DOL_DOCUMENT_ROOT . '/core/modules/product/modules_product.class.php'; |
||
| 567 | $modellist = ModelePDFProduct::liste_modeles($this->db); |
||
| 568 | } |
||
| 569 | } elseif ($modulepart == 'product_batch') { |
||
| 570 | if (is_array($genallowed)) { |
||
| 571 | $modellist = $genallowed; |
||
| 572 | } else { |
||
| 573 | include_once DOL_DOCUMENT_ROOT . '/core/modules/product_batch/modules_product_batch.class.php'; |
||
| 574 | $modellist = ModelePDFProductBatch::liste_modeles($this->db); |
||
| 575 | } |
||
| 576 | } elseif ($modulepart == 'stock') { |
||
| 577 | if (is_array($genallowed)) { |
||
| 578 | $modellist = $genallowed; |
||
| 579 | } else { |
||
| 580 | include_once DOL_DOCUMENT_ROOT . '/core/modules/stock/modules_stock.php'; |
||
| 581 | $modellist = ModelePDFStock::liste_modeles($this->db); |
||
| 582 | } |
||
| 583 | } elseif ($modulepart == 'hrm') { |
||
| 584 | if (is_array($genallowed)) { |
||
| 585 | $modellist = $genallowed; |
||
| 586 | } else { |
||
| 587 | include_once DOL_DOCUMENT_ROOT . '/core/modules/hrm/modules_evaluation.php'; |
||
| 588 | $modellist = ModelePDFEvaluation::liste_modeles($this->db); |
||
| 589 | } |
||
| 590 | } elseif ($modulepart == 'movement') { |
||
| 591 | if (is_array($genallowed)) { |
||
| 592 | $modellist = $genallowed; |
||
| 593 | } else { |
||
| 594 | include_once DOL_DOCUMENT_ROOT . '/core/modules/stock/modules_movement.php'; |
||
| 595 | $modellist = ModelePDFMovement::liste_modeles($this->db); |
||
| 596 | } |
||
| 597 | } elseif ($modulepart == 'export') { |
||
| 598 | if (is_array($genallowed)) { |
||
| 599 | $modellist = $genallowed; |
||
| 600 | } else { |
||
| 601 | include_once DOL_DOCUMENT_ROOT . '/core/modules/export/modules_export.php'; |
||
| 602 | //$modellist = ModeleExports::liste_modeles($this->db); // liste_modeles() does not exists. We are using listOfAvailableExportFormat() method instead that return a different array format. |
||
| 603 | $modellist = array(); |
||
| 604 | } |
||
| 605 | } elseif ($modulepart == 'commande_fournisseur' || $modulepart == 'supplier_order') { |
||
| 606 | if (is_array($genallowed)) { |
||
| 607 | $modellist = $genallowed; |
||
| 608 | } else { |
||
| 609 | include_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_order/modules_commandefournisseur.php'; |
||
| 610 | $modellist = ModelePDFSuppliersOrders::liste_modeles($this->db); |
||
| 611 | } |
||
| 612 | } elseif ($modulepart == 'facture_fournisseur' || $modulepart == 'supplier_invoice') { |
||
| 613 | $showempty = 1; // can have no template active |
||
| 614 | if (is_array($genallowed)) { |
||
| 615 | $modellist = $genallowed; |
||
| 616 | } else { |
||
| 617 | include_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_invoice/modules_facturefournisseur.php'; |
||
| 618 | $modellist = ModelePDFSuppliersInvoices::liste_modeles($this->db); |
||
| 619 | } |
||
| 620 | } elseif ($modulepart == 'supplier_payment') { |
||
| 621 | if (is_array($genallowed)) { |
||
| 622 | $modellist = $genallowed; |
||
| 623 | } else { |
||
| 624 | include_once DOL_DOCUMENT_ROOT . '/core/modules/supplier_payment/modules_supplier_payment.php'; |
||
| 625 | $modellist = ModelePDFSuppliersPayments::liste_modeles($this->db); |
||
| 626 | } |
||
| 627 | } elseif ($modulepart == 'remisecheque') { |
||
| 628 | if (is_array($genallowed)) { |
||
| 629 | $modellist = $genallowed; |
||
| 630 | } else { |
||
| 631 | include_once DOL_DOCUMENT_ROOT . '/core/modules/cheque/modules_chequereceipts.php'; |
||
| 632 | $modellist = ModeleChequeReceipts::liste_modeles($this->db); |
||
| 633 | } |
||
| 634 | } elseif ($modulepart == 'donation') { |
||
| 635 | if (is_array($genallowed)) { |
||
| 636 | $modellist = $genallowed; |
||
| 637 | } else { |
||
| 638 | include_once DOL_DOCUMENT_ROOT . '/core/modules/dons/modules_don.php'; |
||
| 639 | $modellist = ModeleDon::liste_modeles($this->db); |
||
| 640 | } |
||
| 641 | } elseif ($modulepart == 'member') { |
||
| 642 | if (is_array($genallowed)) { |
||
| 643 | $modellist = $genallowed; |
||
| 644 | } else { |
||
| 645 | include_once DOL_DOCUMENT_ROOT . '/core/modules/member/modules_cards.php'; |
||
| 646 | $modellist = ModelePDFCards::liste_modeles($this->db); |
||
| 647 | } |
||
| 648 | } elseif ($modulepart == 'agenda' || $modulepart == 'actions') { |
||
| 649 | if (is_array($genallowed)) { |
||
| 650 | $modellist = $genallowed; |
||
| 651 | } else { |
||
| 652 | include_once DOL_DOCUMENT_ROOT . '/core/modules/action/modules_action.php'; |
||
| 653 | $modellist = ModeleAction::liste_modeles($this->db); |
||
| 654 | } |
||
| 655 | } elseif ($modulepart == 'expensereport') { |
||
| 656 | if (is_array($genallowed)) { |
||
| 657 | $modellist = $genallowed; |
||
| 658 | } else { |
||
| 659 | include_once DOL_DOCUMENT_ROOT . '/core/modules/expensereport/modules_expensereport.php'; |
||
| 660 | $modellist = ModeleExpenseReport::liste_modeles($this->db); |
||
| 661 | } |
||
| 662 | } elseif ($modulepart == 'unpaid') { |
||
| 663 | $modellist = ''; |
||
| 664 | } elseif ($modulepart == 'user') { |
||
| 665 | if (is_array($genallowed)) { |
||
| 666 | $modellist = $genallowed; |
||
| 667 | } else { |
||
| 668 | include_once DOL_DOCUMENT_ROOT . '/core/modules/user/modules_user.class.php'; |
||
| 669 | $modellist = ModelePDFUser::liste_modeles($this->db); |
||
| 670 | } |
||
| 671 | } elseif ($modulepart == 'usergroup') { |
||
| 672 | if (is_array($genallowed)) { |
||
| 673 | $modellist = $genallowed; |
||
| 674 | } else { |
||
| 675 | include_once DOL_DOCUMENT_ROOT . '/core/modules/usergroup/modules_usergroup.class.php'; |
||
| 676 | $modellist = ModelePDFUserGroup::liste_modeles($this->db); |
||
| 677 | } |
||
| 678 | } else { |
||
| 679 | // For normalized standard modules |
||
| 680 | $file = dol_buildpath('/core/modules/' . $modulepart . '/modules_' . strtolower($submodulepart) . '.php', 0); |
||
| 681 | if (file_exists($file)) { |
||
| 682 | $res = include_once $file; |
||
| 683 | } else { |
||
| 684 | // For normalized external modules. |
||
| 685 | $file = dol_buildpath('/' . $modulepart . '/core/modules/' . $modulepart . '/modules_' . strtolower($submodulepart) . '.php', 0); |
||
| 686 | $res = include_once $file; |
||
| 687 | } |
||
| 688 | |||
| 689 | $class = 'ModelePDF' . ucfirst($submodulepart); |
||
| 690 | |||
| 691 | if (class_exists($class)) { |
||
| 692 | $modellist = call_user_func($class . '::liste_modeles', $this->db); |
||
| 693 | } else { |
||
| 694 | dol_print_error($this->db, "Bad value for modulepart '" . $modulepart . "' in showdocuments (class " . $class . " for Doc generation not found)"); |
||
| 695 | return -1; |
||
| 696 | } |
||
| 697 | } |
||
| 698 | |||
| 699 | // Set headershown to avoid to have table opened a second time later |
||
| 700 | $headershown = 1; |
||
| 701 | |||
| 702 | if (empty($buttonlabel)) { |
||
| 703 | $buttonlabel = $langs->trans('Generate'); |
||
| 704 | } |
||
| 705 | |||
| 706 | if ($conf->browser->layout == 'phone') { |
||
| 707 | $urlsource .= '#' . $forname . '_form'; // So we switch to form after a generation |
||
| 708 | } |
||
| 709 | if (empty($noform)) { |
||
| 710 | $out .= '<form action="' . $urlsource . '" id="' . $forname . '_form" method="post">'; |
||
| 711 | } |
||
| 712 | $out .= '<input type="hidden" name="action" value="builddoc">'; |
||
| 713 | $out .= '<input type="hidden" name="page_y" value="">'; |
||
| 714 | $out .= '<input type="hidden" name="token" value="' . newToken() . '">'; |
||
| 715 | |||
| 716 | $out .= load_fiche_titre($titletoshow, '', ''); |
||
| 717 | $out .= '<div class="div-table-responsive-no-min">'; |
||
| 718 | $out .= '<table class="liste formdoc noborder centpercent">'; |
||
| 719 | |||
| 720 | $out .= '<tr class="liste_titre">'; |
||
| 721 | $addcolumforpicto = ($delallowed || $printer || $morepicto); |
||
| 722 | $colspan = (4 + ($addcolumforpicto ? 1 : 0)); |
||
| 723 | $colspanmore = 0; |
||
| 724 | |||
| 725 | $out .= '<th colspan="' . $colspan . '" class="formdoc liste_titre maxwidthonsmartphone center">'; |
||
| 726 | |||
| 727 | // Model |
||
| 728 | if (!empty($modellist)) { |
||
| 729 | asort($modellist); |
||
| 730 | $out .= '<span class="hideonsmartphone">' . $langs->trans('Model') . ' </span>'; |
||
| 731 | if (is_array($modellist) && count($modellist) == 1) { // If there is only one element |
||
| 732 | $arraykeys = array_keys($modellist); |
||
| 733 | $modelselected = $arraykeys[0]; |
||
| 734 | } |
||
| 735 | $morecss = 'minwidth75 maxwidth200'; |
||
| 736 | if ($conf->browser->layout == 'phone') { |
||
| 737 | $morecss = 'maxwidth100'; |
||
| 738 | } |
||
| 739 | $out .= $form->selectarray('model', $modellist, $modelselected, $showempty, 0, 0, '', 0, 0, 0, '', $morecss, 1, '', 0, 0); |
||
| 740 | // script for select the separator |
||
| 741 | /* TODO This must appear on export feature only |
||
| 742 | $out .= '<label class="forhide" for="delimiter">Delimiter:</label>'; |
||
| 743 | $out .= '<input type="radio" class="testinput forhide" name="delimiter" value="," id="comma" checked><label class="forhide" for="comma">,</label>'; |
||
| 744 | $out .= '<input type="radio" class="testinput forhide" name="delimiter" value=";" id="semicolon"><label class="forhide" for="semicolon">;</label>'; |
||
| 745 | |||
| 746 | $out .= '<script> |
||
| 747 | jQuery(document).ready(function() { |
||
| 748 | $(".selectformat").on("change", function() { |
||
| 749 | var separator; |
||
| 750 | var selected = $(this).val(); |
||
| 751 | if (selected == "excel2007" || selected == "tsv") { |
||
| 752 | $("input.testinput").prop("disabled", true); |
||
| 753 | $(".forhide").hide(); |
||
| 754 | } else { |
||
| 755 | $("input.testinput").prop("disabled", false); |
||
| 756 | $(".forhide").show(); |
||
| 757 | } |
||
| 758 | |||
| 759 | if ($("#semicolon").is(":checked")) { |
||
| 760 | separator = ";"; |
||
| 761 | } else { |
||
| 762 | separator = ","; |
||
| 763 | } |
||
| 764 | }); |
||
| 765 | if ("' . $conf->global->EXPORT_CSV_SEPARATOR_TO_USE . '" == ";") { |
||
| 766 | $("#semicolon").prop("checked", true); |
||
| 767 | } else { |
||
| 768 | $("#comma").prop("checked", true); |
||
| 769 | } |
||
| 770 | }); |
||
| 771 | </script>'; |
||
| 772 | */ |
||
| 773 | if ($conf->use_javascript_ajax) { |
||
| 774 | $out .= ajax_combobox('model'); |
||
| 775 | } |
||
| 776 | $out .= $form->textwithpicto('', $tooltipontemplatecombo, 1, 'help', 'marginrightonly', 0, 3, '', 0); |
||
| 777 | } else { |
||
| 778 | $out .= '<div class="float">' . $langs->trans("Files") . '</div>'; |
||
| 779 | } |
||
| 780 | |||
| 781 | // Language code (if multilang) |
||
| 782 | if (($allowgenifempty || (is_array($modellist) && count($modellist) > 0)) && getDolGlobalInt('MAIN_MULTILANGS') && !$forcenomultilang && (!empty($modellist) || $showempty)) { |
||
| 783 | include_once DOL_DOCUMENT_ROOT . '/core/class/html.formadmin.class.php'; |
||
| 784 | $formadmin = new FormAdmin($this->db); |
||
| 785 | $defaultlang = ($codelang && $codelang != 'auto') ? $codelang : $langs->getDefaultLang(); |
||
| 786 | $morecss = 'maxwidth150'; |
||
| 787 | if ($conf->browser->layout == 'phone') { |
||
| 788 | $morecss = 'maxwidth100'; |
||
| 789 | } |
||
| 790 | $out .= $formadmin->select_language($defaultlang, 'lang_id', 0, null, 0, 0, 0, $morecss); |
||
| 791 | } else { |
||
| 792 | $out .= ' '; |
||
| 793 | } |
||
| 794 | |||
| 795 | // Button |
||
| 796 | $genbutton = '<input class="button buttongen reposition nomargintop nomarginbottom" id="' . $forname . '_generatebutton" name="' . $forname . '_generatebutton"'; |
||
| 797 | $genbutton .= ' type="submit" value="' . $buttonlabel . '"'; |
||
| 798 | if (!$allowgenifempty && !is_array($modellist) && empty($modellist)) { |
||
| 799 | $genbutton .= ' disabled'; |
||
| 800 | } |
||
| 801 | $genbutton .= '>'; |
||
| 802 | if ($allowgenifempty && !is_array($modellist) && empty($modellist) && empty($conf->dol_no_mouse_hover) && $modulepart != 'unpaid') { |
||
| 803 | $langs->load("errors"); |
||
| 804 | $genbutton .= ' ' . img_warning($langs->transnoentitiesnoconv("WarningNoDocumentModelActivated")); |
||
| 805 | } |
||
| 806 | if (!$allowgenifempty && !is_array($modellist) && empty($modellist) && empty($conf->dol_no_mouse_hover) && $modulepart != 'unpaid') { |
||
| 807 | $genbutton = ''; |
||
| 808 | } |
||
| 809 | if (empty($modellist) && !$showempty && $modulepart != 'unpaid') { |
||
| 810 | $genbutton = ''; |
||
| 811 | } |
||
| 812 | $out .= $genbutton; |
||
| 813 | $out .= '</th>'; |
||
| 814 | |||
| 815 | if (!empty($hookmanager->hooks['formfile'])) { |
||
| 816 | foreach ($hookmanager->hooks['formfile'] as $module) { |
||
| 817 | if (method_exists($module, 'formBuilddocLineOptions')) { |
||
| 818 | $colspanmore++; |
||
| 819 | $out .= '<th></th>'; |
||
| 820 | } |
||
| 821 | } |
||
| 822 | } |
||
| 823 | $out .= '</tr>'; |
||
| 824 | |||
| 825 | // Execute hooks |
||
| 826 | $parameters = array('colspan' => ($colspan + $colspanmore), 'socid' => (isset($GLOBALS['socid']) ? $GLOBALS['socid'] : ''), 'id' => (isset($GLOBALS['id']) ? $GLOBALS['id'] : ''), 'modulepart' => $modulepart); |
||
| 827 | if (is_object($hookmanager)) { |
||
| 828 | $reshook = $hookmanager->executeHooks('formBuilddocOptions', $parameters, $GLOBALS['object']); |
||
| 829 | $out .= $hookmanager->resPrint; |
||
| 830 | } |
||
| 831 | } |
||
| 832 | |||
| 833 | // Get list of files |
||
| 834 | if (!empty($filedir)) { |
||
| 835 | $link_list = array(); |
||
| 836 | if (is_object($object)) { |
||
| 837 | require_once constant('DOL_DOCUMENT_ROOT') . '/core/class/link.class.php'; |
||
| 838 | $link = new Link($this->db); |
||
| 839 | $sortfield = $sortorder = null; |
||
| 840 | $res = $link->fetchAll($link_list, $object->element, $object->id, $sortfield, $sortorder); |
||
| 841 | } |
||
| 842 | |||
| 843 | $out .= '<!-- html.formfile::showdocuments -->' . "\n"; |
||
| 844 | |||
| 845 | // Show title of array if not already shown |
||
| 846 | if ( |
||
| 847 | (!empty($file_list) || !empty($link_list) || preg_match('/^massfilesarea/', $modulepart)) |
||
| 848 | && !$headershown |
||
| 849 | ) { |
||
| 850 | $headershown = 1; |
||
| 851 | $out .= '<div class="titre">' . $titletoshow . '</div>' . "\n"; |
||
| 852 | $out .= '<div class="div-table-responsive-no-min">'; |
||
| 853 | $out .= '<table class="noborder centpercent" id="' . $modulepart . '_table">' . "\n"; |
||
| 854 | } |
||
| 855 | |||
| 856 | // Loop on each file found |
||
| 857 | if (is_array($file_list)) { |
||
| 858 | // Defined relative dir to DOL_DATA_ROOT |
||
| 859 | $relativedir = ''; |
||
| 860 | if ($filedir) { |
||
| 861 | $relativedir = preg_replace('/^' . preg_quote(DOL_DATA_ROOT, '/') . '/', '', $filedir); |
||
| 862 | $relativedir = preg_replace('/^[\\/]/', '', $relativedir); |
||
| 863 | } |
||
| 864 | |||
| 865 | // Get list of files stored into database for same relative directory |
||
| 866 | if ($relativedir) { |
||
| 867 | completeFileArrayWithDatabaseInfo($file_list, $relativedir); |
||
| 868 | |||
| 869 | //var_dump($sortfield.' - '.$sortorder); |
||
| 870 | if (!empty($sortfield) && !empty($sortorder)) { // If $sortfield is for example 'position_name', we will sort on the property 'position_name' (that is concat of position+name) |
||
| 871 | $file_list = dol_sort_array($file_list, $sortfield, $sortorder); |
||
| 872 | } |
||
| 873 | } |
||
| 874 | |||
| 875 | foreach ($file_list as $file) { |
||
| 876 | // Define relative path for download link (depends on module) |
||
| 877 | $relativepath = $file["name"]; // Cas general |
||
| 878 | if ($modulesubdir) { |
||
| 879 | $relativepath = $modulesubdir . "/" . $file["name"]; // Cas propal, facture... |
||
| 880 | } |
||
| 881 | if ($modulepart == 'export') { |
||
| 882 | $relativepath = $file["name"]; // Other case |
||
| 883 | } |
||
| 884 | |||
| 885 | $out .= '<tr class="oddeven">'; |
||
| 886 | |||
| 887 | $documenturl = constant('BASE_URL') . '/document.php'; |
||
| 888 | if (isset($conf->global->DOL_URL_ROOT_DOCUMENT_PHP)) { |
||
| 889 | $documenturl = getDolGlobalString('DOL_URL_ROOT_DOCUMENT_PHP'); // To use another wrapper |
||
| 890 | } |
||
| 891 | |||
| 892 | // Show file name with link to download |
||
| 893 | $imgpreview = $this->showPreview($file, $modulepart, $relativepath, 0, $param); |
||
| 894 | |||
| 895 | $out .= '<td class="minwidth200 tdoverflowmax300">'; |
||
| 896 | if ($imgpreview) { |
||
| 897 | $out .= '<span class="spanoverflow widthcentpercentminusx valignmiddle">'; |
||
| 898 | } else { |
||
| 899 | $out .= '<span class="spanoverflow">'; |
||
| 900 | } |
||
| 901 | $out .= '<a class="documentdownload paddingright" '; |
||
| 902 | if (getDolGlobalInt('MAIN_DISABLE_FORCE_SAVEAS') == 2) { |
||
| 903 | $out .= 'target="_blank" '; |
||
| 904 | } |
||
| 905 | $out .= 'href="' . $documenturl . '?modulepart=' . $modulepart . '&file=' . urlencode($relativepath) . ($param ? '&' . $param : '') . '"'; |
||
| 906 | |||
| 907 | $mime = dol_mimetype($relativepath, '', 0); |
||
| 908 | if (preg_match('/text/', $mime)) { |
||
| 909 | $out .= ' target="_blank" rel="noopener noreferrer"'; |
||
| 910 | } |
||
| 911 | $out .= ' title="' . dol_escape_htmltag($file["name"]) . '"'; |
||
| 912 | $out .= '>'; |
||
| 913 | $out .= img_mime($file["name"], $langs->trans("File") . ': ' . $file["name"]); |
||
| 914 | $out .= dol_trunc($file["name"], 150); |
||
| 915 | $out .= '</a>'; |
||
| 916 | $out .= '</span>' . "\n"; |
||
| 917 | $out .= $imgpreview; |
||
| 918 | $out .= '</td>'; |
||
| 919 | |||
| 920 | // Show file size |
||
| 921 | $size = (!empty($file['size']) ? $file['size'] : dol_filesize($filedir . "/" . $file["name"])); |
||
| 922 | $out .= '<td class="nowraponall right">' . dol_print_size($size, 1, 1) . '</td>'; |
||
| 923 | |||
| 924 | // Show file date |
||
| 925 | $date = (!empty($file['date']) ? $file['date'] : dol_filemtime($filedir . "/" . $file["name"])); |
||
| 926 | $out .= '<td class="nowrap right">' . dol_print_date($date, 'dayhour', 'tzuser') . '</td>'; |
||
| 927 | |||
| 928 | // Show share link |
||
| 929 | $out .= '<td class="nowraponall">'; |
||
| 930 | if (!empty($file['share'])) { |
||
| 931 | // Define $urlwithroot |
||
| 932 | $urlwithouturlroot = preg_replace('/' . preg_quote(DOL_URL_ROOT, '/') . '$/i', '', trim($dolibarr_main_url_root)); |
||
| 933 | $urlwithroot = $urlwithouturlroot . DOL_URL_ROOT; // This is to use external domain name found into config file |
||
| 934 | //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current |
||
| 935 | |||
| 936 | //print '<span class="opacitymedium">'.$langs->trans("Hash").' : '.$file['share'].'</span>'; |
||
| 937 | $forcedownload = 0; |
||
| 938 | $paramlink = ''; |
||
| 939 | if (!empty($file['share'])) { |
||
| 940 | $paramlink .= ($paramlink ? '&' : '') . 'hashp=' . $file['share']; // Hash for public share |
||
| 941 | } |
||
| 942 | if ($forcedownload) { |
||
| 943 | $paramlink .= ($paramlink ? '&' : '') . 'attachment=1'; |
||
| 944 | } |
||
| 945 | |||
| 946 | $fulllink = $urlwithroot . '/document.php' . ($paramlink ? '?' . $paramlink : ''); |
||
| 947 | |||
| 948 | $out .= '<a href="' . $fulllink . '" target="_blank" rel="noopener">' . img_picto($langs->trans("FileSharedViaALink"), 'globe') . '</a> '; |
||
| 949 | $out .= '<input type="text" class="quatrevingtpercentminusx width75 nopadding small" id="downloadlink' . $file['rowid'] . '" name="downloadexternallink" title="' . dol_escape_htmltag($langs->trans("FileSharedViaALink")) . '" value="' . dol_escape_htmltag($fulllink) . '">'; |
||
| 950 | $out .= ajax_autoselect('downloadlink' . $file['rowid']); |
||
| 951 | } else { |
||
| 952 | //print '<span class="opacitymedium">'.$langs->trans("FileNotShared").'</span>'; |
||
| 953 | } |
||
| 954 | $out .= '</td>'; |
||
| 955 | |||
| 956 | // Show picto delete, print... |
||
| 957 | if ($delallowed || $printer || $morepicto) { |
||
| 958 | $out .= '<td class="right nowraponall">'; |
||
| 959 | if ($delallowed) { |
||
| 960 | $tmpurlsource = preg_replace('/#[a-zA-Z0-9_]*$/', '', $urlsource); |
||
| 961 | $out .= '<a class="reposition" href="' . $tmpurlsource . ((strpos($tmpurlsource, '?') === false) ? '?' : '&') . 'action=' . urlencode($removeaction) . '&token=' . newToken() . '&file=' . urlencode($relativepath); |
||
| 962 | $out .= ($param ? '&' . $param : ''); |
||
| 963 | //$out.= '&modulepart='.$modulepart; // TODO obsolete ? |
||
| 964 | //$out.= '&urlsource='.urlencode($urlsource); // TODO obsolete ? |
||
| 965 | $out .= '">' . img_picto($langs->trans("Delete"), 'delete') . '</a>'; |
||
| 966 | } |
||
| 967 | if ($printer) { |
||
| 968 | $out .= '<a class="marginleftonly reposition" href="' . $urlsource . (strpos($urlsource, '?') ? '&' : '?') . 'action=print_file&token=' . newToken() . '&printer=' . urlencode($modulepart) . '&file=' . urlencode($relativepath); |
||
| 969 | $out .= ($param ? '&' . $param : ''); |
||
| 970 | $out .= '">' . img_picto($langs->trans("PrintFile", $relativepath), 'printer.png') . '</a>'; |
||
| 971 | } |
||
| 972 | if ($morepicto) { |
||
| 973 | $morepicto = preg_replace('/__FILENAMEURLENCODED__/', urlencode($relativepath), $morepicto); |
||
| 974 | $out .= $morepicto; |
||
| 975 | } |
||
| 976 | $out .= '</td>'; |
||
| 977 | } |
||
| 978 | |||
| 979 | if (is_object($hookmanager)) { |
||
| 980 | $addcolumforpicto = ($delallowed || $printer || $morepicto); |
||
| 981 | $colspan = (4 + ($addcolumforpicto ? 1 : 0)); |
||
| 982 | $colspanmore = 0; |
||
| 983 | $parameters = array('colspan' => ($colspan + $colspanmore), 'socid' => (isset($GLOBALS['socid']) ? $GLOBALS['socid'] : ''), 'id' => (isset($GLOBALS['id']) ? $GLOBALS['id'] : ''), 'modulepart' => $modulepart, 'relativepath' => $relativepath); |
||
| 984 | $res = $hookmanager->executeHooks('formBuilddocLineOptions', $parameters, $file); |
||
| 985 | if (empty($res)) { |
||
| 986 | $out .= $hookmanager->resPrint; // Complete line |
||
| 987 | $out .= '</tr>'; |
||
| 988 | } else { |
||
| 989 | $out = $hookmanager->resPrint; // Replace all $out |
||
| 990 | } |
||
| 991 | } |
||
| 992 | } |
||
| 993 | |||
| 994 | $this->numoffiles++; |
||
| 995 | } |
||
| 996 | // Loop on each link found |
||
| 997 | if (is_array($link_list)) { |
||
| 998 | $colspan = 2; |
||
| 999 | |||
| 1000 | foreach ($link_list as $file) { |
||
| 1001 | $out .= '<tr class="oddeven">'; |
||
| 1002 | $out .= '<td colspan="' . $colspan . '" class="maxwidhtonsmartphone">'; |
||
| 1003 | $out .= '<a data-ajax="false" href="' . $file->url . '" target="_blank" rel="noopener noreferrer">'; |
||
| 1004 | $out .= $file->label; |
||
| 1005 | $out .= '</a>'; |
||
| 1006 | $out .= '</td>'; |
||
| 1007 | $out .= '<td class="right">'; |
||
| 1008 | $out .= dol_print_date($file->datea, 'dayhour'); |
||
| 1009 | $out .= '</td>'; |
||
| 1010 | // for share link of files |
||
| 1011 | $out .= '<td></td>'; |
||
| 1012 | if ($delallowed || $printer || $morepicto) { |
||
| 1013 | $out .= '<td></td>'; |
||
| 1014 | } |
||
| 1015 | $out .= '</tr>' . "\n"; |
||
| 1016 | } |
||
| 1017 | $this->numoffiles++; |
||
| 1018 | } |
||
| 1019 | |||
| 1020 | if (count($file_list) == 0 && count($link_list) == 0 && $headershown) { |
||
| 1021 | $out .= '<tr><td colspan="' . (3 + ($addcolumforpicto ? 1 : 0)) . '"><span class="opacitymedium">' . $langs->trans("None") . '</span></td></tr>' . "\n"; |
||
| 1022 | } |
||
| 1023 | } |
||
| 1024 | |||
| 1025 | if ($headershown) { |
||
| 1026 | // Affiche pied du tableau |
||
| 1027 | $out .= "</table>\n"; |
||
| 1028 | $out .= "</div>\n"; |
||
| 1029 | if ($genallowed) { |
||
| 1030 | if (empty($noform)) { |
||
| 1031 | $out .= '</form>' . "\n"; |
||
| 1032 | } |
||
| 1033 | } |
||
| 1034 | } |
||
| 1035 | $out .= '<!-- End show_document -->' . "\n"; |
||
| 1036 | |||
| 1037 | $out .= '<script> |
||
| 1038 | jQuery(document).ready(function() { |
||
| 1039 | var selectedValue = $(".selectformat").val(); |
||
| 1040 | |||
| 1041 | if (selectedValue === "excel2007" || selectedValue === "tsv") { |
||
| 1042 | $(".forhide").prop("disabled", true).hide(); |
||
| 1043 | } else { |
||
| 1044 | $(".forhide").prop("disabled", false).show(); |
||
| 1045 | } |
||
| 1046 | }); |
||
| 1047 | </script>'; |
||
| 1048 | //return ($i?$i:$headershown); |
||
| 1049 | return $out; |
||
| 1050 | } |
||
| 1051 | |||
| 1052 | /** |
||
| 1053 | * Show a Document icon with link(s) |
||
| 1054 | * You may want to call this into a div like this: |
||
| 1055 | * print '<div class="inline-block valignmiddle">'.$formfile->getDocumentsLink($element_doc, $filename, $filedir).'</div>'; |
||
| 1056 | * |
||
| 1057 | * @param string $modulepart 'propal', 'facture', 'facture_fourn', ... |
||
| 1058 | * @param string $modulesubdir Sub-directory to scan (Example: '0/1/10', 'FA/DD/MM/YY/9999'). Use '' if file is not into subdir of module. |
||
| 1059 | * @param string $filedir Full path to directory to scan |
||
| 1060 | * @param string $filter Filter filenames on this regex string (Example: '\.pdf$') |
||
| 1061 | * @param string $morecss Add more css to the download picto |
||
| 1062 | * @param int $allfiles 0=Only generated docs, 1=All files |
||
| 1063 | * @return string Output string with HTML link of documents (might be empty string). This also fill the array ->infofiles |
||
| 1064 | */ |
||
| 1065 | public function getDocumentsLink($modulepart, $modulesubdir, $filedir, $filter = '', $morecss = 'valignmiddle', $allfiles = 0) |
||
| 1066 | { |
||
| 1067 | global $conf, $langs; |
||
| 1068 | |||
| 1069 | include_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php'; |
||
| 1070 | |||
| 1071 | $out = ''; |
||
| 1072 | $this->infofiles = array('nboffiles' => 0, 'extensions' => array(), 'files' => array()); |
||
| 1073 | |||
| 1074 | $entity = 1; // Without multicompany |
||
| 1075 | |||
| 1076 | // Get object entity |
||
| 1077 | if (isModEnabled('multicompany')) { |
||
| 1078 | $regs = array(); |
||
| 1079 | preg_match('/\/([0-9]+)\/[^\/]+\/' . preg_quote($modulesubdir, '/') . '$/', $filedir, $regs); |
||
| 1080 | $entity = ((!empty($regs[1]) && $regs[1] > 1) ? $regs[1] : 1); // If entity id not found in $filedir this is entity 1 by default |
||
| 1081 | } |
||
| 1082 | |||
| 1083 | // Get list of files starting with name of ref (Note: files with '^ref\.extension' are generated files, files with '^ref-...' are uploaded files) |
||
| 1084 | if ($allfiles || getDolGlobalString('MAIN_SHOW_ALL_FILES_ON_DOCUMENT_TOOLTIP')) { |
||
| 1085 | $filterforfilesearch = '^' . preg_quote(basename($modulesubdir), '/'); |
||
| 1086 | } else { |
||
| 1087 | $filterforfilesearch = '^' . preg_quote(basename($modulesubdir), '/') . '\.'; |
||
| 1088 | } |
||
| 1089 | $file_list = dol_dir_list($filedir, 'files', 0, $filterforfilesearch, '\.meta$|\.png$'); // We also discard .meta and .png preview |
||
| 1090 | |||
| 1091 | //var_dump($file_list); |
||
| 1092 | // For ajax treatment |
||
| 1093 | $out .= '<!-- html.formfile::getDocumentsLink -->' . "\n"; |
||
| 1094 | if (!empty($file_list)) { |
||
| 1095 | $out = '<dl class="dropdown inline-block"> |
||
| 1096 | <dt><a data-ajax="false" href="#" onClick="return false;">' . img_picto('', 'listlight', '', 0, 0, 0, '', $morecss) . '</a></dt> |
||
| 1097 | <dd><div class="multichoicedoc" style="position:absolute;left:100px;" ><ul class="ulselectedfields">'; |
||
| 1098 | $tmpout = ''; |
||
| 1099 | |||
| 1100 | // Loop on each file found |
||
| 1101 | $found = 0; |
||
| 1102 | $i = 0; |
||
| 1103 | foreach ($file_list as $file) { |
||
| 1104 | $i++; |
||
| 1105 | if ($filter && !preg_match('/' . $filter . '/i', $file["name"])) { |
||
| 1106 | continue; // Discard this. It does not match provided filter. |
||
| 1107 | } |
||
| 1108 | |||
| 1109 | $found++; |
||
| 1110 | // Define relative path for download link (depends on module) |
||
| 1111 | $relativepath = $file["name"]; // Cas general |
||
| 1112 | if ($modulesubdir) { |
||
| 1113 | $relativepath = $modulesubdir . "/" . $file["name"]; // Cas propal, facture... |
||
| 1114 | } |
||
| 1115 | // Autre cas |
||
| 1116 | if ($modulepart == 'donation') { |
||
| 1117 | $relativepath = get_exdir($modulesubdir, 2, 0, 0, null, 'donation') . $file["name"]; |
||
| 1118 | } |
||
| 1119 | if ($modulepart == 'export') { |
||
| 1120 | $relativepath = $file["name"]; |
||
| 1121 | } |
||
| 1122 | |||
| 1123 | $this->infofiles['nboffiles']++; |
||
| 1124 | $this->infofiles['files'][] = $file['fullname']; |
||
| 1125 | $ext = pathinfo($file["name"], PATHINFO_EXTENSION); |
||
| 1126 | if (empty($this->infofiles[$ext])) { |
||
| 1127 | $this->infofiles['extensions'][$ext] = 1; |
||
| 1128 | } else { |
||
| 1129 | $this->infofiles['extensions'][$ext]++; |
||
| 1130 | } |
||
| 1131 | |||
| 1132 | // Preview |
||
| 1133 | if (!empty($conf->use_javascript_ajax) && ($conf->browser->layout != 'phone')) { |
||
| 1134 | $tmparray = getAdvancedPreviewUrl($modulepart, $relativepath, 1, '&entity=' . $entity); |
||
| 1135 | if ($tmparray && $tmparray['url']) { |
||
| 1136 | $tmpout .= '<li><a href="' . $tmparray['url'] . '"' . ($tmparray['css'] ? ' class="' . $tmparray['css'] . '"' : '') . ($tmparray['mime'] ? ' mime="' . $tmparray['mime'] . '"' : '') . ($tmparray['target'] ? ' target="' . $tmparray['target'] . '"' : '') . '>'; |
||
| 1137 | //$tmpout.= img_picto('','detail'); |
||
| 1138 | $tmpout .= '<i class="fa fa-search-plus paddingright" style="color: gray"></i>'; |
||
| 1139 | $tmpout .= $langs->trans("Preview") . ' ' . $ext . '</a></li>'; |
||
| 1140 | } |
||
| 1141 | } |
||
| 1142 | |||
| 1143 | // Download |
||
| 1144 | $tmpout .= '<li class="nowrap"><a class="pictopreview nowrap" '; |
||
| 1145 | if (getDolGlobalInt('MAIN_DISABLE_FORCE_SAVEAS') == 2) { |
||
| 1146 | $tmpout .= 'target="_blank" '; |
||
| 1147 | } |
||
| 1148 | $tmpout .= 'href="' . constant('BASE_URL') . '/document.php?modulepart=' . $modulepart . '&entity=' . $entity . '&file=' . urlencode($relativepath) . '"'; |
||
| 1149 | $mime = dol_mimetype($relativepath, '', 0); |
||
| 1150 | if (preg_match('/text/', $mime)) { |
||
| 1151 | $tmpout .= ' target="_blank" rel="noopener noreferrer"'; |
||
| 1152 | } |
||
| 1153 | $tmpout .= '>'; |
||
| 1154 | $tmpout .= img_mime($relativepath, $file["name"]); |
||
| 1155 | $tmpout .= $langs->trans("Download") . ' ' . $ext; |
||
| 1156 | $tmpout .= '</a></li>' . "\n"; |
||
| 1157 | } |
||
| 1158 | $out .= $tmpout; |
||
| 1159 | $out .= '</ul></div></dd> |
||
| 1160 | </dl>'; |
||
| 1161 | |||
| 1162 | if (!$found) { |
||
| 1163 | $out = ''; |
||
| 1164 | } |
||
| 1165 | } else { |
||
| 1166 | // TODO Add link to regenerate doc ? |
||
| 1167 | //$out.= '<div id="gen_pdf_'.$modulesubdir.'" class="linkobject hideobject">'.img_picto('', 'refresh').'</div>'."\n"; |
||
| 1168 | } |
||
| 1169 | |||
| 1170 | return $out; |
||
| 1171 | } |
||
| 1172 | |||
| 1173 | |||
| 1174 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 1175 | /** |
||
| 1176 | * Show list of documents in $filearray (may be they are all in same directory but may not) |
||
| 1177 | * This also sync database if $upload_dir is defined. |
||
| 1178 | * |
||
| 1179 | * @param array $filearray Array of files loaded by dol_dir_list('files') function before calling this. |
||
| 1180 | * @param Object|null $object Object on which document is linked to. |
||
| 1181 | * @param string $modulepart Value for modulepart used by download or viewimage wrapper. |
||
| 1182 | * @param string $param Parameters on sort links (param must start with &, example &aaa=bbb&ccc=ddd) |
||
| 1183 | * @param int $forcedownload Force to open dialog box "Save As" when clicking on file. |
||
| 1184 | * @param string $relativepath Relative path of docs (autodefined if not provided), relative to module dir, not to MAIN_DATA_ROOT. |
||
| 1185 | * @param int $permonobject Permission on object (so permission to delete or crop document) |
||
| 1186 | * @param int $useinecm Change output for use in ecm module: |
||
| 1187 | * 0 or 6: Add a preview column. Show also a rename button. Show also a crop button for some values of $modulepart (must be supported into hard coded list in this function + photos_resize.php + restrictedArea + checkUserAccessToObject) |
||
| 1188 | * 1: Add link to edit ECM entry |
||
| 1189 | * 2: Add rename and crop link |
||
| 1190 | * 4: Add a preview column |
||
| 1191 | * 5: Add link to edit ECM entry and Add a preview column |
||
| 1192 | * @param string $textifempty Text to show if filearray is empty ('NoFileFound' if not defined) |
||
| 1193 | * @param int $maxlength Maximum length of file name shown. |
||
| 1194 | * @param string $title Title before list. Use 'none' to disable title. |
||
| 1195 | * @param string $url Full url to use for click links ('' = autodetect) |
||
| 1196 | * @param int $showrelpart 0=Show only filename (default), 1=Show first level 1 dir |
||
| 1197 | * @param int $permtoeditline Permission to edit document line (You must provide a value, -1 is deprecated and must not be used any more) |
||
| 1198 | * @param string $upload_dir Full path directory so we can know dir relative to MAIN_DATA_ROOT. Fill this to complete file data with database indexes. |
||
| 1199 | * @param string $sortfield Sort field ('name', 'size', 'position', ...) |
||
| 1200 | * @param string $sortorder Sort order ('ASC' or 'DESC') |
||
| 1201 | * @param int $disablemove 1=Disable move button, 0=Position move is possible. |
||
| 1202 | * @param int $addfilterfields Add the line with filters |
||
| 1203 | * @param int $disablecrop Disable crop feature on images (-1 = auto, prefer to set it explicitly to 0 or 1) |
||
| 1204 | * @param string $moreattrondiv More attributes on the div for responsive. Example 'style="height:280px; overflow: auto;"' |
||
| 1205 | * @return int Return integer <0 if KO, nb of files shown if OK |
||
| 1206 | * @see list_of_autoecmfiles() |
||
| 1207 | */ |
||
| 1208 | public function list_of_documents($filearray, $object, $modulepart, $param = '', $forcedownload = 0, $relativepath = '', $permonobject = 1, $useinecm = 0, $textifempty = '', $maxlength = 0, $title = '', $url = '', $showrelpart = 0, $permtoeditline = -1, $upload_dir = '', $sortfield = '', $sortorder = 'ASC', $disablemove = 1, $addfilterfields = 0, $disablecrop = -1, $moreattrondiv = '') |
||
| 1674 | } |
||
| 1675 | } |
||
| 1676 | |||
| 1677 | |||
| 1678 | // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
||
| 1679 | /** |
||
| 1680 | * Show list of documents in a directory of ECM module. |
||
| 1681 | * |
||
| 1682 | * @param string $upload_dir Directory that was scanned. This directory will contains files into subdirs REF/files |
||
| 1683 | * @param array $filearray Array of files loaded by dol_dir_list function before calling this function |
||
| 1684 | * @param string $modulepart Value for modulepart used by download wrapper. Value can be $object->table_name (that is 'myobject' or 'mymodule_myobject') or $object->element.'-'.$module (for compatibility purpose) |
||
| 1685 | * @param string $param Parameters on sort links |
||
| 1686 | * @param int $forcedownload Force to open dialog box "Save As" when clicking on file |
||
| 1687 | * @param string $relativepath Relative path of docs (autodefined if not provided) |
||
| 1688 | * @param int $permissiontodelete Permission to delete |
||
| 1689 | * @param int $useinecm Change output for use in ecm module |
||
| 1690 | * @param string $textifempty Text to show if filearray is empty |
||
| 1691 | * @param int $maxlength Maximum length of file name shown |
||
| 1692 | * @param string $url Full url to use for click links ('' = autodetect) |
||
| 1693 | * @param int $addfilterfields Add line with filters |
||
| 1694 | * @return int Return integer <0 if KO, nb of files shown if OK |
||
| 1695 | * @see list_of_documents() |
||
| 1696 | */ |
||
| 1697 | public function list_of_autoecmfiles($upload_dir, $filearray, $modulepart, $param, $forcedownload = 0, $relativepath = '', $permissiontodelete = 1, $useinecm = 0, $textifempty = '', $maxlength = 0, $url = '', $addfilterfields = 0) |
||
| 1698 | { |
||
| 1699 | // phpcs:enable |
||
| 1700 | global $conf, $langs, $hookmanager, $form; |
||
| 1701 | global $sortfield, $sortorder; |
||
| 1702 | global $search_doc_ref; |
||
| 1703 | global $dolibarr_main_url_root; |
||
| 1704 | |||
| 1705 | dol_syslog(get_class($this) . '::list_of_autoecmfiles upload_dir=' . $upload_dir . ' modulepart=' . $modulepart); |
||
| 1706 | |||
| 1707 | // Show list of documents |
||
| 1708 | if (empty($useinecm) || $useinecm == 6) { |
||
| 1709 | print load_fiche_titre($langs->trans("AttachedFiles")); |
||
| 1710 | } |
||
| 1711 | if (empty($url)) { |
||
| 1712 | $url = $_SERVER["PHP_SELF"]; |
||
| 1713 | } |
||
| 1714 | |||
| 1715 | if (!empty($addfilterfields)) { |
||
| 1716 | print '<form action="' . $_SERVER['PHP_SELF'] . '">'; |
||
| 1717 | print '<input type="hidden" name="token" value="' . newToken() . '">'; |
||
| 1718 | print '<input type="hidden" name="module" value="' . $modulepart . '">'; |
||
| 1719 | } |
||
| 1720 | |||
| 1721 | print '<div class="div-table-responsive-no-min">'; |
||
| 1722 | print '<table width="100%" class="noborder">' . "\n"; |
||
| 1723 | |||
| 1724 | if (!empty($addfilterfields)) { |
||
| 1725 | print '<tr class="liste_titre nodrag nodrop">'; |
||
| 1726 | print '<td class="liste_titre"></td>'; |
||
| 1727 | print '<td class="liste_titre"><input type="text" class="maxwidth100onsmartphone" name="search_doc_ref" value="' . dol_escape_htmltag($search_doc_ref) . '"></td>'; |
||
| 1728 | print '<td class="liste_titre"></td>'; |
||
| 1729 | print '<td class="liste_titre"></td>'; |
||
| 1730 | // Action column |
||
| 1731 | print '<td class="liste_titre right">'; |
||
| 1732 | $searchpicto = $form->showFilterButtons(); |
||
| 1733 | print $searchpicto; |
||
| 1734 | print '</td>'; |
||
| 1735 | print "</tr>\n"; |
||
| 1736 | } |
||
| 1737 | |||
| 1738 | print '<tr class="liste_titre">'; |
||
| 1739 | $sortref = "fullname"; |
||
| 1740 | if ($modulepart == 'invoice_supplier') { |
||
| 1741 | $sortref = 'level1name'; |
||
| 1742 | } |
||
| 1743 | print_liste_field_titre("Ref", $url, $sortref, "", $param, '', $sortfield, $sortorder); |
||
| 1744 | print_liste_field_titre("Documents2", $url, "name", "", $param, '', $sortfield, $sortorder); |
||
| 1745 | print_liste_field_titre("Size", $url, "size", "", $param, '', $sortfield, $sortorder, 'right '); |
||
| 1746 | print_liste_field_titre("Date", $url, "date", "", $param, '', $sortfield, $sortorder, 'center '); |
||
| 1747 | print_liste_field_titre("Shared", $url, 'share', '', $param, '', $sortfield, $sortorder, 'right '); |
||
| 1748 | print '</tr>' . "\n"; |
||
| 1749 | |||
| 1750 | // To show ref or specific information according to view to show (defined by $module) |
||
| 1751 | $object_instance = null; |
||
| 1752 | if ($modulepart == 'company') { |
||
| 1753 | include_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php'; |
||
| 1754 | $object_instance = new Societe($this->db); |
||
| 1755 | } elseif ($modulepart == 'invoice') { |
||
| 1756 | include_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php'; |
||
| 1757 | $object_instance = new Facture($this->db); |
||
| 1758 | } elseif ($modulepart == 'invoice_supplier') { |
||
| 1759 | include_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.facture.class.php'; |
||
| 1760 | $object_instance = new FactureFournisseur($this->db); |
||
| 1761 | } elseif ($modulepart == 'propal') { |
||
| 1762 | include_once DOL_DOCUMENT_ROOT . '/comm/propal/class/propal.class.php'; |
||
| 1763 | $object_instance = new Propal($this->db); |
||
| 1764 | } elseif ($modulepart == 'supplier_proposal') { |
||
| 1765 | include_once DOL_DOCUMENT_ROOT . '/supplier_proposal/class/supplier_proposal.class.php'; |
||
| 1766 | $object_instance = new SupplierProposal($this->db); |
||
| 1767 | } elseif ($modulepart == 'order') { |
||
| 1768 | include_once DOL_DOCUMENT_ROOT . '/commande/class/commande.class.php'; |
||
| 1769 | $object_instance = new Commande($this->db); |
||
| 1770 | } elseif ($modulepart == 'order_supplier') { |
||
| 1771 | include_once DOL_DOCUMENT_ROOT . '/fourn/class/fournisseur.commande.class.php'; |
||
| 1772 | $object_instance = new CommandeFournisseur($this->db); |
||
| 1773 | } elseif ($modulepart == 'contract') { |
||
| 1774 | include_once DOL_DOCUMENT_ROOT . '/contrat/class/contrat.class.php'; |
||
| 1775 | $object_instance = new Contrat($this->db); |
||
| 1776 | } elseif ($modulepart == 'product') { |
||
| 1777 | include_once DOL_DOCUMENT_ROOT . '/product/class/product.class.php'; |
||
| 1778 | $object_instance = new Product($this->db); |
||
| 1779 | } elseif ($modulepart == 'tax') { |
||
| 1780 | include_once DOL_DOCUMENT_ROOT . '/compta/sociales/class/chargesociales.class.php'; |
||
| 1781 | $object_instance = new ChargeSociales($this->db); |
||
| 1782 | } elseif ($modulepart == 'tax-vat') { |
||
| 1783 | include_once DOL_DOCUMENT_ROOT . '/compta/tva/class/tva.class.php'; |
||
| 1784 | $object_instance = new Tva($this->db); |
||
| 1785 | } elseif ($modulepart == 'salaries') { |
||
| 1786 | include_once DOL_DOCUMENT_ROOT . '/salaries/class/salary.class.php'; |
||
| 1787 | $object_instance = new Salary($this->db); |
||
| 1788 | } elseif ($modulepart == 'project') { |
||
| 1789 | include_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php'; |
||
| 1790 | $object_instance = new Project($this->db); |
||
| 1791 | } elseif ($modulepart == 'project_task') { |
||
| 1792 | include_once DOL_DOCUMENT_ROOT . '/projet/class/task.class.php'; |
||
| 1793 | $object_instance = new Task($this->db); |
||
| 1794 | } elseif ($modulepart == 'fichinter') { |
||
| 1795 | include_once DOL_DOCUMENT_ROOT . '/fichinter/class/fichinter.class.php'; |
||
| 1796 | $object_instance = new Fichinter($this->db); |
||
| 1797 | } elseif ($modulepart == 'user') { |
||
| 1798 | include_once DOL_DOCUMENT_ROOT . '/user/class/user.class.php'; |
||
| 1799 | $object_instance = new User($this->db); |
||
| 1800 | } elseif ($modulepart == 'expensereport') { |
||
| 1801 | include_once DOL_DOCUMENT_ROOT . '/expensereport/class/expensereport.class.php'; |
||
| 1802 | $object_instance = new ExpenseReport($this->db); |
||
| 1803 | } elseif ($modulepart == 'holiday') { |
||
| 1804 | include_once DOL_DOCUMENT_ROOT . '/holiday/class/holiday.class.php'; |
||
| 1805 | $object_instance = new Holiday($this->db); |
||
| 1806 | } elseif ($modulepart == 'recruitment-recruitmentcandidature') { |
||
| 1807 | include_once DOL_DOCUMENT_ROOT . '/recruitment/class/recruitmentcandidature.class.php'; |
||
| 1808 | $object_instance = new RecruitmentCandidature($this->db); |
||
| 1809 | } elseif ($modulepart == 'banque') { |
||
| 1810 | include_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php'; |
||
| 1811 | $object_instance = new Account($this->db); |
||
| 1812 | } elseif ($modulepart == 'chequereceipt') { |
||
| 1813 | include_once DOL_DOCUMENT_ROOT . '/compta/paiement/cheque/class/remisecheque.class.php'; |
||
| 1814 | $object_instance = new RemiseCheque($this->db); |
||
| 1815 | } elseif ($modulepart == 'mrp-mo') { |
||
| 1816 | include_once DOL_DOCUMENT_ROOT . '/mrp/class/mo.class.php'; |
||
| 1817 | $object_instance = new Mo($this->db); |
||
| 1818 | } else { |
||
| 1819 | $parameters = array('modulepart' => $modulepart); |
||
| 1820 | $reshook = $hookmanager->executeHooks('addSectionECMAuto', $parameters); |
||
| 1821 | if ($reshook > 0 && is_array($hookmanager->resArray) && count($hookmanager->resArray) > 0) { |
||
| 1822 | if (array_key_exists('classpath', $hookmanager->resArray) && !empty($hookmanager->resArray['classpath'])) { |
||
| 1823 | dol_include_once($hookmanager->resArray['classpath']); |
||
| 1824 | if (array_key_exists('classname', $hookmanager->resArray) && !empty($hookmanager->resArray['classname'])) { |
||
| 1825 | if (class_exists($hookmanager->resArray['classname'])) { |
||
| 1826 | $tmpclassname = $hookmanager->resArray['classname']; |
||
| 1827 | $object_instance = new $tmpclassname($this->db); |
||
| 1828 | } |
||
| 1829 | } |
||
| 1830 | } |
||
| 1831 | } |
||
| 1832 | } |
||
| 1833 | |||
| 1834 | //var_dump($filearray); |
||
| 1835 | //var_dump($object_instance); |
||
| 1836 | |||
| 1837 | // Get list of files stored into database for same relative directory |
||
| 1838 | $relativepathfromroot = preg_replace('/' . preg_quote(DOL_DATA_ROOT . '/', '/') . '/', '', $upload_dir); |
||
| 1839 | if ($relativepathfromroot) { |
||
| 1840 | completeFileArrayWithDatabaseInfo($filearray, $relativepathfromroot . '/%'); |
||
| 1841 | |||
| 1842 | //var_dump($sortfield.' - '.$sortorder); |
||
| 1843 | if ($sortfield && $sortorder) { // If $sortfield is for example 'position_name', we will sort on the property 'position_name' (that is concat of position+name) |
||
| 1844 | $filearray = dol_sort_array($filearray, $sortfield, $sortorder, 1); |
||
| 1845 | } |
||
| 1846 | } |
||
| 1847 | |||
| 1848 | //var_dump($filearray); |
||
| 1849 | |||
| 1850 | foreach ($filearray as $key => $file) { |
||
| 1851 | if ( |
||
| 1852 | !is_dir($file['name']) |
||
| 1853 | && $file['name'] != '.' |
||
| 1854 | && $file['name'] != '..' |
||
| 1855 | && $file['name'] != 'CVS' |
||
| 1856 | && !preg_match('/\.meta$/i', $file['name']) |
||
| 1857 | ) { |
||
| 1858 | // Define relative path used to store the file |
||
| 1859 | $relativefile = preg_replace('/' . preg_quote($upload_dir . '/', '/') . '/', '', $file['fullname']); |
||
| 1860 | |||
| 1861 | $id = 0; |
||
| 1862 | $ref = ''; |
||
| 1863 | |||
| 1864 | // To show ref or specific information according to view to show (defined by $modulepart) |
||
| 1865 | // $modulepart can be $object->table_name (that is 'mymodule_myobject') or $object->element.'-'.$module (for compatibility purpose) |
||
| 1866 | $reg = array(); |
||
| 1867 | if ($modulepart == 'company' || $modulepart == 'tax' || $modulepart == 'tax-vat' || $modulepart == 'salaries') { |
||
| 1868 | preg_match('/(\d+)\/[^\/]+$/', $relativefile, $reg); |
||
| 1869 | $id = (isset($reg[1]) ? $reg[1] : ''); |
||
| 1870 | } elseif ($modulepart == 'invoice_supplier') { |
||
| 1871 | preg_match('/([^\/]+)\/[^\/]+$/', $relativefile, $reg); |
||
| 1872 | $ref = (isset($reg[1]) ? $reg[1] : ''); |
||
| 1873 | if (is_numeric($ref)) { |
||
| 1874 | $id = $ref; |
||
| 1875 | $ref = ''; |
||
| 1876 | } |
||
| 1877 | } elseif ($modulepart == 'user') { |
||
| 1878 | // $ref may be also id with old supplier invoices |
||
| 1879 | preg_match('/(.*)\/[^\/]+$/', $relativefile, $reg); |
||
| 1880 | $id = (isset($reg[1]) ? $reg[1] : ''); |
||
| 1881 | } elseif ($modulepart == 'project_task') { |
||
| 1882 | // $ref of task is the sub-directory of the project |
||
| 1883 | $reg = explode("/", $relativefile); |
||
| 1884 | $ref = (isset($reg[1]) ? $reg[1] : ''); |
||
| 1885 | } elseif ( |
||
| 1886 | in_array($modulepart, array( |
||
| 1887 | 'invoice', |
||
| 1888 | 'propal', |
||
| 1889 | 'supplier_proposal', |
||
| 1890 | 'order', |
||
| 1891 | 'order_supplier', |
||
| 1892 | 'contract', |
||
| 1893 | 'product', |
||
| 1894 | 'project', |
||
| 1895 | 'project_task', |
||
| 1896 | 'fichinter', |
||
| 1897 | 'expensereport', |
||
| 1898 | 'recruitment-recruitmentcandidature', |
||
| 1899 | 'mrp-mo', |
||
| 1900 | 'banque', |
||
| 1901 | 'chequereceipt', |
||
| 1902 | 'holiday')) |
||
| 1903 | ) { |
||
| 1904 | preg_match('/(.*)\/[^\/]+$/', $relativefile, $reg); |
||
| 1905 | $ref = (isset($reg[1]) ? $reg[1] : ''); |
||
| 1906 | } else { |
||
| 1907 | $parameters = array('modulepart' => $modulepart, 'fileinfo' => $file); |
||
| 1908 | $reshook = $hookmanager->executeHooks('addSectionECMAuto', $parameters); |
||
| 1909 | if ($reshook > 0 && is_array($hookmanager->resArray) && count($hookmanager->resArray) > 0) { |
||
| 1910 | if (array_key_exists('ref', $hookmanager->resArray) && !empty($hookmanager->resArray['ref'])) { |
||
| 1911 | $ref = $hookmanager->resArray['ref']; |
||
| 1912 | } |
||
| 1913 | if (array_key_exists('id', $hookmanager->resArray) && !empty($hookmanager->resArray['id'])) { |
||
| 1914 | $id = $hookmanager->resArray['id']; |
||
| 1915 | } |
||
| 1916 | } |
||
| 1917 | //print 'Error: Value for modulepart = '.$modulepart.' is not yet implemented in function list_of_autoecmfiles'."\n"; |
||
| 1918 | } |
||
| 1919 | |||
| 1920 | if (!$id && !$ref) { |
||
| 1921 | continue; |
||
| 1922 | } |
||
| 1923 | |||
| 1924 | $found = 0; |
||
| 1925 | if (!empty($conf->cache['modulepartobject'][$modulepart . '_' . $id . '_' . $ref])) { |
||
| 1926 | $found = 1; |
||
| 1927 | } else { |
||
| 1928 | //print 'Fetch '.$id." - ".$ref.' class='.get_class($object_instance).'<br>'; |
||
| 1929 | |||
| 1930 | $result = 0; |
||
| 1931 | if (is_object($object_instance)) { |
||
| 1932 | $object_instance->id = 0; |
||
| 1933 | $object_instance->ref = ''; |
||
| 1934 | if ($id) { |
||
| 1935 | $result = $object_instance->fetch($id); |
||
| 1936 | } else { |
||
| 1937 | if (!($result = $object_instance->fetch('', $ref))) { |
||
| 1938 | //fetchOneLike looks for objects with wildcards in its reference. |
||
| 1939 | //It is useful for those masks who get underscores instead of their actual symbols (because the _ had replaced all forbidden chars into filename) |
||
| 1940 | // TODO Example when this is needed ? |
||
| 1941 | // This may find when ref is 'A_B' and date was stored as 'A~B' into database, but in which case do we have this ? |
||
| 1942 | // May be we can add hidden option to enable this. |
||
| 1943 | $result = $object_instance->fetchOneLike($ref); |
||
| 1944 | } |
||
| 1945 | } |
||
| 1946 | } |
||
| 1947 | |||
| 1948 | if ($result > 0) { // Save object loaded into a cache |
||
| 1949 | $found = 1; |
||
| 1950 | $conf->cache['modulepartobject'][$modulepart . '_' . $id . '_' . $ref] = clone $object_instance; |
||
| 1951 | } |
||
| 1952 | if ($result == 0) { |
||
| 1953 | $found = 1; |
||
| 1954 | $conf->cache['modulepartobject'][$modulepart . '_' . $id . '_' . $ref] = 'notfound'; |
||
| 1955 | unset($filearray[$key]); |
||
| 1956 | } |
||
| 1957 | } |
||
| 1958 | |||
| 1959 | if ($found <= 0 || !is_object($conf->cache['modulepartobject'][$modulepart . '_' . $id . '_' . $ref])) { |
||
| 1960 | continue; // We do not show orphelins files |
||
| 1961 | } |
||
| 1962 | |||
| 1963 | print '<!-- Line list_of_autoecmfiles key=' . $key . ' -->' . "\n"; |
||
| 1964 | print '<tr class="oddeven">'; |
||
| 1965 | print '<td>'; |
||
| 1966 | if ($found > 0 && is_object($conf->cache['modulepartobject'][$modulepart . '_' . $id . '_' . $ref])) { |
||
| 1967 | $tmpobject = $conf->cache['modulepartobject'][$modulepart . '_' . $id . '_' . $ref]; |
||
| 1968 | //if (! in_array($tmpobject->element, array('expensereport'))) { |
||
| 1969 | print $tmpobject->getNomUrl(1, 'document'); |
||
| 1970 | //} else { |
||
| 1971 | // print $tmpobject->getNomUrl(1); |
||
| 1972 | //} |
||
| 1973 | } else { |
||
| 1974 | print $langs->trans("ObjectDeleted", ($id ? $id : $ref)); |
||
| 1975 | } |
||
| 1976 | |||
| 1977 | //$modulesubdir=dol_sanitizeFileName($ref); |
||
| 1978 | //$modulesubdir = dirname($relativefile); |
||
| 1979 | |||
| 1980 | //$filedir=$conf->$modulepart->dir_output . '/' . dol_sanitizeFileName($obj->ref); |
||
| 1981 | //$filedir = $file['path']; |
||
| 1982 | //$urlsource=$_SERVER['PHP_SELF'].'?id='.$obj->rowid; |
||
| 1983 | //print $formfile->getDocumentsLink($modulepart, $filename, $filedir); |
||
| 1984 | print '</td>'; |
||
| 1985 | |||
| 1986 | // File |
||
| 1987 | // Check if document source has external module part, if it the case use it for module part on document.php |
||
| 1988 | print '<td>'; |
||
| 1989 | //print "XX".$file['name']; //$file['name'] must be utf8 |
||
| 1990 | print '<a '; |
||
| 1991 | if (getDolGlobalInt('MAIN_DISABLE_FORCE_SAVEAS') == 2) { |
||
| 1992 | print 'target="_blank" '; |
||
| 1993 | } |
||
| 1994 | print 'href="' . constant('BASE_URL') . '/document.php?modulepart=' . urlencode($modulepart); |
||
| 1995 | if ($forcedownload) { |
||
| 1996 | print '&attachment=1'; |
||
| 1997 | } |
||
| 1998 | print '&file=' . urlencode($relativefile) . '">'; |
||
| 1999 | print img_mime($file['name'], $file['name'] . ' (' . dol_print_size($file['size'], 0, 0) . ')'); |
||
| 2000 | print dol_escape_htmltag(dol_trunc($file['name'], $maxlength, 'middle')); |
||
| 2001 | print '</a>'; |
||
| 2002 | |||
| 2003 | //print $this->getDocumentsLink($modulepart, $modulesubdir, $filedir, '^'.preg_quote($file['name'],'/').'$'); |
||
| 2004 | |||
| 2005 | print $this->showPreview($file, $modulepart, $file['relativename']); |
||
| 2006 | |||
| 2007 | print "</td>\n"; |
||
| 2008 | |||
| 2009 | // Size |
||
| 2010 | $sizetoshow = dol_print_size($file['size'], 1, 1); |
||
| 2011 | $sizetoshowbytes = dol_print_size($file['size'], 0, 1); |
||
| 2012 | print '<td class="right nowraponall">'; |
||
| 2013 | if ($sizetoshow == $sizetoshowbytes) { |
||
| 2014 | print $sizetoshow; |
||
| 2015 | } else { |
||
| 2016 | print $form->textwithpicto($sizetoshow, $sizetoshowbytes, -1); |
||
| 2017 | } |
||
| 2018 | print '</td>'; |
||
| 2019 | |||
| 2020 | // Date |
||
| 2021 | print '<td class="center">' . dol_print_date($file['date'], "dayhour") . '</td>'; |
||
| 2022 | |||
| 2023 | // Share link |
||
| 2024 | print '<td class="right">'; |
||
| 2025 | if (!empty($file['share'])) { |
||
| 2026 | // Define $urlwithroot |
||
| 2027 | $urlwithouturlroot = preg_replace('/' . preg_quote(DOL_URL_ROOT, '/') . '$/i', '', trim($dolibarr_main_url_root)); |
||
| 2028 | $urlwithroot = $urlwithouturlroot . DOL_URL_ROOT; // This is to use external domain name found into config file |
||
| 2029 | //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current |
||
| 2030 | |||
| 2031 | //print '<span class="opacitymedium">'.$langs->trans("Hash").' : '.$file['share'].'</span>'; |
||
| 2032 | $forcedownload = 0; |
||
| 2033 | $paramlink = ''; |
||
| 2034 | if (!empty($file['share'])) { |
||
| 2035 | $paramlink .= ($paramlink ? '&' : '') . 'hashp=' . $file['share']; // Hash for public share |
||
| 2036 | } |
||
| 2037 | if ($forcedownload) { |
||
| 2038 | $paramlink .= ($paramlink ? '&' : '') . 'attachment=1'; |
||
| 2039 | } |
||
| 2040 | |||
| 2041 | $fulllink = $urlwithroot . '/document.php' . ($paramlink ? '?' . $paramlink : ''); |
||
| 2042 | |||
| 2043 | print img_picto($langs->trans("FileSharedViaALink"), 'globe') . ' '; |
||
| 2044 | print '<input type="text" class="quatrevingtpercent width100 nopadding nopadding small" id="downloadlink" name="downloadexternallink" value="' . dol_escape_htmltag($fulllink) . '">'; |
||
| 2045 | } |
||
| 2046 | //if (!empty($useinecm) && $useinecm != 6) print '<a data-ajax="false" href="'.DOL_URL_ROOT.'/document.php?modulepart='.$modulepart; |
||
| 2047 | //if ($forcedownload) print '&attachment=1'; |
||
| 2048 | //print '&file='.urlencode($relativefile).'">'; |
||
| 2049 | //print img_view().'</a> '; |
||
| 2050 | //if ($permissiontodelete) print '<a href="'.$url.'?id='.$object->id.'§ion='.$_REQUEST["section"].'&action=delete&token='.newToken().'&urlfile='.urlencode($file['name']).'">'.img_delete().'</a>'; |
||
| 2051 | //else print ' '; |
||
| 2052 | print "</td>"; |
||
| 2053 | |||
| 2054 | print "</tr>\n"; |
||
| 2055 | } |
||
| 2056 | } |
||
| 2057 | |||
| 2058 | if (count($filearray) == 0) { |
||
| 2059 | print '<tr class="oddeven"><td colspan="5">'; |
||
| 2060 | if (empty($textifempty)) { |
||
| 2061 | print '<span class="opacitymedium">' . $langs->trans("NoFileFound") . '</span>'; |
||
| 2062 | } else { |
||
| 2063 | print '<span class="opacitymedium">' . $textifempty . '</span>'; |
||
| 2064 | } |
||
| 2065 | print '</td></tr>'; |
||
| 2066 | } |
||
| 2067 | print "</table>"; |
||
| 2068 | print '</div>'; |
||
| 2069 | |||
| 2070 | if (!empty($addfilterfields)) { |
||
| 2071 | print '</form>'; |
||
| 2072 | } |
||
| 2073 | return count($filearray); |
||
| 2074 | // Fin de zone |
||
| 2075 | } |
||
| 2076 | |||
| 2077 | /** |
||
| 2078 | * Show array with linked files |
||
| 2079 | * |
||
| 2080 | * @param Object $object Object |
||
| 2081 | * @param int $permissiontodelete Deletion is allowed |
||
| 2082 | * @param string $action Action |
||
| 2083 | * @param string $selected ??? |
||
| 2084 | * @param string $param More param to add into URL |
||
| 2085 | * @return int Number of links |
||
| 2086 | */ |
||
| 2087 | public function listOfLinks($object, $permissiontodelete = 1, $action = null, $selected = null, $param = '') |
||
| 2218 | } |
||
| 2219 | |||
| 2220 | |||
| 2221 | /** |
||
| 2222 | * Show detail icon with link for preview |
||
| 2223 | * |
||
| 2224 | * @param array $file Array with data of file. Example: array('name'=>...) |
||
| 2225 | * @param string $modulepart propal, facture, facture_fourn, ... |
||
| 2226 | * @param string $relativepath Relative path of docs |
||
| 2227 | * @param integer $ruleforpicto Rule for picto: 0=Use the generic preview picto, 1=Use the picto of mime type of file). Use a negative value to show a generic picto even if preview not available. |
||
| 2228 | * @param string $param More param on http links |
||
| 2229 | * @return string $out Output string with HTML |
||
| 2230 | */ |
||
| 2231 | public function showPreview($file, $modulepart, $relativepath, $ruleforpicto = 0, $param = '') |
||
| 2255 | } |
||
| 2256 | } |
||
| 2257 |