1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186 |
- <?php
- /* Copyright (c) 2008-2013 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (c) 2010 Juanjo Menent <jmenent@2byte.es>
- * Copyright (c) 2013 Charles-Fr BENKE <charles.fr@benke.fr>
- * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/core/class/html.formfile.class.php
- * \ingroup core
- * \brief File of class to offer components to list and upload files
- */
- /**
- * Class to offer components to list and upload files
- */
- class FormFile
- {
- var $db;
- var $error;
- var $numoffiles;
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- function __construct($db)
- {
- $this->db = $db;
- $this->numoffiles=0;
- return 1;
- }
- /**
- * Show form to upload a new file
- *
- * @param string $url Url
- * @param string $title Title zone (Title or '' or 'none')
- * @param int $addcancel 1=Add 'Cancel' button
- * @param int $sectionid If upload must be done inside a particular ECM section
- * @param int $perm Value of permission to allow upload
- * @param int $size Length of input file area
- * @param Object $object Object to use (when attachment is done on an element)
- * @param string $options Add an option column
- * @param boolean $useajax Use fileupload ajax (0=never, 1=if enabled, 2=always whatever is option). 2 should never be used.
- * @param string $savingdocmask Mask to use to define output filename. For example 'XXXXX-__YYYYMMDD__-__file__'
- * @param string $linkfiles 1=Also add form to link files, 0=Do not show form to link files
- * @param string $htmlname Name and id of HTML form
- * @return int <0 if KO, >0 if OK
- */
- function form_attach_new_file($url, $title='', $addcancel=0, $sectionid=0, $perm=1, $size=50, $object='', $options='', $useajax=1, $savingdocmask='', $linkfiles=1, $htmlname='formuserfile')
- {
- global $conf,$langs, $hookmanager;
- $hookmanager->initHooks(array('formfile'));
- if (! empty($conf->browser->phone)) return 0;
- if ((! empty($conf->global->MAIN_USE_JQUERY_FILEUPLOAD) && $useajax) || ($useajax==2))
- {
- // TODO: Cheeck this works with 2 forms on same page
- // TODO: Cheeck this works with GED module, otherwise, force useajax to 0
- // TODO: This does not support option savingdocmask
- // TODO: This break feature to upload links too
- return $this->_formAjaxFileUpload($object);
- }
- else
- {
- $maxlength=$size;
- $out = "\n\n<!-- Start form attach new file -->\n";
- if (empty($title)) $title=$langs->trans("AttachANewFile");
- if ($title != 'none') print_titre($title);
- $out .= '<form name="'.$htmlname.'" id="'.$htmlname.'" action="'.$url.'" enctype="multipart/form-data" method="POST">';
- $out .= '<input type="hidden" id="'.$htmlname.'_section_dir" name="section_dir" value="">';
- $out .= '<input type="hidden" id="'.$htmlname.'_section_id" name="section_id" value="'.$sectionid.'">';
- $out .= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- $out .= '<table width="100%" class="nobordernopadding">';
- $out .= '<tr>';
- if (! empty($options)) $out .= '<td>'.$options.'</td>';
- $out .= '<td valign="middle" class="nowrap">';
- $max=$conf->global->MAIN_UPLOAD_DOC; // En Kb
- $maxphp=@ini_get('upload_max_filesize'); // En inconnu
- if (preg_match('/m$/i',$maxphp)) $maxphp=$maxphp*1024;
- // Now $max and $maxphp are in Kb
- if ($maxphp > 0) $max=min($max,$maxphp);
- if ($max > 0)
- {
- $out .= '<input type="hidden" name="max_file_size" value="'.($max*1024).'">';
- }
- $out .= '<input class="flat" type="file" name="userfile" size="'.$maxlength.'"';
- $out .= (empty($conf->global->MAIN_UPLOAD_DOC) || empty($perm)?' disabled="disabled"':'');
- $out .= '>';
- $out .= ' ';
- $out .= '<input type="submit" class="button" name="sendit" value="'.$langs->trans("Upload").'"';
- $out .= (empty($conf->global->MAIN_UPLOAD_DOC) || empty($perm)?' disabled="disabled"':'');
- $out .= '>';
- if ($addcancel)
- {
- $out .= ' ';
- $out .= '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
- }
- if (! empty($conf->global->MAIN_UPLOAD_DOC))
- {
- if ($perm)
- {
- $langs->load('other');
- $out .= ' ('.$langs->trans("MaxSize").': '.$max.' '.$langs->trans("Kb");
- $out .= ' '.info_admin($langs->trans("ThisLimitIsDefinedInSetup",$max,$maxphp),1);
- $out .= ')';
- }
- }
- else
- {
- $out .= ' ('.$langs->trans("UploadDisabled").')';
- }
- $out .= "</td></tr>";
- if ($savingdocmask)
- {
- $out .= '<tr>';
- if (! empty($options)) $out .= '<td>'.$options.'</td>';
- $out .= '<td valign="middle" class="nowrap">';
- $out .= '<input type="checkbox" checked="checked" name="savingdocmask" value="'.dol_escape_js($savingdocmask).'"> '.$langs->trans("SaveUploadedFileWithMask", preg_replace('/__file__/',$langs->transnoentitiesnoconv("OriginFileName"),$savingdocmask), $langs->transnoentitiesnoconv("OriginFileName"));
- $out .= '</td>';
- $out .= '</tr>';
- }
- $out .= "</table>";
- $out .= '</form>';
- if (empty($sectionid)) $out .= '<br>';
- $out .= "\n<!-- End form attach new file -->\n";
- if ($linkfiles)
- {
- $out .= "\n<!-- Start form attach new link -->\n";
- $langs->load('link');
- $title = $langs->trans("LinkANewFile");
- $out .= load_fiche_titre($title, null, null);
- $out .= '<form name="'.$htmlname.'_link" id="'.$htmlname.'_link" action="'.$url.'" method="POST">';
- $out .= '<input type="hidden" id="'.$htmlname.'_link_section_dir" name="link_section_dir" value="">';
- $out .= '<input type="hidden" id="'.$htmlname.'_link_section_id" name="link_section_id" value="'.$sectionid.'">';
- $out .= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- $out .= '<table width="100%" class="nobordernopadding">';
- $out .= '<tr>';
- $out .= '<td valign="middle" class="nowrap">';
- $out .= $langs->trans("Link") . ': ';
- $out .= '<input type="text" name="link" size="'.$maxlength.'" id="link">';
- $out .= ' ' . $langs->trans("Label") . ': ';
- $out .= '<input type="text" name="label" id="label">';
- $out .= '<input type="hidden" name="objecttype" value="' . $object->element . '">';
- $out .= '<input type="hidden" name="objectid" value="' . $object->id . '">';
- $out .= '<input type="submit" class="button" name="linkit" value="'.$langs->trans("ToLink").'"';
- $out .= (empty($conf->global->MAIN_UPLOAD_DOC) || empty($perm)?' disabled="disabled"':'');
- $out .= '>';
- $out .= '</td></tr>';
- $out .= '</table>';
- $out .= '</form><br>';
- $parameters = array('socid'=>(isset($GLOBALS['socid'])?$GLOBALS['socid']:''),'id'=>(isset($GLOBALS['id'])?$GLOBALS['id']:''), 'url'=>$url, 'perm'=>$perm);
- $res = $hookmanager->executeHooks('formattachOptions',$parameters,$object);
- $out .= "\n<!-- End form attach new file -->\n";
- }
- if (empty($res))
- {
- print $out;
- }
- print $hookmanager->resPrint;
- return 1;
- }
- }
- /**
- * Show the box with list of available documents for object
- *
- * @param string $modulepart propal, facture, facture_fourn, ...
- * @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.
- * @param string $filedir Directory to scan
- * @param string $urlsource Url of origin page (for return)
- * @param int $genallowed Generation is allowed (1/0 or array of formats)
- * @param int $delallowed Remove is allowed (1/0)
- * @param string $modelselected Model to preselect by default
- * @param string $allowgenifempty Show warning if no model activated
- * @param string $forcenomultilang Do not show language option (even if MAIN_MULTILANGS defined)
- * @param int $iconPDF Show only PDF icon with link (1/0)
- * @param int $maxfilenamelength Max length for filename shown
- * @param string $noform Do not output html form tags
- * @param string $param More param on http links
- * @param string $title Title to show on top of form
- * @param string $buttonlabel Label on submit button
- * @param string $codelang Default language code to use on lang combo box if multilang is enabled
- * @return int <0 if KO, number of shown files if OK
- */
- function show_documents($modulepart,$modulesubdir,$filedir,$urlsource,$genallowed,$delallowed=0,$modelselected='',$allowgenifempty=1,$forcenomultilang=0,$iconPDF=0,$maxfilenamelength=28,$noform=0,$param='',$title='',$buttonlabel='',$codelang='')
- {
- $this->numoffiles=0;
- print $this->showdocuments($modulepart,$modulesubdir,$filedir,$urlsource,$genallowed,$delallowed,$modelselected,$allowgenifempty,$forcenomultilang,$iconPDF,$maxfilenamelength,$noform,$param,$title,$buttonlabel,$codelang);
- return $this->numoffiles;
- }
- /**
- * Return a string to show the box with list of available documents for object.
- * This also set the property $this->numoffiles
- *
- * @param string $modulepart Module the files are related to ('propal', 'facture', 'facture_fourn', 'mymodule', 'mymodule_temp', ...)
- * @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 subdir of module.
- * @param string $filedir Directory to scan
- * @param string $urlsource Url of origin page (for return)
- * @param int $genallowed Generation is allowed (1/0 or array list of templates)
- * @param int $delallowed Remove is allowed (1/0)
- * @param string $modelselected Model to preselect by default
- * @param string $allowgenifempty Allow generation even if list of template ($genallowed) is empty (show however a warning)
- * @param string $forcenomultilang Do not show language option (even if MAIN_MULTILANGS defined)
- * @param int $iconPDF Obsolete, see getDocumentsLink
- * @param int $maxfilenamelength Max length for filename shown
- * @param string $noform Do not output html form tags
- * @param string $param More param on http links
- * @param string $title Title to show on top of form
- * @param string $buttonlabel Label on submit button
- * @param string $codelang Default language code to use on lang combo box if multilang is enabled
- * @param string $morepicto Add more HTML content into cell with picto
- * @return string Output string with HTML array of documents (might be empty string)
- */
- function showdocuments($modulepart,$modulesubdir,$filedir,$urlsource,$genallowed,$delallowed=0,$modelselected='',$allowgenifempty=1,$forcenomultilang=0,$iconPDF=0,$maxfilenamelength=28,$noform=0,$param='',$title='',$buttonlabel='',$codelang='',$morepicto='')
- {
- global $langs,$conf,$hookmanager,$user,$form,$bc;
- if (! is_object($form)) $form=new Form($this->db);
-
- // filedir = $conf->...->dir_ouput."/".get_exdir(id)
- include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- // For backward compatibility
- if (! empty($iconPDF)) {
- return $this->getDocumentsLink($modulepart, $modulesubdir, $filedir);
- }
- $printer = ($user->rights->printipp->read && $conf->printipp->enabled)?true:false;
- $hookmanager->initHooks(array('formfile'));
- $forname='builddoc';
- $out='';
- $var=true;
- $headershown=0;
- $showempty=0;
- $i=0;
- $titletoshow=$langs->trans("Documents");
- if (! empty($title)) $titletoshow=$title;
- $out.= "\n".'<!-- Start show_document -->'."\n";
- //print 'filedir='.$filedir;
- // Show table
- if ($genallowed)
- {
- $modellist=array();
- if ($modulepart == 'company')
- {
- $showempty=1;
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/societe/modules_societe.class.php';
- $modellist=ModeleThirdPartyDoc::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'propal')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/propale/modules_propale.php';
- $modellist=ModelePDFPropales::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'commande')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/commande/modules_commande.php';
- $modellist=ModelePDFCommandes::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'expedition')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/expedition/modules_expedition.php';
- $modellist=ModelePDFExpedition::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'livraison')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/livraison/modules_livraison.php';
- $modellist=ModelePDFDeliveryOrder::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'ficheinter')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/fichinter/modules_fichinter.php';
- $modellist=ModelePDFFicheinter::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'facture')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
- $modellist=ModelePDFFactures::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'project')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/project/modules_project.php';
- $modellist=ModelePDFProjects::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'project_task')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/project/task/modules_task.php';
- $modellist=ModelePDFTask::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'export')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/export/modules_export.php';
- $modellist=ModeleExports::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'commande_fournisseur')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/supplier_order/modules_commandefournisseur.php';
- $modellist=ModelePDFSuppliersOrders::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'facture_fournisseur')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/supplier_invoice/modules_facturefournisseur.php';
- $modellist=ModelePDFSuppliersInvoices::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'remisecheque')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/cheque/pdf/modules_chequereceipts.php';
- $modellist=ModeleChequeReceipts::liste_modeles($this->db);
- }
- }
- elseif ($modulepart == 'donation')
- {
- if (is_array($genallowed)) $modellist=$genallowed;
- else
- {
- include_once DOL_DOCUMENT_ROOT.'/core/modules/dons/modules_don.php';
- $modellist=ModeleDon::liste_modeles($this->db);
- }
- }
- else if ($modulepart == 'unpaid')
- {
- $modellist='';
- }
- else
- {
- // For normalized standard modules
- $file=dol_buildpath('/core/modules/'.$modulepart.'/modules_'.$modulepart.'.php',0);
- if (file_exists($file))
- {
- $res=include_once $file;
- }
- // For normalized external modules
- else
- {
- $file=dol_buildpath('/'.$modulepart.'/core/modules/'.$modulepart.'/modules_'.$modulepart.'.php',0);
- $res=include_once $file;
- }
- $class='Modele'.ucfirst($modulepart);
- if (class_exists($class))
- {
- $modellist=call_user_func($class.'::liste_modeles',$this->db);
- }
- else
- {
- dol_print_error($this->db,'Bad value for modulepart');
- return -1;
- }
- }
- $headershown=1;
- $buttonlabeltoshow=$buttonlabel;
- if (empty($buttonlabel)) $buttonlabel=$langs->trans('Generate');
- if (empty($noform)) $out.= '<form action="'.$urlsource.(empty($conf->global->MAIN_JUMP_TAG)?'':'#builddoc').'" name="'.$forname.'" id="'.$forname.'_form" method="post">';
- $out.= '<input type="hidden" name="action" value="builddoc">';
- $out.= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- $out.= '<div class="titre">'.$titletoshow.'</div>';
- $out.= '<table class="liste formdoc noborder" summary="listofdocumentstable" width="100%">';
- $out.= '<tr class="liste_titre">';
- // Model
- if (! empty($modellist))
- {
- $out.= '<th align="center" class="formdoc liste_titre">';
- $out.= '<span class="hideonsmartphone">'.$langs->trans('Model').' </span>';
- if (is_array($modellist) && count($modellist) == 1) // If there is only one element
- {
- $arraykeys=array_keys($modellist);
- $modelselected=$arraykeys[0];
- }
- $out.= $form->selectarray('model',$modellist,$modelselected,$showempty,0,0);
- $out.= '</th>';
- }
- else
- {
- $out.= '<th align="left" class="formdoc liste_titre">';
- $out.= $langs->trans("Files");
- $out.= '</th>';
- }
- // Language code (if multilang)
- $out.= '<th align="center" class="formdoc liste_titre">';
- if (($allowgenifempty || (is_array($modellist) && count($modellist) > 0)) && $conf->global->MAIN_MULTILANGS && ! $forcenomultilang)
- {
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
- $formadmin=new FormAdmin($this->db);
- $defaultlang=$codelang?$codelang:$langs->getDefaultLang();
- $out.= $formadmin->select_language($defaultlang);
- }
- else
- {
- $out.= ' ';
- }
- $out.= '</th>';
- // Button
- $addcolumforpicto=($delallowed || $printer || $morepicto);
- $out.= '<th align="center" colspan="'.($addcolumforpicto?'2':'1').'" class="formdocbutton liste_titre">';
- $genbutton = '<input class="button" id="'.$forname.'_generatebutton"';
- $genbutton.= ' type="submit" value="'.$buttonlabel.'"';
- if (! $allowgenifempty && ! is_array($modellist) && empty($modellist)) $genbutton.= ' disabled="disabled"';
- $genbutton.= '>';
- if ($allowgenifempty && ! is_array($modellist) && empty($modellist) && empty($conf->dol_no_mouse_hover) && $modulepart != 'unpaid')
- {
- $langs->load("errors");
- $genbutton.= ' '.img_warning($langs->transnoentitiesnoconv("WarningNoDocumentModelActivated"));
- }
- if (! $allowgenifempty && ! is_array($modellist) && empty($modellist) && empty($conf->dol_no_mouse_hover) && $modulepart != 'unpaid') $genbutton='';
- $out.= $genbutton;
- $out.= '</th>';
- if($hookmanager->hooks['formfile'])
- {
- foreach($hookmanager->hooks['formfile'] as $module)
- {
- if(method_exists($module, 'formBuilddocLineOptions')) $out .= '<th></th>';
- }
- }
- $out.= '</tr>';
- // Execute hooks
- $parameters=array('socid'=>(isset($GLOBALS['socid'])?$GLOBALS['socid']:''),'id'=>(isset($GLOBALS['id'])?$GLOBALS['id']:''),'modulepart'=>$modulepart);
- if (is_object($hookmanager)) $out.= $hookmanager->executeHooks('formBuilddocOptions',$parameters,$GLOBALS['object']);
- }
- // Get list of files
- if (! empty($filedir))
- {
- $file_list=dol_dir_list($filedir,'files',0,'','(\.meta|_preview\.png)$','date',SORT_DESC);
- // Affiche en-tete tableau si non deja affiche
- if (! empty($file_list) && ! $headershown)
- {
- $headershown=1;
- $out.= '<div class="titre">'.$titletoshow.'</div>';
- $out.= '<table class="border" summary="listofdocumentstable" width="100%">';
- }
- // Loop on each file found
- if (is_array($file_list))
- {
- foreach($file_list as $file)
- {
- $var=!$var;
- // Define relative path for download link (depends on module)
- $relativepath=$file["name"]; // Cas general
- if ($modulesubdir) $relativepath=$modulesubdir."/".$file["name"]; // Cas propal, facture...
- // Autre cas
- if ($modulepart == 'donation') { $relativepath = get_exdir($modulesubdir,2).$file["name"]; }
- if ($modulepart == 'export') { $relativepath = $file["name"]; }
- $out.= "<tr ".$bc[$var].">";
- // Show file name with link to download
- $out.= '<td class="nowrap">';
- $out.= '<a data-ajax="false" href="'.DOL_URL_ROOT . '/document.php?modulepart='.$modulepart.'&file='.urlencode($relativepath).'"';
- $mime=dol_mimetype($relativepath,'',0);
- if (preg_match('/text/',$mime)) $out.= ' target="_blank"';
- $out.= ' target="_blank">';
- $out.= img_mime($file["name"],$langs->trans("File").': '.$file["name"]).' '.dol_trunc($file["name"],$maxfilenamelength);
- $out.= '</a>'."\n";
- $out.= '</td>';
- // Show file size
- $size=(! empty($file['size'])?$file['size']:dol_filesize($filedir."/".$file["name"]));
- $out.= '<td align="right" class="nowrap">'.dol_print_size($size).'</td>';
- // Show file date
- $date=(! empty($file['date'])?$file['date']:dol_filemtime($filedir."/".$file["name"]));
- $out.= '<td align="right" class="nowrap">'.dol_print_date($date, 'dayhour', 'tzuser').'</td>';
- if ($delallowed || $printer || $morepicto)
- {
- $out.= '<td align="right">';
- if ($delallowed)
- {
- $out.= '<a href="'.$urlsource.(strpos($urlsource,'?')?'&':'?').'action=remove_file&file='.urlencode($relativepath);
- $out.= ($param?'&'.$param:'');
- //$out.= '&modulepart='.$modulepart; // TODO obsolete ?
- //$out.= '&urlsource='.urlencode($urlsource); // TODO obsolete ?
- $out.= '">'.img_picto($langs->trans("Delete"), 'delete.png').'</a>';
- //$out.='</td>';
- }
- if ($printer)
- {
- //$out.= '<td align="right">';
- $out.= ' <a href="'.$urlsource.(strpos($urlsource,'?')?'&':'?').'action=print_file&printer='.$modulepart.'&file='.urlencode($relativepath);
- $out.= ($param?'&'.$param:'');
- $out.= '">'.img_picto($langs->trans("Print"),'printer.png').'</a>';
- }
- if ($morepicto)
- {
- $morepicto=preg_replace('/__FILENAMEURLENCODED__/',urlencode($relativepath),$morepicto);
- $out.=$morepicto;
- }
- $out.='</td>';
- }
- if (is_object($hookmanager))
- {
- $parameters=array('socid'=>(isset($GLOBALS['socid'])?$GLOBALS['socid']:''),'id'=>(isset($GLOBALS['id'])?$GLOBALS['id']:''),'modulepart'=>$modulepart,'relativepath'=>$relativepath);
- $res = $hookmanager->executeHooks('formBuilddocLineOptions',$parameters,$file);
- if (empty($res))
- {
- $out .= $hookmanager->resPrint; // Complete line
- $out.= '</tr>';
- }
- else $out = $hookmanager->resPrint; // Replace line
- }
- }
- if (count($file_list) == 0)
- {
- $out.='<tr><td colspan="3">'.$langs->trans("None").'</td></tr>';
- }
- $this->numoffiles++;
- }
- }
- if ($headershown)
- {
- // Affiche pied du tableau
- $out.= "</table>\n";
- if ($genallowed)
- {
- if (empty($noform)) $out.= '</form>'."\n";
- }
- }
- $out.= '<!-- End show_document -->'."\n";
- //return ($i?$i:$headershown);
- return $out;
- }
- /**
- * Show only Document icon with link
- *
- * @param string $modulepart propal, facture, facture_fourn, ...
- * @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.
- * @param string $filedir Directory to scan
- * @return string Output string with HTML link of documents (might be empty string)
- */
- function getDocumentsLink($modulepart, $modulesubdir, $filedir)
- {
- if (! function_exists('dol_dir_list')) include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $out='';
- $this->numoffiles=0;
- $file_list=dol_dir_list($filedir, 'files', 0, preg_quote($modulesubdir.'.pdf','/'), '\.meta$|\.png$');
- // For ajax treatment
- $out.= '<div id="gen_pdf_'.$modulesubdir.'" class="linkobject hideobject">'.img_picto('', 'refresh').'</div>'."\n";
- if (! empty($file_list))
- {
- // Loop on each file found
- foreach($file_list as $file)
- {
- // Define relative path for download link (depends on module)
- $relativepath=$file["name"]; // Cas general
- if ($modulesubdir) $relativepath=$modulesubdir."/".$file["name"]; // Cas propal, facture...
- // Autre cas
- if ($modulepart == 'donation') {
- $relativepath = get_exdir($modulesubdir,2).$file["name"];
- }
- if ($modulepart == 'export') {
- $relativepath = $file["name"];
- }
- // Show file name with link to download
- $out.= '<a data-ajax="false" href="'.DOL_URL_ROOT . '/document.php?modulepart='.$modulepart.'&file='.urlencode($relativepath).'"';
- $mime=dol_mimetype($relativepath,'',0);
- if (preg_match('/text/',$mime)) $out.= ' target="_blank"';
- $out.= '>';
- $out.= img_pdf($file["name"],2);
- $out.= '</a>'."\n";
- $this->numoffiles++;
- }
- }
- return $out;
- }
- /**
- * Show list of documents in a directory
- *
- * @param array $filearray Array of files loaded by dol_dir_list('files') function before calling this
- * @param Object $object Object on which document is linked to
- * @param string $modulepart Value for modulepart used by download or viewimage wrapper
- * @param string $param Parameters on sort links (param must start with &, example &aaa=bbb&ccc=ddd)
- * @param int $forcedownload Force to open dialog box "Save As" when clicking on file
- * @param string $relativepath Relative path of docs (autodefined if not provided)
- * @param int $permtodelete Permission to delete
- * @param int $useinecm Change output for use in ecm module
- * @param string $textifempty Text to show if filearray is empty ('NoFileFound' if not defined)
- * @param int $maxlength Maximum length of file name shown
- * @param string $title Title before list
- * @param string $url Full url to use for click links ('' = autodetect)
- * @param int $showrelpart 0=Show only filename (default), 1=Show first level 1 dir
- * @return int <0 if KO, nb of files shown if OK
- */
- function list_of_documents($filearray,$object,$modulepart,$param='',$forcedownload=0,$relativepath='',$permtodelete=1,$useinecm=0,$textifempty='',$maxlength=0,$title='',$url='', $showrelpart=0)
- {
- global $user, $conf, $langs, $hookmanager;
- global $bc;
- global $sortfield, $sortorder, $maxheightmini;
- $hookmanager->initHooks(array('formfile'));
- $parameters=array(
- 'filearray' => $filearray,
- 'modulepart'=> $modulepart,
- 'param' => $param,
- 'forcedownload' => $forcedownload,
- 'relativepath' => $relativepath,
- 'permtodelete' => $permtodelete,
- 'useinecm' => $useinecm,
- 'textifempty' => $textifempty,
- 'maxlength' => $maxlength,
- 'title' => $title,
- 'url' => $url
- );
- $reshook=$hookmanager->executeHooks('showFilesList', $parameters, $object);
- if (isset($reshook) && $reshook != '') // null or '' for bypass
- {
- return $reshook;
- }
- else
- {
- $param = (isset($object->id)?'&id='.$object->id:'').$param;
- // Show list of existing files
- if (empty($useinecm)) print_titre($title?$title:$langs->trans("AttachedFiles"));
- if (empty($url)) $url=$_SERVER["PHP_SELF"];
- print '<table width="100%" class="'.($useinecm?'nobordernopadding':'liste').'">';
- print '<tr class="liste_titre">';
- print_liste_field_titre($langs->trans("Documents2"),$url,"name","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Size"),$url,"size","",$param,'align="right"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Date"),$url,"date","",$param,'align="center"',$sortfield,$sortorder);
- if (empty($useinecm)) print_liste_field_titre('',$url,"","",$param,'align="center"');
- print_liste_field_titre('','','');
- print '</tr>';
- $nboffiles=count($filearray);
- if ($nboffiles > 0) include_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
- $var=true;
- foreach($filearray as $key => $file) // filearray must be only files here
- {
- if ($file['name'] != '.'
- && $file['name'] != '..'
- && ! preg_match('/\.meta$/i',$file['name']))
- {
- // Define relative path used to store the file
- if (empty($relativepath))
- {
- $relativepath=(! empty($object->ref)?dol_sanitizeFileName($object->ref):'').'/';
- if ($object->element == 'invoice_supplier') $relativepath=get_exdir($object->id,2).$relativepath; // TODO Call using a defined value for $relativepath
- if ($object->element == 'member') $relativepath=get_exdir($object->id,2).$relativepath; // TODO Call using a defined value for $relativepath
- if ($object->element == 'project_task') $relativepath='Call_not_supported_._Call_function_using_a_defined_relative_path_.';
- }
- $var=!$var;
- print '<tr '.$bc[$var].'>';
- print '<td>';
- //print "XX".$file['name']; //$file['name'] must be utf8
- print '<a data-ajax="false" href="'.DOL_URL_ROOT.'/document.php?modulepart='.$modulepart;
- if ($forcedownload) print '&attachment=1';
- if (! empty($object->entity)) print '&entity='.$object->entity;
- $filepath=$relativepath.$file['name'];
- /* Restore old code: When file is at level 2+, full relative path (and not only level1) must be into url
- if ($file['level1name'] <> $object->id)
- $filepath=$object->id.'/'.$file['level1name'].'/'.$file['name'];
- else
- $filepath=$object->id.'/'.$file['name'];
- */
- print '&file='.urlencode($filepath);
- print '">';
- print img_mime($file['name'],$file['name'].' ('.dol_print_size($file['size'],0,0).')').' ';
- if ($showrelpart == 1) print $relativepath;
- print dol_trunc($file['name'],$maxlength,'middle');
- print '</a>';
- print "</td>\n";
- print '<td align="right">'.dol_print_size($file['size'],1,1).'</td>';
- print '<td align="center">'.dol_print_date($file['date'],"dayhour","tzuser").'</td>';
- // Preview
- if (empty($useinecm))
- {
- print '<td align="center">';
- $tmp=explode('.',$file['name']);
- if (count($tmp) == 3) $minifile=$tmp[0].'_mini.'.$tmp[1].'.'.strtolower($tmp[2]); // Thumbs are created with filename in lower case
- else $minifile=$tmp[0].'_mini.'.strtolower($tmp[1]); // Thumbs are created with filename in lower case
- if (image_format_supported($file['name']) > 0) print '<img border="0" height="'.$maxheightmini.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&file='.urlencode($relativepath.'thumbs/'.$minifile).'" title="">';
- else print ' ';
- print '</td>';
- }
- // Delete or view link
- // ($param must start with &)
- print '<td align="right">';
- if ($useinecm) print '<a href="'.DOL_URL_ROOT.'/ecm/docfile.php?urlfile='.urlencode($file['name']).$param.'" class="editfilelink" rel="'.urlencode($file['name']).'">'.img_view().'</a> ';
- if ($permtodelete)
- {
- /*
- if ($file['level1name'] <> $object->id)
- $filepath=$file['level1name'].'/'.$file['name'];
- else
- $filepath=$file['name'];
- */
- $useajax=1;
- if (! empty($conf->dol_use_jmobile)) $useajax=0;
- if (empty($conf->use_javascript_ajax)) $useajax=0;
- if (! empty($conf->global->MAIN_ECM_DISABLE_JS)) $useajax=0;
- print '<a href="'.(($useinecm && $useajax)?'#':$url.'?action=delete&urlfile='.urlencode($filepath).$param).'" class="deletefilelink" rel="'.$filepath.'">'.img_delete().'</a>';
- }
- else print ' ';
- print "</td>";
- print "</tr>\n";
- }
- }
- if ($nboffiles == 0)
- {
- print '<tr '.$bc[$var].'><td colspan="'.(empty($useinecm)?'5':'4').'">';
- if (empty($textifempty)) print $langs->trans("NoFileFound");
- else print $textifempty;
- print '</td></tr>';
- }
- print "</table>";
- return $nboffiles;
- }
- }
- /**
- * Show list of documents in a directory
- *
- * @param string $upload_dir Directory that was scanned
- * @param array $filearray Array of files loaded by dol_dir_list function before calling this function
- * @param string $modulepart Value for modulepart used by download wrapper
- * @param string $param Parameters on sort links
- * @param int $forcedownload Force to open dialog box "Save As" when clicking on file
- * @param string $relativepath Relative path of docs (autodefined if not provided)
- * @param int $permtodelete Permission to delete
- * @param int $useinecm Change output for use in ecm module
- * @param int $textifempty Text to show if filearray is empty
- * @param int $maxlength Maximum length of file name shown
- * @param string $url Full url to use for click links ('' = autodetect)
- * @return int <0 if KO, nb of files shown if OK
- */
- function list_of_autoecmfiles($upload_dir,$filearray,$modulepart,$param,$forcedownload=0,$relativepath='',$permtodelete=1,$useinecm=0,$textifempty='',$maxlength=0,$url='')
- {
- global $user, $conf, $langs;
- global $bc;
- global $sortfield, $sortorder;
- dol_syslog(get_class($this).'::list_of_autoecmfiles upload_dir='.$upload_dir.' modulepart='.$modulepart);
- // Show list of documents
- if (empty($useinecm)) print_titre($langs->trans("AttachedFiles"));
- if (empty($url)) $url=$_SERVER["PHP_SELF"];
- print '<table width="100%" class="nobordernopadding">';
- print '<tr class="liste_titre">';
- $sortref="fullname";
- if ($modulepart == 'invoice_supplier') $sortref='level1name';
- print_liste_field_titre($langs->trans("Ref"),$url,$sortref,"",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Documents2"),$url,"name","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Size"),$url,"size","",$param,'align="right"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Date"),$url,"date","",$param,'align="center"',$sortfield,$sortorder);
- print_liste_field_titre('','','');
- print '</tr>';
- // To show ref or specific information according to view to show (defined by $module)
- if ($modulepart == 'company')
- {
- include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
- $object_instance=new Societe($this->db);
- }
- else if ($modulepart == 'invoice')
- {
- include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
- $object_instance=new Facture($this->db);
- }
- else if ($modulepart == 'invoice_supplier')
- {
- include_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
- $object_instance=new FactureFournisseur($this->db);
- }
- else if ($modulepart == 'propal')
- {
- include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
- $object_instance=new Propal($this->db);
- }
- else if ($modulepart == 'order')
- {
- include_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
- $object_instance=new Commande($this->db);
- }
- else if ($modulepart == 'order_supplier')
- {
- include_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
- $object_instance=new CommandeFournisseur($this->db);
- }
- else if ($modulepart == 'contract')
- {
- include_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
- $object_instance=new Contrat($this->db);
- }
- else if ($modulepart == 'product')
- {
- include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
- $object_instance=new Product($this->db);
- }
- else if ($modulepart == 'tax')
- {
- include_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php';
- $object_instance=new ChargeSociales($this->db);
- }
- else if ($modulepart == 'project')
- {
- include_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
- $object_instance=new Project($this->db);
- }
- $var=true;
- foreach($filearray as $key => $file)
- {
- if (!is_dir($file['name'])
- && $file['name'] != '.'
- && $file['name'] != '..'
- && $file['name'] != 'CVS'
- && ! preg_match('/\.meta$/i',$file['name']))
- {
- // Define relative path used to store the file
- $relativefile=preg_replace('/'.preg_quote($upload_dir.'/','/').'/','',$file['fullname']);
- //var_dump($file);
- $id=0; $ref=''; $label='';
- // To show ref or specific information according to view to show (defined by $module)
- if ($modulepart == 'company') { preg_match('/(\d+)\/[^\/]+$/',$relativefile,$reg); $id=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'invoice') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'invoice_supplier') { preg_match('/([^\/]+)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); if (is_numeric($ref)) { $id=$ref; $ref=''; } } // $ref may be also id with old supplier invoices
- if ($modulepart == 'propal') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'order') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'order_supplier') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'contract') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'product') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'tax') { preg_match('/(\d+)\/[^\/]+$/',$relativefile,$reg); $id=(isset($reg[1])?$reg[1]:''); }
- if ($modulepart == 'project') { preg_match('/(.*)\/[^\/]+$/',$relativefile,$reg); $ref=(isset($reg[1])?$reg[1]:'');}
- if (! $id && ! $ref) continue;
- $found=0;
- if (! empty($this->cache_objects[$modulepart.'_'.$id.'_'.$ref]))
- {
- $found=1;
- }
- else
- {
- //print 'Fetch '.$id." - ".$ref.'<br>';
- $result=$object_instance->fetch($id,$ref);
- if ($result > 0) { $found=1; $this->cache_objects[$modulepart.'_'.$id.'_'.$ref]=dol_clone($object_instance); } // Save object into a cache
- if ($result == 0) { $found=1; $this->cache_objects[$modulepart.'_'.$id.'_'.$ref]='notfound'; unset($filearray[$key]); }
- }
- if (! $found > 0 || ! is_object($this->cache_objects[$modulepart.'_'.$id.'_'.$ref])) continue; // We do not show orphelins files
- $var=!$var;
- print '<tr '.$bc[$var].'>';
- print '<td>';
- if ($found > 0 && is_object($this->cache_objects[$modulepart.'_'.$id.'_'.$ref])) print $this->cache_objects[$modulepart.'_'.$id.'_'.$ref]->getNomUrl(1,'document');
- else print $langs->trans("ObjectDeleted",($id?$id:$ref));
- print '</td>';
- print '<td>';
- //print "XX".$file['name']; //$file['name'] must be utf8
- print '<a data-ajax="false" href="'.DOL_URL_ROOT.'/document.php?modulepart='.$modulepart;
- if ($forcedownload) print '&attachment=1';
- print '&file='.urlencode($relativefile).'">';
- print img_mime($file['name'],$file['name'].' ('.dol_print_size($file['size'],0,0).')').' ';
- print dol_trunc($file['name'],$maxlength,'middle');
- print '</a>';
- print "</td>\n";
- print '<td align="right">'.dol_print_size($file['size'],1,1).'</td>';
- print '<td align="center">'.dol_print_date($file['date'],"dayhour").'</td>';
- print '<td align="right">';
- if (! empty($useinecm)) print '<a data-ajax="false" href="'.DOL_URL_ROOT.'/document.php?modulepart='.$modulepart;
- if ($forcedownload) print '&attachment=1';
- print '&file='.urlencode($relativefile).'">';
- print img_view().'</a> ';
- //if ($permtodelete) print '<a href="'.$url.'?id='.$object->id.'§ion='.$_REQUEST["section"].'&action=delete&urlfile='.urlencode($file['name']).'">'.img_delete().'</a>';
- //else print ' ';
- print "</td></tr>\n";
- }
- }
- if (count($filearray) == 0)
- {
- print '<tr '.$bc[$var].'><td colspan="4">';
- if (empty($textifempty)) print $langs->trans("NoFileFound");
- else print $textifempty;
- print '</td></tr>';
- }
- print "</table>";
- // Fin de zone
- }
- /**
- * Show form to upload a new file with jquery fileupload.
- * This form use the fileupload.php file.
- *
- * @param Object $object Object to use
- * @return void
- */
- private function _formAjaxFileUpload($object)
- {
- global $langs;
- // PHP post_max_size
- $post_max_size = ini_get('post_max_size');
- $mul_post_max_size = substr($post_max_size, -1);
- $mul_post_max_size = ($mul_post_max_size == 'M' ? 1048576 : ($mul_post_max_size == 'K' ? 1024 : ($mul_post_max_size == 'G' ? 1073741824 : 1)));
- $post_max_size = $mul_post_max_size * (int) $post_max_size;
- // PHP upload_max_filesize
- $upload_max_filesize = ini_get('upload_max_filesize');
- $mul_upload_max_filesize = substr($upload_max_filesize, -1);
- $mul_upload_max_filesize = ($mul_upload_max_filesize == 'M' ? 1048576 : ($mul_upload_max_filesize == 'K' ? 1024 : ($mul_upload_max_filesize == 'G' ? 1073741824 : 1)));
- $upload_max_filesize = $mul_upload_max_filesize * (int) $upload_max_filesize;
- // Max file size
- $max_file_size = (($post_max_size < $upload_max_filesize) ? $post_max_size : $upload_max_filesize);
- // Include main
- include DOL_DOCUMENT_ROOT.'/core/tpl/ajax/fileupload_main.tpl.php';
- // Include template
- include DOL_DOCUMENT_ROOT.'/core/tpl/ajax/fileupload_view.tpl.php';
- }
- /**
- * Show array with linked files
- *
- * @param Object $object Object
- * @param int $permtodelete Deletion is allowed
- * @param string $action Action
- * @param string $selected ???
- * @param string $param More param to add into URL
- * @return int Number of links
- */
- public function listOfLinks($object, $permtodelete=1, $action=null, $selected=null, $param='')
- {
- global $user, $conf, $langs, $user;
- global $bc;
- global $sortfield, $sortorder;
- require_once DOL_DOCUMENT_ROOT . '/core/class/link.class.php';
- $link = new Link($this->db);
- $links = array();
- if ($sortfield == "name") {
- $sortfield = "label";
- } elseif ($sortfield == "date") {
- $sortfield = "datea";
- } else {
- $sortfield = null;
- }
- $res = $link->fetchAll($links, $object->element, $object->id, $sortfield, $sortorder);
- $param .= (isset($object->id)?'&id=' . $object->id : '');
- // Show list of associated links
- print_titre($langs->trans("LinkedFiles"));
- print '<form action="' . $_SERVER['PHP_SELF'] . ($param?'?'.$param:'') . '" method="POST">';
- print '<table width="100%" class="liste">';
- print '<tr class="liste_titre">';
- print_liste_field_titre(
- $langs->trans("Links"),
- $_SERVER['PHP_SELF'],
- "name",
- "",
- $param,
- 'align="left"',
- $sortfield,
- $sortorder
- );
- print_liste_field_titre(
- "",
- "",
- "",
- "",
- "",
- 'align="right"'
- );
- print_liste_field_titre(
- $langs->trans("Date"),
- $_SERVER['PHP_SELF'],
- "date",
- "",
- $param,
- 'align="center"',
- $sortfield,
- $sortorder
- );
- print_liste_field_titre(
- '',
- $_SERVER['PHP_SELF'],
- "",
- "",
- $param,
- 'align="center"'
- );
- print_liste_field_titre('','','');
- print '</tr>';
- $nboflinks = count($links);
- if ($nboflinks > 0) include_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
- $var = true;
- foreach ($links as $link)
- {
- $var =! $var;
- print '<tr ' . $bc[$var] . '>';
- //edit mode
- if ($action == 'update' && $selected === $link->id)
- {
- print '<td>';
- print '<input type="hidden" name="id" value="' . $object->id . '">';
- print '<input type="hidden" name="linkid" value="' . $link->id . '">';
- print '<input type="hidden" name="action" value="confirm_updateline">';
- print $langs->trans('Link') . ': <input type="text" name="link" size="50" value="' . $link->url . '">';
- print '</td>';
- print '<td>';
- print $langs->trans('Label') . ': <input type="text" name="label" value="' . $link->label . '">';
- print '</td>';
- print '<td align="center">' . dol_print_date(dol_now(), "dayhour", "tzuser") . '</td>';
- print '<td align="right"></td>';
- print '<td align="right" colspan="2">';
- print '<input type="submit" name="save" class="button" value="' . dol_escape_htmltag($langs->trans('Save')) . '">';
- print '<input type="submit" name="cancel" class="button" value="' . dol_escape_htmltag($langs->trans('Cancel')) . '">';
- print '</td>';
- }
- else
- {
- print '<td>';
- print '<a data-ajax="false" href="' . $link->url . '" target="_blank">';
- print $link->label;
- print '</a>';
- print '</td>'."\n";
- print '<td align="right"></td>';
- print '<td align="center">' . dol_print_date($link->datea, "dayhour", "tzuser") . '</td>';
- print '<td align="center"></td>';
- print '<td align="right" colspan="2">';
- print '<a href="' . $_SERVER['PHP_SELF'] . '?action=update&linkid=' . $link->id . $param . '" class="editfilelink" >' . img_edit() . '</a>'; // id= is included into $param
- if ($permtodelete) {
- print ' <a href="'. $_SERVER['PHP_SELF'] .'?action=delete&linkid=' . $link->id . $param . '" class="deletefilelink">' . img_delete() . '</a>'; // id= is included into $param
- } else {
- print ' ';
- }
- print '</td>';
- }
- print "</tr>\n";
- }
- if ($nboflinks == 0)
- {
- print '<tr ' . $bc[$var] . '><td colspan="4">';
- print $langs->trans("NoLinkFound");
- print '</td></tr>';
- }
- print "</table>";
- print '</form>';
- return $nboflinks;
- }
- }
|