dolibarr 18.0.6
list.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2018 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2018 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
6 * Copyright (C) 2019-2021 Frédéric France <frederic.france@netlogic.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28// Load Dolibarr environment
29require '../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/user/class/usergroup.class.php';
31
32// Load translation files required by page
33$langs->loadLangs(array("users"));
34
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 = GETPOST('show_files', 'int'); // 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$search_all = trim((GETPOST('search_all', 'alphanohtml') != '') ? GETPOST('search_all', 'alphanohtml') : GETPOST('sall', 'alphanohtml'));
47$search_group = GETPOST('search_group');
48$search = array();
49
50// Load variable for pagination
51$limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
52$sortfield = GETPOST('sortfield', 'aZ09comma');
53$sortorder = GETPOST('sortorder', 'aZ09comma');
54$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
55if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
56 // If $page is not defined, or '' or -1 or if we click on clear filters
57 $page = 0;
58}
59$offset = $limit * $page;
60$pageprev = $page - 1;
61$pagenext = $page + 1;
62
63// Initialize technical objects
64$object = new UserGroup($db);
65$extrafields = new ExtraFields($db);
66//$diroutputmassaction = $conf->mymodule->dir_output.'/temp/massgeneration/'.$user->id;
67$hookmanager->initHooks(array($contextpage)); // Note that conf->hooks_modules contains array of activated contexes
68
69// Fetch optionals attributes and labels
70$extrafields->fetch_name_optionals_label($object->table_element);
71//$extrafields->fetch_name_optionals_label($object->table_element_line);
72
73$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
74
75if (!$sortfield) {
76 $sortfield = "g.nom";
77}
78if (!$sortorder) {
79 $sortorder = "ASC";
80}
81
82// List of fields to search into when doing a "search in all"
83$fieldstosearchall = array();
84foreach ($object->fields as $key => $val) {
85 if (!empty($val['searchall'])) {
86 $fieldstosearchall['t.'.$key] = $val['label'];
87 }
88}
89
90if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
91 if (!$user->hasRight("user", "group_advance", "read") && !$user->admin) {
93 }
94}
95
96// Users/Groups management only in master entity if transverse mode
97if (isModEnabled('multicompany') && $conf->entity > 1 && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
99}
100
101if (!$user->hasRight("user", "user", "read") && !$user->admin) {
103}
104
105// Defini si peux lire/modifier utilisateurs et permisssions
106$caneditperms = ($user->admin || $user->hasRight("user", "user", "write"));
107$permissiontodelete = ($user->admin || $user->hasRight("user", "user", "write"));
108// Advanced permissions
109if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
110 $caneditperms = ($user->admin || $user->hasRight("user", "group_advance", "write"));
111}
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 // Selection of new fields
134 include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
135
136 // Purge search criteria
137 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
138 foreach ($object->fields as $key => $val) {
139 $search[$key] = '';
140 if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
141 $search[$key.'_dtstart'] = '';
142 $search[$key.'_dtend'] = '';
143 }
144 }
145 $toselect = array();
146 $search_array_options = array();
147 }
148 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
149 || GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
150 $massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
151 }
152
153 // Mass actions
154 $objectclass = 'UserGroup';
155 $objectlabel = 'UserGroup';
156 $uploaddir = $conf->user->dir_output;
157 include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
158}
159
160
161/*
162 * View
163 */
164
165$form = new Form($db);
166
167$now = dol_now();
168
169$title = $langs->trans("UserGroups");
170$help_url = '';
171$morejs = array();
172$morecss = array();
173
174// Build and execute select
175// --------------------------------------------------------------------
176$sql = "SELECT g.rowid, g.nom as name, g.note, g.entity, g.datec, g.tms, COUNT(DISTINCT ugu.fk_user) as nb, COUNT(DISTINCT ugr.fk_id) as nbpermissions";
177
178$sqlfields = $sql;
179
180$sql .= " FROM ".MAIN_DB_PREFIX."usergroup as g";
181$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."usergroup_user as ugu ON ugu.fk_usergroup = g.rowid";
182$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."usergroup_rights as ugr ON ugr.fk_usergroup = g.rowid";
183if (isModEnabled('multicompany') && $conf->entity == 1 && (getDolGlobalInt('MULTICOMPANY_TRANSVERSE_MODE') || ($user->admin && !$user->entity))) {
184 $sql .= " WHERE g.entity IS NOT NULL";
185} else {
186 $sql .= " WHERE g.entity IN (0,".$conf->entity.")";
187}
188if (!empty($search_group)) {
189 natural_search(array("g.nom", "g.note"), $search_group);
190}
191if ($search_all) {
192 $sql .= natural_search(array("g.nom", "g.note"), $search_all);
193}
194$sql .= " GROUP BY g.rowid, g.nom, g.note, g.entity, g.datec, g.tms";
195
196// Count total nb of records
197$nbtotalofrecords = '';
198if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
199 /* The fast and low memory method to get and count full list converts the sql into a sql count */
200 $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql);
201 $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount);
202 $resql = $db->query($sqlforcount);
203 if ($resql) {
204 $objforcount = $db->fetch_object($resql);
205 $nbtotalofrecords = $objforcount->nbtotalofrecords;
206 } else {
207 dol_print_error($db);
208 }
209
210 if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller than paging size (filtering), goto and load page 0
211 $page = 0;
212 $offset = 0;
213 }
214 $db->free($resql);
215}
216
217// Complete request and execute it with limit
218$sql .= $db->order($sortfield, $sortorder);
219
220$resql = $db->query($sql);
221if (!$resql) {
222 dol_print_error($db);
223 exit;
224}
225
226$num = $db->num_rows($resql);
227
228$i = 0;
229
230
231// Output page
232// --------------------------------------------------------------------
233
234llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', 'bodyforlist');
235
236$arrayofselected = is_array($toselect) ? $toselect : array();
237
238$param = "&search_group=".urlencode($search_group)."&search_all=".urlencode($search_all);
239if (!empty($mode)) {
240 $param .= '&mode='.urlencode($mode);
241}
242if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
243 $param .= '&contextpage='.urlencode($contextpage);
244}
245if ($limit > 0 && $limit != $conf->liste_limit) {
246 $param .= '&limit='.((int) $limit);
247}
248foreach ($search as $key => $val) {
249 if (is_array($search[$key])) {
250 foreach ($search[$key] as $skey) {
251 if ($skey != '') {
252 $param .= '&search_'.$key.'[]='.urlencode($skey);
253 }
254 }
255 } elseif (preg_match('/(_dtstart|_dtend)$/', $key) && !empty($val)) {
256 $param .= '&search_'.$key.'month='.((int) GETPOST('search_'.$key.'month', 'int'));
257 $param .= '&search_'.$key.'day='.((int) GETPOST('search_'.$key.'day', 'int'));
258 $param .= '&search_'.$key.'year='.((int) GETPOST('search_'.$key.'year', 'int'));
259 } elseif ($search[$key] != '') {
260 $param .= '&search_'.$key.'='.urlencode($search[$key]);
261 }
262}
263if ($optioncss != '') {
264 $param .= '&optioncss='.urlencode($optioncss);
265}
266// Add $param from extra fields
267include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
268// Add $param from hooks
269$parameters = array();
270$reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
271$param .= $hookmanager->resPrint;
272
273// List of mass actions available
274$arrayofmassactions = array(
275 //'validate'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("Validate"),
276 //'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
277 //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
278 //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
279);
280if (!empty($permissiontodelete)) {
281 $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
282}
283if (GETPOST('nomassaction', 'int') || in_array($massaction, array('presend', 'predelete'))) {
284 $arrayofmassactions = array();
285}
286$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
287
288print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
289if ($optioncss != '') {
290 print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
291}
292print '<input type="hidden" name="token" value="'.newToken().'">';
293print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
294print '<input type="hidden" name="action" value="list">';
295print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
296print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
297print '<input type="hidden" name="page" value="'.$page.'">';
298print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
299print '<input type="hidden" name="page_y" value="">';
300print '<input type="hidden" name="mode" value="'.$mode.'">';
301
302$newcardbutton = '';
303$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'));
304$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'));
305
306if ($caneditperms) {
307 $newcardbutton .= dolGetButtonTitleSeparator();
308 $newcardbutton .= dolGetButtonTitle($langs->trans('NewGroup'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/user/group/card.php?action=create&leftmenu=');
309}
310
311print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'object_'.$object->picto, 0, $newcardbutton, '', $limit, 0, 0, 1);
312
313// Add code for pre mass action (confirmation or email presend form)
314$topicmail = "SendGroup";
315$modelmail = "group";
316$objecttmp = new UserGroup($db);
317$trackid = 'grp'.$object->id;
318include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
319
320if ($search_all) {
321 $setupstring = '';
322 foreach ($fieldstosearchall as $key => $val) {
323 $fieldstosearchall[$key] = $langs->trans($val);
324 $setupstring .= $key."=".$val.";";
325 }
326 print '<!-- Search done like if GROUP_QUICKSEARCH_ON_FIELDS = '.$setupstring.' -->'."\n";
327 print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_all).join(', ', $fieldstosearchall).'</div>'."\n";
328}
329
330$moreforfilter = '';
331
332$parameters = array();
333$reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
334if (empty($reshook)) {
335 $moreforfilter .= $hookmanager->resPrint;
336} else {
337 $moreforfilter = $hookmanager->resPrint;
338}
339
340if (!empty($moreforfilter)) {
341 print '<div class="liste_titre liste_titre_bydiv centpercent">';
342 print $moreforfilter;
343 $parameters = array();
344 $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
345 print $hookmanager->resPrint;
346 print '</div>';
347}
348
349$varpage=empty($contextpage)?$_SERVER["PHP_SELF"]:$contextpage;
350$selectedfields = ($mode != 'kanban' ? $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN', '')) : ''); // This also change content of $arrayfields
351$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
352
353print '<div class="div-table-responsive">';
354print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
355
356// Fields title search
357// --------------------------------------------------------------------
358// ...
359
360$totalarray = array();
361$totalarray['nbfield'] = 0;
362
363// Fields title label
364// --------------------------------------------------------------------
365print '<tr class="liste_titre">';
366if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
367 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
368 $totalarray['nbfield']++;
369}
370print_liste_field_titre("Group", $_SERVER["PHP_SELF"], "g.nom", $param, "", "", $sortfield, $sortorder);
371$totalarray['nbfield']++;
372//multicompany
373if (isModEnabled('multicompany') && empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE) && $conf->entity == 1) {
374 print_liste_field_titre("Entity", $_SERVER["PHP_SELF"], "g.entity", $param, "", '', $sortfield, $sortorder, 'center ');
375 $totalarray['nbfield']++;
376}
377print_liste_field_titre("NbOfUsers", $_SERVER["PHP_SELF"], "nb", $param, "", '', $sortfield, $sortorder, 'center ');
378$totalarray['nbfield']++;
379print_liste_field_titre("NbOfPermissions", $_SERVER["PHP_SELF"], "nbpermissions", $param, "", '', $sortfield, $sortorder, 'center ');
380$totalarray['nbfield']++;
381print_liste_field_titre("DateCreationShort", $_SERVER["PHP_SELF"], "g.datec", $param, "", '', $sortfield, $sortorder, 'center ');
382$totalarray['nbfield']++;
383print_liste_field_titre("DateLastModification", $_SERVER["PHP_SELF"], "g.tms", $param, "", '', $sortfield, $sortorder, 'center ');
384$totalarray['nbfield']++;
385// Extra fields
386include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
387// Hook fields
388$parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder, 'totalarray'=>&$totalarray);
389$reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
390print $hookmanager->resPrint;
391/*if (!empty($arrayfields['anotherfield']['checked'])) {
392 print '<th class="liste_titre right">'.$langs->trans("AnotherField").'</th>';
393 $totalarray['nbfield']++;
394 }*/
395// Action column
396if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
397 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
398 $totalarray['nbfield']++;
399}
400print '</tr>'."\n";
401
402
403// Loop on record
404// --------------------------------------------------------------------
405$i = 0;
406$savnbfield = $totalarray['nbfield'];
407$totalarray = array();
408$totalarray['nbfield'] = 0;
409$imaxinloop = ($limit ? min($num, $limit) : $num);
410while ($i < $imaxinloop) {
411 $obj = $db->fetch_object($resql);
412 if (empty($obj)) {
413 break; // Should not happen
414 }
415
416 // Store properties in $object
417 $object->setVarsFromFetchObj($obj);
418
419 $object->name = $obj->name;
420 $object->note = $obj->note;
421 $object->nb_rights = $obj->nbpermissions;
422 $object->nb_users = $obj->nb;
423
424 if ($mode == 'kanban') {
425 if ($i == 0) {
426 print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
427 print '<div class="box-flex-container kanban">';
428 }
429 // Output Kanban
430 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
431 $selected = 0;
432 if (in_array($object->id, $arrayofselected)) {
433 $selected = 1;
434 }
435 }
436 print $object->getKanbanView('', array('selected' => in_array($object->id, $arrayofselected)));
437 if ($i == ($imaxinloop - 1)) {
438 print '</div>';
439 print '</td></tr>';
440 }
441 } else {
442 // Show here line of result
443 $j = 0;
444 print '<tr data-rowid="'.$object->id.'" class="oddeven">';
445 // Action column
446 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
447 print '<td class="nowrap center">';
448 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
449 $selected = 0;
450 if (in_array($object->id, $arrayofselected)) {
451 $selected = 1;
452 }
453 print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
454 }
455 print '</td>';
456 if (!$i) {
457 $totalarray['nbfield']++;
458 }
459 }
460
461 print '<td class="tdoverflowmax125">';
462 print $object->getNomUrl(1);
463 if (isModEnabled('multicompany') && !$obj->entity) {
464 print img_picto($langs->trans("GlobalGroup"), 'redstar');
465 }
466 print "</td>";
467 if (!$i) {
468 $totalarray['nbfield']++;
469 }
470 //multicompany
471 if (isModEnabled('multicompany') && is_object($mc) && empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE) && $conf->entity == 1) {
472 $mc->getInfo($obj->entity);
473 print '<td class="center">'.dol_escape_htmltag($mc->label).'</td>';
474 if (!$i) {
475 $totalarray['nbfield']++;
476 }
477 }
478 print '<td class="center">'.dol_escape_htmltag($obj->nb).'</td>';
479 if (!$i) {
480 $totalarray['nbfield']++;
481 }
482 print '<td class="center">';
483 print '<a href="'.DOL_URL_ROOT.'/user/group/perms.php?id='.$obj->rowid.'">'.dol_escape_htmltag($obj->nbpermissions).'</a>';
484 print '</td>';
485 if (!$i) {
486 $totalarray['nbfield']++;
487 }
488 print '<td class="center nowrap">'.dol_print_date($db->jdate($obj->datec), "dayhour").'</td>';
489 if (!$i) {
490 $totalarray['nbfield']++;
491 }
492 print '<td class="center nowrap">'.dol_print_date($db->jdate($obj->tms), "dayhour").'</td>';
493 if (!$i) {
494 $totalarray['nbfield']++;
495 }
496 // Extra fields
497 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
498 // Fields from hook
499 $parameters = array('arrayfields'=>$arrayfields, 'object'=>$object, 'obj'=>$obj, 'i'=>$i, 'totalarray'=>&$totalarray);
500 $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
501 print $hookmanager->resPrint;
502 // Action column
503 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
504 print '<td class="nowrap center">';
505 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
506 $selected = 0;
507 if (in_array($object->id, $arrayofselected)) {
508 $selected = 1;
509 }
510 print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
511 }
512 print '</td>';
513 if (!$i) {
514 $totalarray['nbfield']++;
515 }
516 }
517
518 print '</tr>'."\n";
519 }
520 $i++;
521}
522
523// Show total line
524include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
525
526// If no record found
527if ($num == 0) {
528 /*$colspan = 1;
529 foreach ($arrayfields as $key => $val) {
530 if (!empty($val['checked'])) {
531 $colspan++;
532 }
533 }*/
534 $colspan = $savnbfield;
535 print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
536}
537
538$db->free($resql);
539
540print '</table>'."\n";
541print '</div>'."\n";
542
543print '</form>'."\n";
544
545// End of page
546llxFooter();
547$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Class to manage user groups.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
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 dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
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.
print_barre_liste($titre, $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.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.