dolibarr 20.0.0
list.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2014-2023 Alexandre Spangaro <aspangaro@open-dsi.fr>
3 * Copyright (C) 2015 Frederic France <frederic.france@free.fr>
4 * Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
5 * Copyright (C) 2016 Laurent Destailleur <eldy@users.sourceforge.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/loan/class/loan.class.php';
30
31// Load translation files required by the page
32$langs->loadLangs(array("banks", "bills", "compta", "loan"));
33
34// Get parameters
35$action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'create'/'add', 'edit'/'update', 'view', ...
36$massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
37$show_files = GETPOSTINT('show_files'); // Show files area generated by bulk actions ?
38$confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
39$cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
40$toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
41$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : str_replace('_', '', basename(dirname(__FILE__)).basename(__FILE__, '.php')); // To manage different context of search
42$backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
43$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
44$mode = GETPOST('mode', 'aZ'); // The output mode ('list', 'kanban', 'hierarchy', 'calendar', ...)
45
46$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
47$sortfield = GETPOST('sortfield', 'aZ09comma');
48$sortorder = GETPOST('sortorder', 'aZ09comma');
49$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
50if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
51 // If $page is not defined, or '' or -1 or if we click on clear filters
52 $page = 0;
53}
54$offset = $limit * $page;
55$pageprev = $page - 1;
56$pagenext = $page + 1;
57
58// Initialize technical objects
59$object = new Loan($db);
60$extrafields = new ExtraFields($db);
61$diroutputmassaction = $conf->loan->dir_output.'/temp/massgeneration/'.$user->id;
62$hookmanager->initHooks(array($contextpage));
63
64// Fetch optionals attributes and labels
65$extrafields->fetch_name_optionals_label($object->table_element);
66//$extrafields->fetch_name_optionals_label($object->table_element_line);
67
68$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
69
70// Default sort order (if not yet defined by previous GETPOST)
71if (!$sortfield) {
72 $sortfield = "l.rowid";
73}
74if (!$sortorder) {
75 $sortorder = "DESC";
76}
77
78// Definition of array of fields for columns
79$arrayfields = array();
80foreach ($object->fields as $key => $val) {
81 // If $val['visible']==0, then we never show the field
82 if (!empty($val['visible'])) {
83 $visible = (int) dol_eval($val['visible'], 1);
84 $arrayfields['t.'.$key] = array(
85 'label'=>$val['label'],
86 'checked'=>(($visible < 0) ? 0 : 1),
87 'enabled'=>(abs($visible) != 3 && (bool) dol_eval($val['enabled'], 1)),
88 'position'=>$val['position'],
89 'help'=> isset($val['help']) ? $val['help'] : ''
90 );
91 }
92}
93// Extra fields
94include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
95
96$object->fields = dol_sort_array($object->fields, 'position');
97//$arrayfields['anotherfield'] = array('type'=>'integer', 'label'=>'AnotherField', 'checked'=>1, 'enabled'=>1, 'position'=>90, 'csslist'=>'right');
98$arrayfields = dol_sort_array($arrayfields, 'position');
99
100$search_ref = GETPOST('search_ref', 'alpha');
101$search_label = GETPOST('search_label', 'alpha');
102$search_amount = GETPOST('search_amount', 'alpha');
103
104$permissiontoadd = $user->hasRight('loan', 'write');
105
106// Security check
107$socid = GETPOSTINT('socid');
108if ($user->socid) {
109 $socid = $user->socid;
110}
111$result = restrictedArea($user, 'loan', '', '', '');
112
113
114/*
115 * Actions
116 */
117
118if (GETPOST('cancel', 'alpha')) {
119 $action = 'list';
120 $massaction = '';
121}
122if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
123 $massaction = '';
124}
125
126$parameters = array();
127$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
128if ($reshook < 0) {
129 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
130}
131
132if (empty($reshook)) {
133 // Purge search criteria
134 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
135 $search_ref = "";
136 $search_label = "";
137 $search_amount = "";
138 }
139}
140
141
142/*
143 * View
144 */
145$form = new Form($db);
146$now = dol_now();
147
148$help_url="EN:Module_Loan|FR:Module_Emprunt";
149$help_url = '';
150$title = $langs->trans('Loans');
151
152
153// Build and execute select
154// --------------------------------------------------------------------
155$sql = "SELECT l.rowid, l.label, l.capital, l.datestart, l.dateend, l.paid,";
156$sql .= " SUM(pl.amount_capital) as alreadypaid";
157
158$sqlfields = $sql; // $sql fields to remove for count total
159
160$sql .= " FROM ".MAIN_DB_PREFIX."loan as l";
161$linktopl = " LEFT JOIN ".MAIN_DB_PREFIX."payment_loan AS pl ON l.rowid = pl.fk_loan";
162$sql .= $linktopl;
163
164$sql .= " WHERE l.entity = ".$conf->entity;
165if ($search_amount) {
166 $sql .= natural_search("l.capital", $search_amount, 1);
167}
168if ($search_ref) {
169 $sql .= " AND l.rowid = ".((int) $search_ref);
170}
171if ($search_label) {
172 $sql .= natural_search("l.label", $search_label);
173}
174$sql .= " GROUP BY l.rowid, l.label, l.capital, l.paid, l.datestart, l.dateend";
175
176// Count total nb of records
177$nbtotalofrecords = '';
178if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
179 /* The fast and low memory method to get and count full list converts the sql into a sql count */
180 $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql);
181 $sqlforcount = preg_replace('/'.preg_quote($linktopl, '/').'/', '', $sqlforcount);
182 $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount);
183 $resql = $db->query($sqlforcount);
184 if ($resql) {
185 $objforcount = $db->fetch_object($resql);
186 $nbtotalofrecords = $objforcount->nbtotalofrecords;
187 } else {
188 dol_print_error($db);
189 }
190
191 if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller than the paging size (filtering), goto and load page 0
192 $page = 0;
193 $offset = 0;
194 }
195 $db->free($resql);
196}
197
198// Complete request and execute it with limit
199$sql .= $db->order($sortfield, $sortorder);
200if ($limit) {
201 $sql .= $db->plimit($limit + 1, $offset);
202}
203
204$resql = $db->query($sql);
205if (!$resql) {
206 dol_print_error($db);
207 exit;
208}
209
210$num = $db->num_rows($resql);
211
212
213
214// Direct jump if only one record found
215if ($num == 1 && getDolGlobalInt('MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
216 $obj = $db->fetch_object($resql);
217 $id = $obj->rowid;
218 header("Location: ".dol_buildpath('/mymodule/myobject_card.php', 1).'?id='.((int) $id));
219 exit;
220}
221
222
223// Output page
224// --------------------------------------------------------------------
225
226llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'bodyforlist');
227
228$arrayofselected = is_array($toselect) ? $toselect : array();
229
230$param = '';
231if (!empty($mode)) {
232 $param .= '&mode='.urlencode($mode);
233}
234if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
235 $param .= '&contextpage='.urlencode($contextpage);
236}
237if ($limit > 0 && $limit != $conf->liste_limit) {
238 $param .= '&limit='.((int) $limit);
239}
240if ($optioncss != '') {
241 $param .= '&optioncss='.urlencode($optioncss);
242}
243if ($search_ref) {
244 $param .= "&search_ref=".urlencode($search_ref);
245}
246if ($search_label) {
247 $param .= "&search_label=".urlencode($search_label);
248}
249if ($search_amount) {
250 $param .= "&search_amount=".urlencode($search_amount);
251}
252// Add $param from extra fields
253include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
254// Add $param from hooks
255$parameters = array('param' => &$param);
256$reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
257$param .= $hookmanager->resPrint;
258
259// List of mass actions available
260$arrayofmassactions = array();
261if (!empty($permissiontodelete)) {
262 $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
263}
264if (GETPOSTINT('nomassaction') || in_array($massaction, array('presend', 'predelete'))) {
265 $arrayofmassactions = array();
266}
267$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
268
269
270$url = DOL_URL_ROOT.'/loan/card.php?action=create';
271if (!empty($socid)) {
272 $url .= '&socid='.$socid;
273}
274$newcardbutton = '';
275$newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss'=>'reposition'));
276$newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss'=>'reposition'));
277$newcardbutton .= dolGetButtonTitleSeparator();
278$newcardbutton .= dolGetButtonTitle($langs->trans('NewLoan'), '', 'fa fa-plus-circle', $url, '', $permissiontoadd);
279
280$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
281
282print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
283if ($optioncss != '') {
284 print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
285}
286print '<input type="hidden" name="token" value="'.newToken().'">';
287print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
288print '<input type="hidden" name="action" value="list">';
289print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
290print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
291print '<input type="hidden" name="page" value="'.$page.'">';
292print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
293print '<input type="hidden" name="page_y" value="">';
294print '<input type="hidden" name="mode" value="'.$mode.'">';
295
296$newcardbutton = '';
297$newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss'=>'reposition'));
298$newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss'=>'reposition'));
299$newcardbutton .= dolGetButtonTitleSeparator();
300$newcardbutton .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', dol_buildpath('/loan/card.php', 1).'?action=create&backtopage='.urlencode($_SERVER['PHP_SELF']), '', $permissiontoadd);
301
302print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'money-bill-alt', 0, $newcardbutton, '', $limit, 0, 0, 1);
303
304$moreforfilter = '';
305
306$parameters = array();
307$reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
308if (empty($reshook)) {
309 $moreforfilter .= $hookmanager->resPrint;
310} else {
311 $moreforfilter = $hookmanager->resPrint;
312}
313
314if (!empty($moreforfilter)) {
315 print '<div class="liste_titre liste_titre_bydiv centpercent">';
316 print $moreforfilter;
317 $parameters = array();
318 $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
319 print $hookmanager->resPrint;
320 print '</div>';
321}
322
323$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
324$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); // This also change content of $arrayfields with user setup
325$selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
326$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
327
328print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
329print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
330
331// Fields title search
332// --------------------------------------------------------------------
333print '<tr class="liste_titre_filter">';
334// Action column
335if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
336 print '<td class="liste_titre center maxwidthsearch">';
337 $searchpicto = $form->showFilterButtons('left');
338 print $searchpicto;
339 print '</td>';
340}
341
342// Filter: Ref
343print '<td class="liste_titre"><input class="flat" size="4" type="text" name="search_ref" value="'.$search_ref.'"></td>';
344
345// Filter: Label
346print '<td class="liste_titre"><input class="flat" size="12" type="text" name="search_label" value="'.$search_label.'"></td>';
347
348// Filter: Amount
349print '<td class="liste_titre right" ><input class="flat" size="8" type="text" name="search_amount" value="'.$search_amount.'"></td>';
350
351// No filter: Date start
352print '<td class="liste_titre">&nbsp;</td>';
353
354// No filter: Date end
355print '<td class="liste_titre">&nbsp;</td>';
356
357// No filter: Status
358print '<td class="liste_titre"></td>';
359
360// Action column
361if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
362 print '<td class="liste_titre center maxwidthsearch">';
363 $searchpicto = $form->showFilterButtons();
364 print $searchpicto;
365 print '</td>';
366}
367print '</tr>'."\n";
368
369$totalarray = array();
370$totalarray['nbfield'] = 0;
371
372// Fields title label
373// --------------------------------------------------------------------
374print '<tr class="liste_titre">';
375// Action column
376if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
377 print_liste_field_titre('', $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'maxwidthsearch ');
378 $totalarray['nbfield']++;
379}
380print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "l.rowid", "", $param, "", $sortfield, $sortorder);
381$totalarray['nbfield']++;
382print_liste_field_titre("Label", $_SERVER["PHP_SELF"], "l.label", "", $param, '', $sortfield, $sortorder, 'left ');
383$totalarray['nbfield']++;
384print_liste_field_titre("LoanCapital", $_SERVER["PHP_SELF"], "l.capital", "", $param, '', $sortfield, $sortorder, 'right ');
385$totalarray['nbfield']++;
386print_liste_field_titre("DateStart", $_SERVER["PHP_SELF"], "l.datestart", "", $param, '', $sortfield, $sortorder, 'center ');
387$totalarray['nbfield']++;
388print_liste_field_titre("DateEnd", $_SERVER["PHP_SELF"], "l.dateend", "", $param, '', $sortfield, $sortorder, 'center ');
389$totalarray['nbfield']++;
390print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "l.paid", "", $param, '', $sortfield, $sortorder, 'center ');
391$totalarray['nbfield']++;
392if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
393 print_liste_field_titre('', $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'maxwidthsearch ');
394 $totalarray['nbfield']++;
395}
396print "</tr>\n";
397
398
399// Loop on record
400// --------------------------------------------------------------------
401$i = 0;
402$savnbfield = $totalarray['nbfield'];
403$totalarray = array();
404$totalarray['nbfield'] = 0;
405$imaxinloop = ($limit ? min($num, $limit) : $num);
406while ($i < $imaxinloop) {
407 $obj = $db->fetch_object($resql);
408 if (empty($obj)) {
409 break; // Should not happen
410 }
411
412 $object->id = $obj->rowid;
413 $object->ref = $obj->rowid;
414 $object->label = $obj->label;
415 $object->paid = $obj->paid;
416
417
418 if ($mode == 'kanban') {
419 if ($i == 0) {
420 print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
421 print '<div class="box-flex-container kanban">';
422 }
423 // Output Kanban
424 $object->datestart= $obj->datestart;
425 $object->dateend = $obj->dateend;
426 $object->capital = $obj->capital;
427 $object->totalpaid = $obj->paid;
428
429 // Output Kanban
430 $selected = -1;
431 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
432 $selected = 0;
433 if (in_array($object->id, $arrayofselected)) {
434 $selected = 1;
435 }
436 }
437 print $object->getKanbanView('', array('selected' => $selected));
438 if ($i == ($imaxinloop - 1)) {
439 print '</div>';
440 print '</td></tr>';
441 }
442 } else {
443 // Show line of result
444 $j = 0;
445 print '<tr data-rowid="'.$object->id.'" class="oddeven">';
446
447 // Action column
448 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
449 print '<td></td>';
450 }
451
452 // Ref
453 print '<td>'.$object->getNomUrl(1).'</td>';
454
455 // Label
456 print '<td>'.dol_trunc($obj->label, 42).'</td>';
457
458 // Capital
459 print '<td class="right maxwidth100"><span class="amount">'.price($obj->capital).'</span></td>';
460
461 // Date start
462 print '<td class="center width100">'.dol_print_date($db->jdate($obj->datestart), 'day').'</td>';
463
464 // Date end
465 print '<td class="center width100">'.dol_print_date($db->jdate($obj->dateend), 'day').'</td>';
466
467 print '<td class="center nowrap">';
468 print $object->LibStatut($obj->paid, 5, $obj->alreadypaid);
469 print '</td>';
470
471 // Action column
472 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
473 print '<td></td>';
474 }
475
476 print '</tr>'."\n";
477 }
478 $i++;
479}
480
481// If no record found
482if ($num == 0) {
483 $colspan = 7;
484 //foreach ($arrayfields as $key => $val) { if (!empty($val['checked'])) $colspan++; }
485 print '<tr><td colspan="'.$colspan.'" class="opacitymedium">'.$langs->trans("NoRecordFound").'</td></tr>';
486}
487
488$db->free($resql);
489
490$parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
491$reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
492print $hookmanager->resPrint;
493
494print '</table>'."\n";
495print '</div>'."\n";
496
497print '</form>'."\n";
498
499// End of page
500llxFooter();
501$db->close();
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Loan.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
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 dolibarr global constant string value.
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.