28require
'../main.inc.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/ecm/class/ecmdirectory.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/lib/ecm.lib.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/ecm/class/htmlecm.form.class.php';
45$langs->loadLangs(array(
'ecm',
'companies',
'other'));
47$action =
GETPOST(
'action',
'alpha');
49$backtopage =
GETPOST(
'backtopage',
'alpha');
50$confirm =
GETPOST(
'confirm',
'alpha');
52$module =
GETPOST(
'module',
'alpha');
53$website =
GETPOST(
'website',
'alpha');
61$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
62$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
64if (empty($page) || $page == -1) {
67$offset = $limit * $page;
77$section =
GETPOST(
"section",
'alpha') ?
GETPOST(
"section",
'alpha') :
GETPOST(
"relativedir",
'alpha');
86if ($module ==
'ecm') {
88 $result = preg_match(
'/^\d+$/', $section) ? $ecmdir->fetch((
int) $section) : 0;
90 $relativepath = $ecmdir->getRelativePath();
91 $upload_dir =
$conf->ecm->dir_output.
'/'.$relativepath;
93 $relativepath = $section;
94 $upload_dir =
$conf->ecm->dir_output.
'/'.$relativepath;
97 $relativepath = $section;
98 $upload_dir =
$conf->medias->multidir_output[
$conf->entity].
'/'.$relativepath;
102$permissiontoread = 0;
104$permissiontoupload = 0;
105if ($module ==
'ecm') {
106 $permissiontoread = $user->hasRight(
"ecm",
"read");
107 $permissiontoadd = $user->hasRight(
"ecm",
"setup");
108 $permissiontoupload = $user->hasRight(
"ecm",
"upload");
110if ($module ==
'medias') {
111 $permissiontoread = $user->hasRight(
"website",
"read");
112 $permissiontoadd = $user->hasRight(
"website",
"write");
113 $permissiontoupload = $user->hasRight(
"website",
"write");
116if (!$permissiontoread) {
129 if (is_numeric($resupload) && $resupload > 0) {
130 $result = $ecmdir->changeNbOfFiles(
'+');
132 $langs->load(
"errors");
133 if ($resupload < 0) {
135 } elseif (preg_match(
'/ErrorFileIsInfectedWithAVirus/', $resupload)) {
137 setEventMessages($langs->trans(
"ErrorFileIsInfectedWithAVirus"),
null,
'errors');
144 $langs->load(
"errors");
145 setEventMessages($langs->trans(
"ErrorFailToCreateDir", $upload_dir),
null,
'errors');
150if ($action ==
'confirm_deletefile' && $confirm ==
'yes' && $permissiontoupload) {
151 $langs->load(
"other");
152 $file = $upload_dir.
"/".
GETPOST(
'urlfile');
160 $result = $ecmdir->changeNbOfFiles(
'-');
164if ($action ==
'confirm_deletedir' && $confirm ==
'yes' && $permissiontoupload) {
165 $backtourl = DOL_URL_ROOT.
"/ecm/index.php";
166 if ($module ==
'medias') {
167 $backtourl = DOL_URL_ROOT.
"/website/index.php?file_manager=1";
170 $deletedirrecursive = (
GETPOST(
'deletedirrecursive',
'alpha') ==
'on' ? 1 : 0);
172 if ($module ==
'ecm' && $ecmdir->id > 0) {
174 $result = $ecmdir->delete($user,
'all', $deletedirrecursive);
176 $langs->load(
'errors');
177 setEventMessages($langs->trans($ecmdir->error, $ecmdir->label),
null,
'errors');
180 if ($deletedirrecursive) {
188 $langs->load(
'errors');
189 setEventMessages($langs->trans(
"ErrorFailToDeleteDir", $upload_dir),
null,
'errors');
194 header(
"Location: ".$backtourl);
200if ($action ==
'update' && !
GETPOST(
'cancel',
'alpha') && $permissiontoadd) {
204 if ($module ==
'ecm') {
205 $oldlabel = $ecmdir->label;
206 $olddir = $ecmdir->getRelativePath(0);
207 $olddir =
$conf->ecm->dir_output.
'/'.$olddir;
209 $olddir =
GETPOST(
'section',
'alpha');
210 $olddir =
$conf->medias->multidir_output[
$conf->entity].
'/'.$relativepath;
213 if ($module ==
'ecm') {
219 if ($fk_parent == -1) {
220 $ecmdir->fk_parent = 0;
222 $ecmdir->fk_parent = $fk_parent;
224 $ecmdir->description =
GETPOST(
"description");
225 $ret = $extrafields->setOptionalsFromPost(
null, $ecmdir);
231 $result = $ecmdir->insertExtraFields();
237 $result = $ecmdir->update($user);
239 $newdir = $ecmdir->getRelativePath(1);
240 $newdir =
$conf->ecm->dir_output.
'/'.$newdir;
242 if (($oldlabel != $ecmdir->label && file_exists($olddir)) || ($olddir != $newdir && file_exists($olddir))) {
243 $newdir = $ecmdir->getRelativePath(1);
244 $newdir =
$conf->ecm->dir_output.
'/'.$newdir;
246 $result = @rename($olddir, $newdir);
248 $langs->load(
'errors');
249 setEventMessages($langs->trans(
'ErrorFailToRenameDir', $olddir, $newdir),
null,
'errors');
258 $relativepath = $ecmdir->getRelativePath();
259 $upload_dir =
$conf->ecm->dir_output.
'/'.$relativepath;
268 $newdir =
$conf->medias->multidir_output[
$conf->entity].
'/'.
GETPOST(
'oldrelparentdir',
'alpha').
'/'.
GETPOST(
'label',
'alpha');
270 $result = @rename($olddir, $newdir);
272 $langs->load(
'errors');
273 setEventMessages($langs->trans(
'ErrorFailToRenameDir', $olddir, $newdir),
null,
'errors');
279 $relativepath =
GETPOST(
'oldrelparentdir',
'alpha').
'/'.
GETPOST(
'label',
'alpha');
280 $upload_dir =
$conf->medias->multidir_output[
$conf->entity].
'/'.$relativepath;
281 $section = $relativepath;
296$extrafields->fetch_name_optionals_label(
$object->table_element);
298if ($module ==
'ecm' && $ecmdir->id > 0) {
302llxHeader(
'',
'',
'',
'', 0, 0,
'',
'',
'',
'mod-ecm page-dir_card');
305$filearrayall =
dol_dir_list($upload_dir,
"all", 0,
'',
'', $sortfield, (strtolower($sortorder) ==
'desc' ? SORT_DESC : SORT_ASC), 1);
306$filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ? SORT_DESC : SORT_ASC), 1);
308foreach ($filearray as $key => $file) {
309 $totalsize += $file[
'size'];
317if ($action ==
'edit') {
318 print
'<form name="update" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
319 print
'<input type="hidden" name="token" value="'.newToken().
'">';
320 print
'<input type="hidden" name="section" value="'.$section.
'">';
321 print
'<input type="hidden" name="module" value="'.$module.
'">';
322 print
'<input type="hidden" name="action" value="update">';
328$morehtmlref =
'/'.$module.
'/'.$relativepath;
330if ($module ==
'ecm') {
335 if ($ecmdir->id > 0) {
336 $tmpecmdir->fetch($ecmdir->id);
337 while ($tmpecmdir && $result > 0) {
338 $tmpecmdir->ref = $tmpecmdir->label;
339 $s = $tmpecmdir->getNomUrl(1).$s;
340 if ($tmpecmdir->fk_parent) {
342 $result = $tmpecmdir->fetch($tmpecmdir->fk_parent);
349 $s .= implode(
' -> ', explode(
'/', $section));
351 $morehtmlref =
'<a href="'.DOL_URL_ROOT.
'/ecm/index.php">'.$langs->trans(
"ECMRoot").
'</a> -> '.$s;
353if ($module ==
'medias') {
356 $subdirs = explode(
'/', $section);
358 foreach ($subdirs as $subdir) {
359 if ($i == (count($subdirs) - 1)) {
360 if ($action ==
'edit') {
361 $s .=
'<input type="text" name="label" class="minwidth300" maxlength="32" value="'.$subdir.
'">';
362 $s .=
'<input type="hidden" name="oldrelparentdir" value="'.dirname($section).
'">';
363 $s .=
'<input type="hidden" name="oldreldir" value="'.basename($section).
'">';
368 if ($i < (count($subdirs) - 1)) {
369 $s .= $subdir.
' -> ';
378dol_banner_tab($object,
'', $morehtml, 0,
'',
'', $morehtmlref);
380print
'<div class="fichecenter">';
382print
'<div class="underbanner clearboth"></div>';
383print
'<table class="border centpercent tableforfield">';
388if ($module ==
'ecm') {
389 if ($action ==
'edit') {
390 print
'<tr><td class="titlefield tdtop">'.$langs->trans(
"ECMDirName").
'</td><td>';
391 print
'<input type="text" name="label" class="minwidth300" maxlength="32" value="'.$ecmdir->label.
'">';
393 print
'<tr><td class="titlefield tdtop">'.$langs->trans(
"ECMParentDirectory").
'</td><td>';
394 print $formecm->selectAllSections($ecmdir->fk_parent,
'',
'ecm', array($ecmdir->id));
399 print
'<tr><td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td>';
400 if ($action ==
'edit') {
401 print
'<textarea class="flat quatrevingtpercent" name="description">';
402 print $ecmdir->description;
409 print
'<tr><td class="titlefield">'.$langs->trans(
"ECMCreationUser").
'</td><td>';
410 if ($ecmdir->fk_user_c > 0) {
412 $userecm->fetch($ecmdir->fk_user_c);
413 print $userecm->getNomUrl(-1);
417print
'<tr><td class="titlefield">'.$langs->trans(
"ECMCreationDate").
'</td><td>';
418if ($module ==
'ecm') {
425print
'<tr><td>'.$langs->trans(
"ECMDirectoryForFiles").
'</td><td>';
426if ($module ==
'ecm') {
427 print
'/ecm/'.$relativepath;
429 print
'/'.$module.
'/'.$relativepath;
432print
'<tr><td>'.$langs->trans(
"ECMNbOfDocs").
'</td><td>';
433$nbofiles = count($filearray);
435if ($ecmdir->id > 0) {
437 if ($nbofiles != $ecmdir->cachenbofdoc) {
438 $ecmdir->changeNbOfFiles((
string) $nbofiles);
442print
'<tr><td>'.$langs->trans(
"TotalSizeOfAttachedFiles").
'</td><td>';
445print
$object->showOptionals($extrafields, ($action ==
'edit' ?
'edit' :
'view'));
448if ($action ==
'edit') {
449 print
'<br>'.$form->buttonsSaveCancel();
453if ($action ==
'edit') {
462if ($action !=
'edit' && $action !=
'delete' && $action !=
'deletefile') {
463 print
'<div class="tabsAction">';
465 if ($permissiontoadd) {
466 print
'<a class="butAction" href="'.$_SERVER[
'PHP_SELF'].
'?action=edit&token='.newToken().
'&module='.$module.
'§ion='.$section.
'">'.$langs->trans(
'Edit').
'</a>';
469 if ($permissiontoadd) {
470 print
'<a class="butAction" href="'.DOL_URL_ROOT.
'/ecm/dir_add_card.php?action=create&token='.newToken().
'&module='.$module.
'&catParent='.$section.
'">'.$langs->trans(
'ECMAddSection').
'</a>';
472 print
'<a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans(
"NotAllowed").
'">'.$langs->trans(
'ECMAddSection').
'</a>';
475 print dolGetButtonAction($langs->trans(
'Delete'),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=delete&token='.newToken().
'&module='.urlencode($module).
'§ion='.urlencode($section).($backtopage ?
'&backtopage='.urlencode($backtopage) :
''),
'', $permissiontoadd);
482if ($action ==
'deletefile') {
483 print $form->formconfirm($_SERVER[
"PHP_SELF"].
'?section='.urlencode(
GETPOST(
"section",
'alpha')).
'&urlfile='.urlencode(
GETPOST(
"urlfile")).($backtopage ?
'&backtopage='.urlencode($backtopage) :
''), $langs->trans(
'DeleteFile'), $langs->trans(
'ConfirmDeleteFile'),
'confirm_deletefile');
487if ($action ==
'delete' || $action ==
'delete_dir') {
488 $relativepathwithoutslash = preg_replace(
'/[\/]$/',
'', $relativepath);
491 if (count($filearrayall) > 0) {
492 $langs->load(
"other");
493 $formquestion = array(
494 array(
'type' =>
'checkbox',
'name' =>
'deletedirrecursive',
'label' => $langs->trans(
"ContentOfDirectoryIsNotEmpty").
'<br>'.$langs->trans(
"DeleteAlsoContentRecursively"),
'value' =>
'0')
498 print $form->formconfirm($_SERVER[
"PHP_SELF"].
'?section='.urlencode(
GETPOST(
'section',
'alpha')).
'&module='.$module.($backtopage ?
'&backtopage='.urlencode($backtopage) :
''), $langs->trans(
'DeleteSection'), $langs->trans(
'ConfirmDeleteSection', $relativepathwithoutslash),
'confirm_deletedir', $formquestion, 1, 1);
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage ECM directories.
Class to manage Dolibarr users.
ecm_prepare_head($object, $module='ecm', $section='')
Prepare array with list of tabs.
dol_filemtime($pathoffile)
Return time of a file.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_delete_dir($dir, $nophperrors=0)
Remove a directory (not recursive, so content must be empty).
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0, $level=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_unescapefile($filename)
Unescape a file submitted by upload.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_move_uploaded_file($src_file, $dest_file, $allowoverwrite, $disablevirusscan=0, $uploaderrorcode=0, $nohook=0, $keyforsourcefile='addedfile', $upload_dir='', $mode=0)
Check validity of a file upload from an GUI page, and move it to its final destination.
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formatted size.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_nl2br($stringtoencode, $nl2brmode=0, $forxml=false)
Replace CRLF in string with a HTML BR tag.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.