123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- <?php
- /* Copyright (C) 2008-2014 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2008-2010 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2016 Alexandre Spangaro <aspangaro@open-dsi.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/ecm/index_auto.php
- * \ingroup ecm
- * \brief Main page for ECM section area
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/ecm.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/treeview.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmdirectory.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array("ecm", "companies", "other", "users", "orders", "propal", "bills", "contracts"));
- // Security check
- if ($user->socid) {
- $socid = $user->socid;
- }
- $result = restrictedArea($user, 'ecm', 0);
- // Get parameters
- $socid = GETPOST('socid', 'int');
- $action = GETPOST('action', 'aZ09');
- $section = GETPOST('section', 'int') ?GETPOST('section', 'int') : GETPOST('section_id', 'int');
- $module = GETPOST('module', 'alpha');
- if (!$section) {
- $section = 0;
- }
- $section_dir = GETPOST('section_dir', 'alpha');
- $search_doc_ref = GETPOST('search_doc_ref', 'alpha');
- $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
- $sortfield = GETPOST('sortfield', 'aZ09comma');
- $sortorder = GETPOST('sortorder', 'aZ09comma');
- $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
- if (empty($page) || $page == -1) {
- $page = 0;
- } // If $page is not defined, or '' or -1
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (!$sortorder) {
- $sortorder = "ASC";
- }
- if (!$sortfield) {
- $sortfield = "fullname";
- }
- if ($module == 'invoice_supplier' && $sortfield == "fullname") {
- $sortfield = "level1name";
- }
- $ecmdir = new EcmDirectory($db);
- if ($section) {
- $result = $ecmdir->fetch($section);
- if (!$result > 0) {
- dol_print_error($db, $ecmdir->error);
- exit;
- }
- }
- $form = new Form($db);
- $ecmdirstatic = new EcmDirectory($db);
- $userstatic = new User($db);
- $error = 0;
- /*
- * Actions
- */
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('ecmautocard', 'globalcard'));
- // Purge search criteria
- if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
- $search_doc_ref = '';
- }
- // Add directory
- if ($action == 'add' && $user->rights->ecm->setup) {
- $ecmdir->ref = 'NOTUSEDYET';
- $ecmdir->label = GETPOST("label");
- $ecmdir->description = GETPOST("desc");
- $id = $ecmdir->create($user);
- if ($id > 0) {
- header("Location: ".$_SERVER["PHP_SELF"]);
- exit;
- } else {
- setEventMessages('Error '.$langs->trans($ecmdir->error), null, 'errors');
- $action = "create";
- }
- clearstatcache();
- }
- // Remove file
- if ($action == 'confirm_deletefile') {
- if (GETPOST('confirm') == 'yes') {
- $langs->load("other");
- if ($section) {
- $result = $ecmdir->fetch($section);
- if (!($result > 0)) {
- dol_print_error($db, $ecmdir->error);
- exit;
- }
- $relativepath = $ecmdir->getRelativePath();
- } else {
- $relativepath = '';
- }
- $upload_dir = $conf->ecm->dir_output.($relativepath ? '/'.$relativepath : '');
- $file = $upload_dir."/".GETPOST('urlfile'); // Do not use urldecode here ($_GET and $_POST are already decoded by PHP).
- $ret = dol_delete_file($file);
- if ($ret) {
- setEventMessages($langs->trans("FileWasRemoved", GETPOST('urlfile')), null, 'mesgs');
- } else {
- setEventMessages($langs->trans("ErrorFailToDeleteFile", GETPOST('urlfile')), null, 'errors');
- }
- $result = $ecmdir->changeNbOfFiles('-');
- clearstatcache();
- }
- $action = 'file_manager';
- }
- // Remove directory
- if ($action == 'confirm_deletesection' && GETPOST('confirm') == 'yes') {
- $result = $ecmdir->delete($user);
- setEventMessages($langs->trans("ECMSectionWasRemoved", $ecmdir->label), null, 'mesgs');
- clearstatcache();
- }
- // Refresh directory view
- // This refresh list of dirs, not list of files (for preformance reason). List of files is refresh only if dir was not synchronized.
- // To refresh content of dir with cache, just open the dir in edit mode.
- if ($action == 'refreshmanual') {
- $ecmdirtmp = new EcmDirectory($db);
- // This part of code is same than into file ecm/ajax/ecmdatabase.php TODO Remove duplicate
- clearstatcache();
- $diroutputslash = str_replace('\\', '/', $conf->ecm->dir_output);
- $diroutputslash .= '/';
- // Scan directory tree on disk
- $disktree = dol_dir_list($conf->ecm->dir_output, 'directories', 1, '', '^temp$', '', '', 0);
- // Scan directory tree in database
- $sqltree = $ecmdirstatic->get_full_arbo(0);
- $adirwascreated = 0;
- // Now we compare both trees to complete missing trees into database
- //var_dump($disktree);
- //var_dump($sqltree);
- foreach ($disktree as $dirdesc) { // Loop on tree onto disk
- $dirisindatabase = 0;
- foreach ($sqltree as $dirsqldesc) {
- if ($conf->ecm->dir_output.'/'.$dirsqldesc['fullrelativename'] == $dirdesc['fullname']) {
- $dirisindatabase = 1;
- break;
- }
- }
- if (!$dirisindatabase) {
- $txt = "Directory found on disk ".$dirdesc['fullname'].", not found into database so we add it";
- dol_syslog($txt);
- //print $txt."<br>\n";
- // We must first find the fk_parent of directory to create $dirdesc['fullname']
- $fk_parent = -1;
- $relativepathmissing = str_replace($diroutputslash, '', $dirdesc['fullname']);
- $relativepathtosearchparent = $relativepathmissing;
- //dol_syslog("Try to find parent id for directory ".$relativepathtosearchparent);
- if (preg_match('/\//', $relativepathtosearchparent)) {
- //while (preg_match('/\//',$relativepathtosearchparent))
- $relativepathtosearchparent = preg_replace('/\/[^\/]*$/', '', $relativepathtosearchparent);
- $txt = "Is relative parent path ".$relativepathtosearchparent." for ".$relativepathmissing." found in sql tree ?";
- dol_syslog($txt);
- //print $txt." -> ";
- $parentdirisindatabase = 0;
- foreach ($sqltree as $dirsqldesc) {
- if ($dirsqldesc['fullrelativename'] == $relativepathtosearchparent) {
- $parentdirisindatabase = $dirsqldesc['id'];
- break;
- }
- }
- if ($parentdirisindatabase > 0) {
- dol_syslog("Yes with id ".$parentdirisindatabase);
- //print "Yes with id ".$parentdirisindatabase."<br>\n";
- $fk_parent = $parentdirisindatabase;
- //break; // We found parent, we can stop the while loop
- } else {
- dol_syslog("No");
- //print "No<br>\n";
- }
- } else {
- dol_syslog("Parent is root");
- $fk_parent = 0; // Parent is root
- }
- if ($fk_parent >= 0) {
- $ecmdirtmp->ref = 'NOTUSEDYET';
- $ecmdirtmp->label = dol_basename($dirdesc['fullname']);
- $ecmdirtmp->description = '';
- $ecmdirtmp->fk_parent = $fk_parent;
- $txt = "We create directory ".$ecmdirtmp->label." with parent ".$fk_parent;
- dol_syslog($txt);
- //print $ecmdirtmp->cachenbofdoc."<br>\n";exit;
- $id = $ecmdirtmp->create($user);
- if ($id > 0) {
- $newdirsql = array('id'=>$id,
- 'id_mere'=>$ecmdirtmp->fk_parent,
- 'label'=>$ecmdirtmp->label,
- 'description'=>$ecmdirtmp->description,
- 'fullrelativename'=>$relativepathmissing);
- $sqltree[] = $newdirsql; // We complete fulltree for following loops
- //var_dump($sqltree);
- $adirwascreated = 1;
- } else {
- dol_syslog("Failed to create directory ".$ecmdirtmp->label, LOG_ERR);
- }
- } else {
- $txt = "Parent of ".$dirdesc['fullname']." not found";
- dol_syslog($txt);
- //print $txt."<br>\n";
- }
- }
- }
- // Loop now on each sql tree to check if dir exists
- foreach ($sqltree as $dirdesc) { // Loop on each sqltree to check dir is on disk
- $dirtotest = $conf->ecm->dir_output.'/'.$dirdesc['fullrelativename'];
- if (!dol_is_dir($dirtotest)) {
- $ecmdirtmp->id = $dirdesc['id'];
- $ecmdirtmp->delete($user, 'databaseonly');
- //exit;
- }
- }
- $sql = "UPDATE ".MAIN_DB_PREFIX."ecm_directories set cachenbofdoc = -1 WHERE cachenbofdoc < 0"; // If pb into cahce counting, we set to value -1 = "unknown"
- dol_syslog("sql = ".$sql);
- $db->query($sql);
- // If a directory was added, the fulltree array is not correctly completed and sorted, so we clean
- // it to be sure that fulltree array is not used without reloading it.
- if ($adirwascreated) {
- $sqltree = null;
- }
- }
- /*
- * View
- */
- // Define height of file area (depends on $_SESSION["dol_screenheight"])
- //print $_SESSION["dol_screenheight"];
- $maxheightwin = (isset($_SESSION["dol_screenheight"]) && $_SESSION["dol_screenheight"] > 466) ? ($_SESSION["dol_screenheight"] - 136) : 660; // Also into index.php file
- $moreheadcss = '';
- $moreheadjs = '';
- //$morejs=array();
- $morejs = array('includes/jquery/plugins/blockUI/jquery.blockUI.js', 'core/js/blockUI.js'); // Used by ecm/tpl/enabledfiletreeajax.tpl.pgp
- if (empty($conf->global->MAIN_ECM_DISABLE_JS)) {
- $morejs[] = "includes/jquery/plugins/jqueryFileTree/jqueryFileTree.js";
- }
- $moreheadjs .= '<script type="text/javascript">'."\n";
- $moreheadjs .= 'var indicatorBlockUI = \''.DOL_URL_ROOT."/theme/".$conf->theme."/img/working.gif".'\';'."\n";
- $moreheadjs .= '</script>'."\n";
- llxHeader($moreheadcss.$moreheadjs, $langs->trans("ECMArea"), '', '', '', '', $morejs, '', 0, 0);
- // Add sections to manage
- $rowspan = 0;
- $sectionauto = array();
- if (!empty($conf->global->ECM_AUTO_TREE_ENABLED)) {
- if (!empty($conf->product->enabled) || !empty($conf->service->enabled)) {
- $langs->load("products");
- $rowspan++; $sectionauto[] = array('position'=>10, 'level'=>1, 'module'=>'product', 'test'=>(!empty($conf->product->enabled) || !empty($conf->service->enabled)), 'label'=>$langs->trans("ProductsAndServices"), 'desc'=>$langs->trans("ECMDocsByProducts"));
- }
- if (!empty($conf->societe->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>20, 'level'=>1, 'module'=>'company', 'test'=>$conf->societe->enabled, 'label'=>$langs->trans("ThirdParties"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("ThirdParties")));
- }
- if (!empty($conf->propal->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>30, 'level'=>1, 'module'=>'propal', 'test'=>$conf->propal->enabled, 'label'=>$langs->trans("Proposals"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Proposals")));
- }
- if (!empty($conf->contrat->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>40, 'level'=>1, 'module'=>'contract', 'test'=>$conf->contrat->enabled, 'label'=>$langs->trans("Contracts"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Contracts")));
- }
- if (!empty($conf->commande->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>50, 'level'=>1, 'module'=>'order', 'test'=>$conf->commande->enabled, 'label'=>$langs->trans("CustomersOrders"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Orders")));
- }
- if (!empty($conf->facture->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>60, 'level'=>1, 'module'=>'invoice', 'test'=>$conf->facture->enabled, 'label'=>$langs->trans("CustomersInvoices"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Invoices")));
- }
- if (!empty($conf->supplier_proposal->enabled)) {
- $langs->load("supplier_proposal");
- $rowspan++; $sectionauto[] = array('position'=>70, 'level'=>1, 'module'=>'supplier_proposal', 'test'=>$conf->supplier_proposal->enabled, 'label'=>$langs->trans("SupplierProposals"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("SupplierProposals")));
- }
- if (!empty($conf->fournisseur->enabled) && empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) || !empty($conf->supplier_order->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>80, 'level'=>1, 'module'=>'order_supplier', 'test'=>(!empty($conf->fournisseur->enabled) && empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) || !empty($conf->supplier_order->enabled)), 'label'=>$langs->trans("SuppliersOrders"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("PurchaseOrders")));
- }
- if (!empty($conf->fournisseur->enabled) && empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) || !empty($conf->supplier_invoice->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>90, 'level'=>1, 'module'=>'invoice_supplier', 'test'=>(!empty($conf->fournisseur->enabled) && empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) || !empty($conf->supplier_invoice->enabled)), 'label'=>$langs->trans("SuppliersInvoices"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("SupplierInvoices")));
- }
- if (!empty($conf->tax->enabled)) {
- $langs->load("compta");
- $rowspan++; $sectionauto[] = array('position'=>100, 'level'=>1, 'module'=>'tax', 'test'=>$conf->tax->enabled, 'label'=>$langs->trans("SocialContributions"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("SocialContributions")));
- $rowspan++; $sectionauto[] = array('position'=>110, 'level'=>1, 'module'=>'tax-vat', 'test'=>$conf->tax->enabled, 'label'=>$langs->trans("VAT"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("VAT")));
- }
- if (!empty($conf->salaries->enabled)) {
- $langs->load("compta");
- $rowspan++; $sectionauto[] = array('position'=>120, 'level'=>1, 'module'=>'salaries', 'test'=>$conf->salaries->enabled, 'label'=>$langs->trans("Salaries"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Salaries")));
- }
- if (!empty($conf->projet->enabled)) {
- $rowspan++; $sectionauto[] = array('position'=>130, 'level'=>1, 'module'=>'project', 'test'=>$conf->projet->enabled, 'label'=>$langs->trans("Projects"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Projects")));
- $rowspan++; $sectionauto[] = array('position'=>140, 'level'=>1, 'module'=>'project_task', 'test'=>$conf->projet->enabled, 'label'=>$langs->trans("Tasks"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Tasks")));
- }
- if (!empty($conf->ficheinter->enabled)) {
- $langs->load("interventions");
- $rowspan++; $sectionauto[] = array('position'=>150, 'level'=>1, 'module'=>'fichinter', 'test'=>$conf->ficheinter->enabled, 'label'=>$langs->trans("Interventions"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Interventions")));
- }
- if (!empty($conf->expensereport->enabled)) {
- $langs->load("trips");
- $rowspan++; $sectionauto[] = array('position'=>160, 'level'=>1, 'module'=>'expensereport', 'test'=>$conf->expensereport->enabled, 'label'=>$langs->trans("ExpenseReports"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("ExpenseReports")));
- }
- if (!empty($conf->holiday->enabled)) {
- $langs->load("holiday");
- $rowspan++; $sectionauto[] = array('position'=>170, 'level'=>1, 'module'=>'holiday', 'test'=>$conf->holiday->enabled, 'label'=>$langs->trans("Holidays"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Holidays")));
- }
- if (!empty($conf->banque->enabled)) {
- $langs->load("banks");
- $rowspan++; $sectionauto[] = array('position'=>180, 'level'=>1, 'module'=>'banque', 'test'=>$conf->banque->enabled, 'label'=>$langs->trans("BankAccount"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("BankAccount")));
- $rowspan++; $sectionauto[] = array('position'=>190, 'level'=>1, 'module'=>'chequereceipt', 'test'=>$conf->banque->enabled, 'label'=>$langs->trans("CheckReceipt"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("CheckReceipt")));
- }
- if (!empty($conf->mrp->enabled)) {
- $langs->load("mrp");
- $rowspan++; $sectionauto[] = array('position'=>200, 'level'=>1, 'module'=>'mrp-mo', 'test'=>$conf->mrp->enabled, 'label'=>$langs->trans("MOs"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("ManufacturingOrders")));
- }
- if (!empty($conf->recruitment->enabled)) {
- $langs->load("recruitment");
- $rowspan++; $sectionauto[] = array('position'=>210, 'level'=>1, 'module'=>'recruitment-recruitmentcandidature', 'test'=>$conf->recruitment->enabled, 'label'=>$langs->trans("Candidatures"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("JobApplications")));
- }
- $rowspan++; $sectionauto[] = array('position'=>220, 'level'=>1, 'module'=>'user', 'test'=>1, 'label'=>$langs->trans("Users"), 'desc'=>$langs->trans("ECMDocsBy", $langs->transnoentitiesnoconv("Users")));
- $parameters = array();
- $reshook = $hookmanager->executeHooks('addSectionECMAuto', $parameters);
- if ($reshook > 0 && is_array($hookmanager->resArray) && count($hookmanager->resArray) > 0) {
- $sectionauto[] = $hookmanager->resArray;
- $rowspan += count($hookmanager->resArray);
- }
- }
- $head = ecm_prepare_dasboard_head('');
- print dol_get_fiche_head($head, 'index_auto', '', -1, '');
- // Confirm remove file (for non javascript users)
- if ($action == 'deletefile' && empty($conf->use_javascript_ajax)) {
- print $form->formconfirm($_SERVER["PHP_SELF"].'?section='.$section.'&urlfile='.urlencode($_GET["urlfile"]), $langs->trans('DeleteFile'), $langs->trans('ConfirmDeleteFile'), 'confirm_deletefile', '', '', 1);
- }
- // Start container of all panels
- ?>
- <!-- Begin div id="containerlayout" -->
- <div id="containerlayout">
- <div id="ecm-layout-north" class="toolbar largebutton">
- <?php
- // Start top panel, toolbar
- print '<div class="inline-block toolbarbutton centpercent">';
- // Toolbar
- $url = ((!empty($conf->use_javascript_ajax) && empty($conf->global->MAIN_ECM_DISABLE_JS)) ? '#' : ($_SERVER["PHP_SELF"].'?action=refreshmanual'.($module ? '&module='.$module : '').($section ? '&section='.$section : '')));
- print '<a href="'.$url.'" class="inline-block valignmiddle toolbarbutton paddingtop" title="'.dol_escape_htmltag($langs->trans('Refresh')).'">';
- print img_picto('', 'refresh', 'id="refreshbutton"', false, 0, 0, '', 'size15x marginrightonly');
- print '</a>';
- print '</div>';
- // End top panel, toolbar
- ?>
- </div>
- <div id="ecm-layout-west" class="inline-block">
- <?php
- // Start left area
- // Confirmation de la suppression d'une ligne categorie
- if ($action == 'delete_section') {
- print $form->formconfirm($_SERVER["PHP_SELF"].'?section='.$section, $langs->trans('DeleteSection'), $langs->trans('ConfirmDeleteSection', $ecmdir->label), 'confirm_deletesection', '', '', 1);
- }
- // End confirm
- if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'deletefile') {
- print '<table class="liste centpercent">'."\n";
- print '<!-- Title for auto directories -->'."\n";
- print '<tr class="liste_titre">'."\n";
- print '<th class="liste_titre" align="left" colspan="6">';
- print ' '.$langs->trans("ECMSections");
- print '</th></tr>';
- $showonrightsize = '';
- // Auto section
- if (count($sectionauto)) {
- $htmltooltip = $langs->trans("ECMAreaDesc2");
- $sectionauto = dol_sort_array($sectionauto, 'label', 'ASC', true, false);
- print '<tr>';
- print '<td colspan="6">';
- print '<div id="filetreeauto" class="ecmfiletree"><ul class="ecmjqft">';
- $nbofentries = 0;
- $oldvallevel = 0;
- foreach ($sectionauto as $key => $val) {
- if (empty($val['test'])) {
- continue; // If condition to show the ECM auto directory is ok
- }
- print '<li class="directory collapsed">';
- if (!empty($conf->use_javascript_ajax) && empty($conf->global->MAIN_ECM_DISABLE_JS)) {
- print '<a class="fmdirlia jqft ecmjqft" href="'.$_SERVER["PHP_SELF"].'?module='.urlencode($val['module']).'">';
- print $val['label'];
- print '</a>';
- } else {
- print '<a class="fmdirlia jqft ecmjqft" href="'.$_SERVER["PHP_SELF"].'?module='.urlencode($val['module']).'">';
- print $val['label'];
- print '</a>';
- }
- print '<div class="ecmjqft">';
- // Info
- $htmltooltip = '<b>'.$langs->trans("ECMSection").'</b>: '.$val['label'].'<br>';
- $htmltooltip .= '<b>'.$langs->trans("Type").'</b>: '.$langs->trans("ECMSectionAuto").'<br>';
- $htmltooltip .= '<b>'.$langs->trans("ECMCreationUser").'</b>: '.$langs->trans("ECMTypeAuto").'<br>';
- $htmltooltip .= '<b>'.$langs->trans("Description").'</b>: '.$val['desc'];
- print $form->textwithpicto('', $htmltooltip, 1, 'info');
- print '</div>';
- print '</li>';
- $nbofentries++;
- }
- print '</ul></div></td></tr>';
- }
- print "</table>";
- }
- // End left panel
- ?>
- </div>
- <div id="ecm-layout-center" class="inline-block">
- <div class="pane-in ecm-in-layout-center">
- <div id="ecmfileview" class="ecmfileview">
- <?php
- // Start right panel
- $mode = 'noajax';
- $url = DOL_URL_ROOT.'/ecm/index_auto.php';
- include_once DOL_DOCUMENT_ROOT.'/core/ajax/ajaxdirpreview.php';
- // End right panel
- ?>
- </div>
- </div>
- </div>
- </div> <!-- End div id="containerlayout" -->
- <?php
- // End of page
- if (!empty($conf->use_javascript_ajax) && empty($conf->global->MAIN_ECM_DISABLE_JS)) {
- include DOL_DOCUMENT_ROOT.'/ecm/tpl/enablefiletreeajax.tpl.php';
- }
- print dol_get_fiche_end();
- llxFooter();
- $db->close();
|