dolibarr 21.0.0-alpha
index_auto.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2008-2014 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2008-2010 Regis Houssin <regis.houssin@inodbox.com>
4 * Copyright (C) 2016 Alexandre Spangaro <aspangaro@open-dsi.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28// Load Dolibarr environment
29require '../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/ecm.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/treeview.lib.php';
34require_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmdirectory.class.php';
35
36// Load translation files required by the page
37$langs->loadLangs(array("ecm", "companies", "other", "users", "orders", "propal", "bills", "contracts"));
38
39// Get parameters
40$socid = GETPOSTINT('socid');
41$action = GETPOST('action', 'aZ09');
42$section = GETPOSTINT('section') ? GETPOSTINT('section') : GETPOSTINT('section_id');
43$module = GETPOST('module', 'alpha');
44if (!$section) {
45 $section = 0;
46}
47$section_dir = GETPOST('section_dir', 'alpha');
48
49$search_doc_ref = GETPOST('search_doc_ref', 'alpha');
50
51$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
52$sortfield = GETPOST('sortfield', 'aZ09comma');
53$sortorder = GETPOST('sortorder', 'aZ09comma');
54$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
55if (empty($page) || $page == -1) {
56 $page = 0;
57} // If $page is not defined, or '' or -1
58$offset = $limit * $page;
59$pageprev = $page - 1;
60$pagenext = $page + 1;
61if (!$sortorder) {
62 $sortorder = "ASC";
63}
64if (!$sortfield) {
65 $sortfield = "fullname";
66}
67if ($module == 'invoice_supplier' && $sortfield == "fullname") {
68 $sortfield = "level1name";
69}
70
71$ecmdir = new EcmDirectory($db);
72if ($section) {
73 $result = $ecmdir->fetch($section);
74 if (!($result > 0)) {
75 dol_print_error($db, $ecmdir->error);
76 exit;
77 }
78}
79
80$form = new Form($db);
81$ecmdirstatic = new EcmDirectory($db);
82$userstatic = new User($db);
83
84$error = 0;
85
86// Security check
87if ($user->socid) {
88 $socid = $user->socid;
89}
90
91// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
92$hookmanager->initHooks(array('ecmautocard', 'globalcard'));
93
94$result = restrictedArea($user, 'ecm', 0);
95
96
97/*
98 * Actions
99 */
100
101// Purge search criteria
102if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
103 $search_doc_ref = '';
104}
105
106// Add directory
107if ($action == 'add' && $user->hasRight('ecm', 'setup')) {
108 $ecmdir->ref = 'NOTUSEDYET';
109 $ecmdir->label = GETPOST("label");
110 $ecmdir->description = GETPOST("desc");
111
112 $id = $ecmdir->create($user);
113 if ($id > 0) {
114 header("Location: ".$_SERVER["PHP_SELF"]);
115 exit;
116 } else {
117 setEventMessages('Error '.$langs->trans($ecmdir->error), null, 'errors');
118 $action = "create";
119 }
120
121 clearstatcache();
122}
123
124// Remove file
125if ($action == 'confirm_deletefile' && $user->hasRight('ecm', 'upload')) {
126 if (GETPOST('confirm') == 'yes') {
127 $langs->load("other");
128 if ($section) {
129 $result = $ecmdir->fetch($section);
130 if (!($result > 0)) {
131 dol_print_error($db, $ecmdir->error);
132 exit;
133 }
134 $relativepath = $ecmdir->getRelativePath();
135 } else {
136 $relativepath = '';
137 }
138 $upload_dir = $conf->ecm->dir_output.($relativepath ? '/'.$relativepath : '');
139 $file = $upload_dir."/".GETPOST('urlfile');
140
141 $ret = dol_delete_file($file);
142 if ($ret) {
143 setEventMessages($langs->trans("FileWasRemoved", GETPOST('urlfile')), null, 'mesgs');
144 } else {
145 setEventMessages($langs->trans("ErrorFailToDeleteFile", GETPOST('urlfile')), null, 'errors');
146 }
147
148 $result = $ecmdir->changeNbOfFiles('-');
149
150 clearstatcache();
151 }
152 $action = 'file_manager';
153}
154
155// Remove directory
156if ($action == 'confirm_deletesection' && GETPOST('confirm') == 'yes' && $user->hasRight('ecm', 'setup')) {
157 $result = $ecmdir->delete($user);
158 setEventMessages($langs->trans("ECMSectionWasRemoved", $ecmdir->label), null, 'mesgs');
159
160 clearstatcache();
161}
162
163// Refresh directory view
164// This refresh list of dirs, not list of files (for performance reason). List of files is refresh only if dir was not synchronized.
165// To refresh content of dir with cache, just open the dir in edit mode.
166if ($action == 'refreshmanual' && $user->hasRight('ecm', 'read')) {
167 $ecmdirtmp = new EcmDirectory($db);
168
169 // This part of code is same than into file ecm/ajax/ecmdatabase.php TODO Remove duplicate
170 clearstatcache();
171
172 $diroutputslash = str_replace('\\', '/', $conf->ecm->dir_output);
173 $diroutputslash .= '/';
174
175 // Scan directory tree on disk
176 $disktree = dol_dir_list($conf->ecm->dir_output, 'directories', 1, '', '^temp$', '', 0, 0);
177
178 // Scan directory tree in database
179 $sqltree = $ecmdirstatic->get_full_arbo(0);
180
181 $adirwascreated = 0;
182
183 // Now we compare both trees to complete missing trees into database
184 //var_dump($disktree);
185 //var_dump($sqltree);
186 foreach ($disktree as $dirdesc) { // Loop on tree onto disk
187 $dirisindatabase = 0;
188 foreach ($sqltree as $dirsqldesc) {
189 if ($conf->ecm->dir_output.'/'.$dirsqldesc['fullrelativename'] == $dirdesc['fullname']) {
190 $dirisindatabase = 1;
191 break;
192 }
193 }
194
195 if (!$dirisindatabase) {
196 $txt = "Directory found on disk ".$dirdesc['fullname'].", not found into database so we add it";
197 dol_syslog($txt);
198 //print $txt."<br>\n";
199
200 // We must first find the fk_parent of directory to create $dirdesc['fullname']
201 $fk_parent = -1;
202 $relativepathmissing = str_replace($diroutputslash, '', $dirdesc['fullname']);
203 $relativepathtosearchparent = $relativepathmissing;
204 //dol_syslog("Try to find parent id for directory ".$relativepathtosearchparent);
205 if (preg_match('/\//', $relativepathtosearchparent)) {
206 //while (preg_match('/\//',$relativepathtosearchparent))
207 $relativepathtosearchparent = preg_replace('/\/[^\/]*$/', '', $relativepathtosearchparent);
208 $txt = "Is relative parent path ".$relativepathtosearchparent." for ".$relativepathmissing." found in sql tree ?";
209 dol_syslog($txt);
210 //print $txt." -> ";
211 $parentdirisindatabase = 0;
212 foreach ($sqltree as $dirsqldesc) {
213 if ($dirsqldesc['fullrelativename'] == $relativepathtosearchparent) {
214 $parentdirisindatabase = $dirsqldesc['id'];
215 break;
216 }
217 }
218 if ($parentdirisindatabase > 0) {
219 dol_syslog("Yes with id ".$parentdirisindatabase);
220 //print "Yes with id ".$parentdirisindatabase."<br>\n";
221 $fk_parent = $parentdirisindatabase;
222 //break; // We found parent, we can stop the while loop
223 } else {
224 dol_syslog("No");
225 //print "No<br>\n";
226 }
227 } else {
228 dol_syslog("Parent is root");
229 $fk_parent = 0; // Parent is root
230 }
231
232 if ($fk_parent >= 0) {
233 $ecmdirtmp->ref = 'NOTUSEDYET';
234 $ecmdirtmp->label = dol_basename($dirdesc['fullname']);
235 $ecmdirtmp->description = '';
236 $ecmdirtmp->fk_parent = $fk_parent;
237
238 $txt = "We create directory ".$ecmdirtmp->label." with parent ".$fk_parent;
239 dol_syslog($txt);
240 //print $ecmdirtmp->cachenbofdoc."<br>\n";exit;
241 $id = $ecmdirtmp->create($user);
242 if ($id > 0) {
243 $newdirsql = array('id' => $id,
244 'id_mere' => $ecmdirtmp->fk_parent,
245 'label' => $ecmdirtmp->label,
246 'description' => $ecmdirtmp->description,
247 'fullrelativename' => $relativepathmissing);
248 $sqltree[] = $newdirsql; // We complete fulltree for following loops
249 //var_dump($sqltree);
250 $adirwascreated = 1;
251 } else {
252 dol_syslog("Failed to create directory ".$ecmdirtmp->label, LOG_ERR);
253 }
254 } else {
255 $txt = "Parent of ".$dirdesc['fullname']." not found";
256 dol_syslog($txt);
257 //print $txt."<br>\n";
258 }
259 }
260 }
261
262 // Loop now on each sql tree to check if dir exists
263 foreach ($sqltree as $dirdesc) { // Loop on each sqltree to check dir is on disk
264 $dirtotest = $conf->ecm->dir_output.'/'.$dirdesc['fullrelativename'];
265 if (!dol_is_dir($dirtotest)) {
266 $ecmdirtmp->id = $dirdesc['id'];
267 $ecmdirtmp->delete($user, 'databaseonly');
268 //exit;
269 }
270 }
271
272 $sql = "UPDATE ".MAIN_DB_PREFIX."ecm_directories set cachenbofdoc = -1 WHERE cachenbofdoc < 0"; // If pb into cache counting, we set to value -1 = "unknown"
273 dol_syslog("sql = ".$sql);
274 $db->query($sql);
275
276 // If a directory was added, the fulltree array is not correctly completed and sorted, so we clean
277 // it to be sure that fulltree array is not used without reloading it.
278 if ($adirwascreated) {
279 $sqltree = null;
280 }
281}
282
283
284
285/*
286 * View
287 */
288
289// Define height of file area (depends on $_SESSION["dol_screenheight"])
290//print $_SESSION["dol_screenheight"];
291$maxheightwin = (isset($_SESSION["dol_screenheight"]) && $_SESSION["dol_screenheight"] > 466) ? ($_SESSION["dol_screenheight"] - 136) : 660; // Also into index.php file
292
293$moreheadcss = '';
294$moreheadjs = '';
295
296//$morejs=array();
297$morejs = array('includes/jquery/plugins/blockUI/jquery.blockUI.js', 'core/js/blockUI.js'); // Used by ecm/tpl/enabledfiletreeajax.tpl.pgp
298if (!getDolGlobalString('MAIN_ECM_DISABLE_JS')) {
299 $morejs[] = "includes/jquery/plugins/jqueryFileTree/jqueryFileTree.js";
300}
301
302$moreheadjs .= '<script type="text/javascript">'."\n";
303$moreheadjs .= 'var indicatorBlockUI = \''.DOL_URL_ROOT."/theme/".$conf->theme."/img/working.gif".'\';'."\n";
304$moreheadjs .= '</script>'."\n";
305
306llxHeader($moreheadcss.$moreheadjs, $langs->trans("ECMArea"), '', '', 0, 0, $morejs, '', '', 'mod-ecm page-index_auto');
307
308
309// Add sections to manage
310$rowspan = 0;
311$sectionauto = array();
312if (!getDolGlobalString('ECM_AUTO_TREE_HIDEN')) {
313 if (isModEnabled("product") || isModEnabled("service")) {
314 $langs->load("products");
315 $rowspan++;
316 $sectionauto[] = array('position' => 10, 'level' => 1, 'module' => 'product', 'test' => (isModEnabled("product") || isModEnabled("service")), 'label' => $langs->trans("ProductsAndServices"), 'desc' => $langs->trans("ECMDocsByProducts"));
317 }
318 if (isModEnabled("societe")) {
319 $rowspan++;
320 $sectionauto[] = array('position' => 20, 'level' => 1, 'module' => 'company', 'test' => isModEnabled('societe'), 'label' => $langs->trans("ThirdParties"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("ThirdParties")));
321 }
322 if (isModEnabled("propal")) {
323 $rowspan++;
324 $sectionauto[] = array('position' => 30, 'level' => 1, 'module' => 'propal', 'test' => isModEnabled('propal'), 'label' => $langs->trans("Proposals"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Proposals")));
325 }
326 if (isModEnabled('contract')) {
327 $rowspan++;
328 $sectionauto[] = array('position' => 40, 'level' => 1, 'module' => 'contract', 'test' => isModEnabled('contract'), 'label' => $langs->trans("Contracts"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Contracts")));
329 }
330 if (isModEnabled('order')) {
331 $rowspan++;
332 $sectionauto[] = array('position' => 50, 'level' => 1, 'module' => 'order', 'test' => isModEnabled('order'), 'label' => $langs->trans("CustomersOrders"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Orders")));
333 }
334 if (isModEnabled('invoice')) {
335 $rowspan++;
336 $sectionauto[] = array('position' => 60, 'level' => 1, 'module' => 'invoice', 'test' => isModEnabled('invoice'), 'label' => $langs->trans("CustomersInvoices"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Invoices")));
337 }
338 if (isModEnabled('supplier_proposal')) {
339 $langs->load("supplier_proposal");
340 $rowspan++;
341 $sectionauto[] = array('position' => 70, 'level' => 1, 'module' => 'supplier_proposal', 'test' => isModEnabled('supplier_proposal'), 'label' => $langs->trans("SupplierProposals"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("SupplierProposals")));
342 }
343 if (isModEnabled("supplier_order")) {
344 $rowspan++;
345 $sectionauto[] = array('position' => 80, 'level' => 1, 'module' => 'order_supplier', 'test' => isModEnabled("supplier_order"), 'label' => $langs->trans("SuppliersOrders"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("PurchaseOrders")));
346 }
347 if (isModEnabled("supplier_invoice")) {
348 $rowspan++;
349 $sectionauto[] = array('position' => 90, 'level' => 1, 'module' => 'invoice_supplier', 'test' => isModEnabled("supplier_invoice"), 'label' => $langs->trans("SuppliersInvoices"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("SupplierInvoices")));
350 }
351 if (isModEnabled('tax')) {
352 $langs->load("compta");
353 $rowspan++;
354 $sectionauto[] = array('position' => 100, 'level' => 1, 'module' => 'tax', 'test' => isModEnabled('tax'), 'label' => $langs->trans("SocialContributions"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("SocialContributions")));
355 $rowspan++;
356 $sectionauto[] = array('position' => 110, 'level' => 1, 'module' => 'tax-vat', 'test' => isModEnabled('tax'), 'label' => $langs->trans("VAT"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("VAT")));
357 }
358 if (isModEnabled('salaries')) {
359 $langs->load("compta");
360 $rowspan++;
361 $sectionauto[] = array('position' => 120, 'level' => 1, 'module' => 'salaries', 'test' => isModEnabled('salaries'), 'label' => $langs->trans("Salaries"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Salaries")));
362 }
363 if (isModEnabled('project')) {
364 $rowspan++;
365 $sectionauto[] = array('position' => 130, 'level' => 1, 'module' => 'project', 'test' => isModEnabled('project'), 'label' => $langs->trans("Projects"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Projects")));
366 $rowspan++;
367 $sectionauto[] = array('position' => 140, 'level' => 1, 'module' => 'project_task', 'test' => isModEnabled('project'), 'label' => $langs->trans("Tasks"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Tasks")));
368 }
369 if (isModEnabled('intervention')) {
370 $langs->load("interventions");
371 $rowspan++;
372 $sectionauto[] = array('position' => 150, 'level' => 1, 'module' => 'fichinter', 'test' => isModEnabled('intervention'), 'label' => $langs->trans("Interventions"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Interventions")));
373 }
374 if (isModEnabled('expensereport')) {
375 $langs->load("trips");
376 $rowspan++;
377 $sectionauto[] = array('position' => 160, 'level' => 1, 'module' => 'expensereport', 'test' => isModEnabled('expensereport'), 'label' => $langs->trans("ExpenseReports"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("ExpenseReports")));
378 }
379 if (isModEnabled('holiday')) {
380 $langs->load("holiday");
381 $rowspan++;
382 $sectionauto[] = array('position' => 170, 'level' => 1, 'module' => 'holiday', 'test' => isModEnabled('holiday'), 'label' => $langs->trans("Holidays"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Holidays")));
383 }
384 if (isModEnabled("bank")) {
385 $langs->load("banks");
386 $rowspan++;
387 $sectionauto[] = array('position' => 180, 'level' => 1, 'module' => 'banque', 'test' => isModEnabled('bank'), 'label' => $langs->trans("BankAccount"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("BankAccount")));
388 $rowspan++;
389 $sectionauto[] = array('position' => 190, 'level' => 1, 'module' => 'chequereceipt', 'test' => isModEnabled('bank'), 'label' => $langs->trans("CheckReceipt"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("CheckReceipt")));
390 }
391 if (isModEnabled('mrp')) {
392 $langs->load("mrp");
393 $rowspan++;
394 $sectionauto[] = array('position' => 200, 'level' => 1, 'module' => 'mrp-mo', 'test' => isModEnabled('mrp'), 'label' => $langs->trans("MOs"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("ManufacturingOrders")));
395 }
396 if (isModEnabled('recruitment')) {
397 $langs->load("recruitment");
398 $rowspan++;
399 $sectionauto[] = array('position' => 210, 'level' => 1, 'module' => 'recruitment-recruitmentcandidature', 'test' => isModEnabled('recruitment'), 'label' => $langs->trans("Candidatures"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("JobApplications")));
400 }
401 $rowspan++;
402 $sectionauto[] = array('position' => 220, 'level' => 1, 'module' => 'user', 'test' => 1, 'label' => $langs->trans("Users"), 'desc' => $langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Users")));
403
404 $parameters = array();
405 $reshook = $hookmanager->executeHooks('addSectionECMAuto', $parameters);
406 if ($reshook > 0 && is_array($hookmanager->resArray) && count($hookmanager->resArray) > 0) {
407 $sectionauto[] = $hookmanager->resArray;
408 $rowspan += count($hookmanager->resArray);
409 }
410}
411
412$head = ecm_prepare_dasboard_head();
413print dol_get_fiche_head($head, 'index_auto', '', -1, '');
414
415
416
417// Confirm remove file (for non javascript users)
418if ($action == 'deletefile' && empty($conf->use_javascript_ajax)) {
419 print $form->formconfirm($_SERVER["PHP_SELF"].'?section='.$section.'&urlfile='.urlencode(GETPOST("urlfile")), $langs->trans('DeleteFile'), $langs->trans('ConfirmDeleteFile'), 'confirm_deletefile', '', '', 1);
420}
421
422// Start container of all panels
423?>
424<!-- Begin div id="containerlayout" -->
425<div id="containerlayout">
426<div id="ecm-layout-north" class="toolbar largebutton">
427<?php
428
429// Start top panel, toolbar
430print '<div class="inline-block toolbarbutton centpercent">';
431
432// Toolbar
433$url = ((!empty($conf->use_javascript_ajax) && !getDolGlobalString('MAIN_ECM_DISABLE_JS')) ? '#' : ($_SERVER["PHP_SELF"].'?action=refreshmanual'.($module ? '&amp;module='.$module : '').($section ? '&amp;section='.$section : '')));
434print '<a href="'.$url.'" class="inline-block valignmiddle toolbarbutton paddingtop" title="'.dol_escape_htmltag($langs->trans('Refresh')).'">';
435print img_picto('', 'refresh', 'id="refreshbutton"', 0, 0, 0, '', 'size15x marginrightonly');
436print '</a>';
437
438print '</div>';
439// End top panel, toolbar
440
441?>
442</div>
443<div id="ecm-layout-west" class="inline-block">
444<?php
445// Start left area
446
447
448// Confirmation de la suppression d'une ligne categorie
449if ($action == 'delete_section') {
450 print $form->formconfirm($_SERVER["PHP_SELF"].'?section='.$section, $langs->trans('DeleteSection'), $langs->trans('ConfirmDeleteSection', $ecmdir->label), 'confirm_deletesection', '', '', 1);
451}
452// End confirm
453
454
455if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'deletefile') {
456 print '<table class="liste centpercent noborder">'."\n";
457
458 print '<!-- Title for auto directories -->'."\n";
459 print '<tr class="liste_titre">'."\n";
460 print '<th class="liste_titre" align="left" colspan="6">';
461 print '&nbsp;'.$langs->trans("ECMSections");
462 print '</th></tr>';
463
464 $showonrightsize = '';
465
466 // Auto section
467 if (count($sectionauto)) {
468 $htmltooltip = $langs->trans("ECMAreaDesc2");
469 $htmltooltip .= '<br>'.$langs->trans("ECMAreaDesc2b");
470
471 $sectionauto = dol_sort_array($sectionauto, 'label', 'ASC', 1, 0);
472
473 print '<tr>';
474 print '<td colspan="6">';
475 print '<div id="filetreeauto" class="ecmfiletree"><ul class="ecmjqft">';
476
477 $arrayofmodulesforexternalusers = explode(',', getDolGlobalString('MAIN_MODULES_FOR_EXTERNAL'));
478
479 $nbofentries = 0;
480 $oldvallevel = 0;
481 foreach ($sectionauto as $key => $val) {
482 if (empty($val['test'])) {
483 continue; // If condition to show the ECM auto directory is ok
484 }
485
486 // External users are not allowed to see manual directories so we quit.
487 if ($user->socid > 0) {
488 // Check if dir is allowed to external users
489 //var_dump($conf->global->MAIN_MODULES_FOR_EXTERNAL);
490 if (! in_array($val['module'], $arrayofmodulesforexternalusers)) {
491 // Discard this entry
492 continue;
493 }
494 }
495
496 print '<li class="directory collapsed">';
497 print '<a class="fmdirlia jqft ecmjqft" href="'.$_SERVER["PHP_SELF"].'?module='.urlencode($val['module']).'">';
498 print dolPrintLabel($val['label']);
499 print '</a>';
500
501 print '<div class="ecmjqft">';
502 // Info
503 $htmltooltip = '<b>'.$langs->trans("ECMSection").'</b>: '.$val['label'].'<br>';
504 $htmltooltip .= '<b>'.$langs->trans("Type").'</b>: '.$langs->trans("ECMSectionAuto").'<br>';
505 $htmltooltip .= '<b>'.$langs->trans("ECMCreationUser").'</b>: '.$langs->trans("ECMTypeAuto").'<br>';
506 $htmltooltip .= '<b>'.$langs->trans("Description").'</b>: '.$val['desc'];
507 print $form->textwithpicto('', $htmltooltip, 1, 'info');
508 print '</div>';
509
510 print '</li>';
511
512 $nbofentries++;
513 }
514
515 print '</ul></div></td></tr>';
516 }
517
518 print "</table>";
519}
520
521
522// End left panel
523?>
524</div>
525<div id="ecm-layout-center" class="inline-block">
526<div class="pane-in ecm-in-layout-center">
527<div id="ecmfileview" class="ecmfileview">
528<?php
529// Start right panel
530
531$mode = 'noajax';
532$url = DOL_URL_ROOT.'/ecm/index_auto.php';
533include_once DOL_DOCUMENT_ROOT.'/core/ajax/ajaxdirpreview.php';
534
535
536// End right panel
537?>
538</div>
539</div>
540
541</div>
542</div> <!-- End div id="containerlayout" -->
543<?php
544// End of page
545
546if (!empty($conf->use_javascript_ajax) && !getDolGlobalString('MAIN_ECM_DISABLE_JS')) {
547 include DOL_DOCUMENT_ROOT.'/ecm/tpl/enablefiletreeajax.tpl.php';
548}
549
550
551print dol_get_fiche_end();
552
553llxFooter();
554
555$db->close();
$id
Definition account.php:39
print $object position
Definition edit.php:195
Class to manage ECM directories.
Class to manage generation of HTML components Only common components must be here.
Class to manage Dolibarr users.
llxFooter()
Footer empty.
Definition document.php:107
dol_basename($pathfile)
Make a basename working with all page code (default PHP basenamed fails with cyrillic).
Definition files.lib.php:38
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_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.
Definition files.lib.php:63
dol_is_dir($folder)
Test if filename is a directory.
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_end($notab=0)
Return tab footer of a card.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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.
dolPrintLabel($s)
Return a string label (so on 1 line only and that should not contains any HTML) ready to be output on...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
$conf db user
Active Directory does not allow anonymous connections.
Definition repair.php:141
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.