dolibarr 25.0.0-alpha
list.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2016 Marcos García <marcosgdf@gmail.com>
3 * Copyright (C) 2022 Open-Dsi <support@open-dsi.fr>
4 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
5 * Copyright (C) 2024 Benjamin Falière <benjamin.faliere@altairis.fr>
6 * Copyright (C) 2024-2026 Frédéric France <frederic.france@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28// Load Dolibarr environment
29require '../main.inc.php';
38require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
39require_once DOL_DOCUMENT_ROOT.'/variants/class/ProductAttribute.class.php';
40
41// Load translation files required by the page
42$langs->loadLangs(array("products", "other"));
43
44$action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'create'/'add', 'edit'/'update', 'view', ...
45$massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
46$show_files = GETPOSTINT('show_files'); // Show files area generated by bulk actions
47$confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
48$cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
49$toselect = GETPOST('toselect', 'array:int'); // Array of ids of elements selected into a list
50$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : str_replace('_', '', basename(dirname(__FILE__)).basename(__FILE__, '.php')); // To manage different context of search
51$backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
52$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
53$mode = GETPOST('mode', 'aZ'); // The display mode ('list', 'kanban', 'hierarchy', 'calendar', 'gantt', ...)
54
55$id = GETPOSTINT('id');
56$rowid = GETPOSTINT('rowid'); // for line reordering in not ajax mode
57
58// Load variable for pagination
59$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
60$sortfield = GETPOST('sortfield', 'aZ09comma');
61$sortorder = GETPOST('sortorder', 'aZ09comma');
62$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT('page');
63if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
64 // If $page is not defined, or '' or -1 or if we click on clear filters
65 $page = 0;
66}
67$offset = $limit * $page;
68$pageprev = $page - 1;
69$pagenext = $page + 1;
70
71// Initialize a technical objects
73
74$diroutputmassaction = $conf->variants->dir_output.'/temp/massgeneration/'.$user->id;
75$hookmanager->initHooks(array('productattributelist')); // Note that conf->hooks_modules contains array
76
77// Fetch optionals attributes and labels
78$extrafields->fetch_name_optionals_label($object->table_element);
79
80$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
81
82// Default sort order (if not yet defined by previous GETPOST)
83if (!$sortfield) {
84 $sortfield = "t.position"; // Set here default search field. By default 1st field in definition.
85}
86if (!$sortorder) {
87 $sortorder = "ASC";
88}
89
90// Initialize array of search criteria
91$search_all = trim(GETPOST('search_all', 'alphanohtml'));
92$search = array();
93foreach ($object->fields as $key => $val) {
94 if (GETPOST('search_'.$key, 'alpha') !== '') {
95 $search[$key] = GETPOST('search_'.$key, 'alpha');
96 }
97 if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
98 $search[$key.'_dtstart'] = dol_mktime(0, 0, 0, GETPOSTINT('search_'.$key.'_dtstartmonth'), GETPOSTINT('search_'.$key.'_dtstartday'), GETPOSTINT('search_'.$key.'_dtstartyear'));
99 $search[$key.'_dtend'] = dol_mktime(23, 59, 59, GETPOSTINT('search_'.$key.'_dtendmonth'), GETPOSTINT('search_'.$key.'_dtendday'), GETPOSTINT('search_'.$key.'_dtendyear'));
100 }
101}
102$search['nb_of_values'] = GETPOST('search_nb_of_values', 'alpha');
103$search['nb_products'] = GETPOST('search_nb_products', 'alpha');
104
105$fieldstosearchall = array();
106// List of fields to search into when doing a "search in all"
107foreach ($object->fields as $key => $val) {
108 if (!empty($val['searchall'])) {
109 $fieldstosearchall['t.'.$key] = $val['label'];
110 }
111}
112$parameters = array('fieldstosearchall' => $fieldstosearchall);
113$reshook = $hookmanager->executeHooks('completeFieldsToSearchAll', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
114if ($reshook > 0) {
115 $fieldstosearchall = empty($hookmanager->resArray['fieldstosearchall']) ? array() : $hookmanager->resArray['fieldstosearchall'];
116} elseif ($reshook == 0) {
117 $fieldstosearchall = array_merge($fieldstosearchall, empty($hookmanager->resArray['fieldstosearchall']) ? array() : $hookmanager->resArray['fieldstosearchall']);
118}
119
120// Definition of array of fields for columns
121$arrayfields = array();
122foreach ($object->fields as $key => $val) {
123 // If $val['visible']==0, then we never show the field
124 if (!empty($val['visible'])) {
125 $visible = (int) dol_eval((string) $val['visible'], 1);
126 $arrayfields['t.'.$key] = array(
127 'label' => $val['label'],
128 'checked' => (($visible < 0) ? '0' : '1'),
129 'enabled' => (string) (int) (abs($visible) != 3 && (bool) dol_eval((string) $val['enabled'], 1)),
130 'position' => $val['position'],
131 'help' => isset($val['help']) ? $val['help'] : ''
132 );
133 }
134}
135$arrayfields['nb_of_values'] = array(
136 'label' => $langs->trans('NbOfDifferentValues'),
137 'checked' => '1',
138 'enabled' => '1',
139 'position' => 40,
140 'help' => ''
141);
142$arrayfields['nb_products'] = array(
143 'label' => $langs->trans('NbProducts'),
144 'checked' => '1',
145 'enabled' => '1',
146 'position' => 50,
147 'help' => ''
148);
149// Extra fields
150include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
151// Add hook to complete $arrayfield
152$parameters = array('arrayfields' => &$arrayfields);
153$reshook = $hookmanager->executeHooks('completeArrayFields', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
154
155$object->fields = dol_sort_array($object->fields, 'position');
156$arrayfields = dol_sort_array($arrayfields, 'position');
157
158$permissiontoread = $user->hasRight('variants', 'read');
159$permissiontoadd = $user->hasRight('variants', 'write');
160$permissiontodelete = $user->hasRight('variants', 'delete');
161
162// Security check
163if (!isModEnabled('variants')) {
164 accessforbidden('Module not enabled');
165}
166$socid = 0;
167if ($user->socid > 0) { // Protection if external user
168 //$socid = $user->socid;
170}
171if (!$permissiontoread) {
173}
174
175
176/*
177 * Actions
178 */
179
180if (GETPOST('cancel', 'alpha')) {
181 $action = 'list';
182 $massaction = '';
183}
184if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
185 $massaction = '';
186}
187
188$parameters = array('arrayfields' => &$arrayfields);
189$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
190if ($reshook < 0) {
191 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
192}
193
194if (empty($reshook)) {
195 // Selection of new fields
196 include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
197
198 // Purge search criteria
199 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
200 foreach ($object->fields as $key => $val) {
201 $search[$key] = '';
202 if (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
203 $search[$key.'_dtstart'] = '';
204 $search[$key.'_dtend'] = '';
205 }
206 }
207 $search['nb_of_values'] = '';
208 $search['nb_products'] = '';
209 $toselect = array();
210 $search_array_options = array();
211 }
212 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
213 || GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
214 $massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
215 }
216
217 if ($action == 'up' && $permissiontoadd) {
218 $object->attributeMoveUp($rowid);
219
220 header('Location: '.$_SERVER['PHP_SELF']);
221 exit();
222 } elseif ($action == 'down' && $permissiontoadd) {
223 $object->attributeMoveDown($rowid);
224
225 header('Location: '.$_SERVER['PHP_SELF']);
226 exit();
227 }
228
229 // Mass actions
230 $objectclass = 'ProductAttribute';
231 $objectlabel = 'ProductAttribute';
232 $uploaddir = $conf->variants->dir_output;
233 include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
234}
235
236
237
238/*
239 * View
240 */
241
242$form = new Form($db);
243
244$now = dol_now();
245
246$title = $langs->trans("ProductAttributes");
247$help_url = '';
248$morejs = array();
249$morecss = array();
250
251
252// Build and execute select
253// --------------------------------------------------------------------
254$sql = "SELECT COUNT(DISTINCT pav.rowid) AS nb_of_values, COUNT(DISTINCT pac2v.fk_prod_combination) AS nb_products, ";
255$sql .= $object->getFieldList("t");
256// Add fields from extrafields
257if (!empty($extrafields->attributes[$object->table_element]['label'])) {
258 foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
259 $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : "");
260 }
261}
262// Add fields from hooks
263$parameters = array();
264$reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
265$sql .= $hookmanager->resPrint;
266$sql = preg_replace('/,\s*$/', '', $sql);
267
268$sqlfields = $sql; // $sql fields to remove for count total
269
270$sql .= " FROM ".MAIN_DB_PREFIX.$object->table_element." as t";
271if (isset($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) {
272 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (t.rowid = ef.fk_object)";
273}
274$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_attribute_combination2val AS pac2v ON pac2v.fk_prod_attr = t.rowid";
275$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_attribute_value AS pav ON pav.fk_product_attribute = t.rowid";
276// Add table from hooks
277$parameters = array();
278$reshook = $hookmanager->executeHooks('printFieldListFrom', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
279$sql .= $hookmanager->resPrint;
280if ($object->ismultientitymanaged == 1) {
281 $sql .= " WHERE t.entity IN (".getEntity($object->element, (GETPOSTINT('search_current_entity') ? 0 : 1)).")";
282} else {
283 $sql .= " WHERE 1 = 1";
284}
285foreach ($search as $key => $val) {
286 if (array_key_exists($key, $object->fields)) {
287 if ($key == 'status' && $search[$key] == -1) {
288 continue;
289 }
290 $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
291 if ((strpos($object->fields[$key]['type'], 'integer:') === 0) || (strpos($object->fields[$key]['type'], 'sellist:') === 0) || !empty($object->fields[$key]['arrayofkeyval'])) {
292 if ($search[$key] == '-1' || ($search[$key] === '0' && (empty($object->fields[$key]['arrayofkeyval']) || !array_key_exists('0', $object->fields[$key]['arrayofkeyval'])))) {
293 $search[$key] = '';
294 }
295 $mode_search = 2;
296 }
297 if ($search[$key] != '') {
298 $sql .= natural_search("t.".$db->sanitize($key), $search[$key], (($key == 'status') ? 2 : $mode_search));
299 }
300 } else {
301 if (preg_match('/(_dtstart|_dtend)$/', $key) && $search[$key] != '') {
302 $columnName = preg_replace('/(_dtstart|_dtend)$/', '', $key);
303 if (preg_match('/^(date|timestamp|datetime)/', $object->fields[$columnName]['type'])) {
304 if (preg_match('/_dtstart$/', $key)) {
305 $sql .= " AND t.".$db->sanitize($columnName)." >= '".$db->idate($search[$key])."'";
306 }
307 if (preg_match('/_dtend$/', $key)) {
308 $sql .= " AND t.".$db->sanitize($columnName)." <= '".$db->idate($search[$key])."'";
309 }
310 }
311 }
312 }
313}
314if ($search_all) {
315 $sql .= natural_search(array_keys($fieldstosearchall), $search_all);
316}
317//$sql.= dolSqlDateFilter("t.field", $search_xxxday, $search_xxxmonth, $search_xxxyear);
318// Add where from extra fields
319include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
320// Add where from hooks
321$parameters = array();
322$reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
323$sql .= $hookmanager->resPrint;
324
325$hasgroupby = true;
326$sql .= " GROUP BY ";
327foreach ($object->fields as $key => $val) {
328 $sql .= "t.".$db->sanitize($key).", ";
329}
330// Add fields from extrafields
331if (!empty($extrafields->attributes[$object->table_element]['label'])) {
332 foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
333 $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? "ef.".$key.', ' : '');
334 }
335}
336// Add where from hooks
337$parameters = array();
338$reshook = $hookmanager->executeHooks('printFieldListGroupBy', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
339$sql .= $hookmanager->resPrint;
340$sql = preg_replace("/,\s*$/", "", $sql);
341
342$sql .= " HAVING 1=1";
343if ($search['nb_of_values'] != '') {
344 $sql .= natural_search("nb_of_values", $search['nb_of_values'], 1);
345}
346if ($search['nb_products'] != '') {
347 $sql .= natural_search("nb_products", $search['nb_products'], 1);
348}
349// Add HAVING from hooks
350$parameters = array();
351$reshook = $hookmanager->executeHooks('printFieldListHaving', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
352if (empty($reshook)) {
353 $sql .= empty($hookmanager->resPrint) ? "" : " HAVING 1=1 ".$hookmanager->resPrint;
354} else {
355 $sql = $hookmanager->resPrint;
356}
357
358// Count total nb of records
359$nbtotalofrecords = '';
360if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
361 /* This old and fast method to get and count full list returns all record so use a high amount of memory.
362 $resql = $db->query($sql);
363 $nbtotalofrecords = $db->num_rows($resql);
364 */
365 /* The slow method does not consume memory on mysql (not tested on pgsql) */
366 /*$resql = $db->query($sql, 0, 'auto', 1);
367 while ($db->fetch_object($resql)) {
368 $nbtotalofrecords++;
369 }*/
370 /* The fast and low memory method to get and count full list converts the sql into a sql count */
371 $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql);
372 $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount);
373
374 $resql = $db->query($sqlforcount);
375 if ($resql) {
376 if ($hasgroupby) {
377 $nbtotalofrecords = $db->num_rows($resql);
378 } else {
379 $objforcount = $db->fetch_object($resql);
380 $nbtotalofrecords = $objforcount->nbtotalofrecords;
381 }
382 if (($page * $limit) > (int) $nbtotalofrecords) { // if total resultset is smaller than the paging size (filtering), goto and load page 0
383 $page = 0;
384 $offset = 0;
385 }
386 $db->free($resql);
387 }
388}
389
390// Complete request and execute it with limit
391$sql .= $db->order($sortfield, $sortorder);
392if ($limit) {
393 $sql .= $db->plimit($limit + 1, $offset);
394}
395
396$resql = $db->query($sql);
397if (!$resql) {
399 exit;
400}
401
402$num = $db->num_rows($resql);
403
404
405// Direct jump if only one record found
406if ($num == 1 && getDolGlobalInt('MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
407 $obj = $db->fetch_object($resql);
408 $id = $obj->rowid;
409 header("Location: " . dol_buildpath('/variants/card.php', 2) . '?id='.((int) $id));
410 exit;
411}
412
413
414// Output page
415// --------------------------------------------------------------------
416
417llxHeader('', $title, $help_url, '', 0, 0, $morejs, $morecss, '', 'bodyforlist');
418
419$arrayofselected = is_array($toselect) ? $toselect : array();
420
421$param = '';
422if (!empty($mode)) {
423 $param .= '&mode='.urlencode($mode);
424}
425if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
426 $param .= '&contextpage='.urlencode($contextpage);
427}
428if ($limit > 0 && $limit != $conf->liste_limit) {
429 $param .= '&limit='.((int) $limit);
430}
431if ($optioncss != '') {
432 $param .= '&optioncss='.urlencode($optioncss);
433}
434/*
435if ($groupby != '') {
436 $param .= '&groupby='.urlencode($groupby);
437}
438*/
439foreach ($search as $key => $val) {
440 if (is_array($search[$key])) {
441 foreach ($search[$key] as $skey) {
442 if ($skey != '') {
443 $param .= '&search_'.$key.'[]='.urlencode($skey);
444 }
445 }
446 } elseif (preg_match('/(_dtstart|_dtend)$/', $key) && !empty($val)) {
447 $param .= '&search_'.$key.'month='.(GETPOSTINT('search_'.$key.'month'));
448 $param .= '&search_'.$key.'day='.(GETPOSTINT('search_'.$key.'day'));
449 $param .= '&search_'.$key.'year='.(GETPOSTINT('search_'.$key.'year'));
450 } elseif ($search[$key] != '') {
451 $param .= '&search_'.$key.'='.urlencode($search[$key]);
452 }
453}
454// Add $param from extra fields
455include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
456// Add $param from hooks
457$parameters = array('param' => &$param);
458$reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
459$param .= $hookmanager->resPrint;
460
461// List of mass actions available
462$arrayofmassactions = array(
463 //'validate'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("Validate"),
464 //'generate_doc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("ReGeneratePDF"),
465 //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
466 //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
467);
468if (!empty($permissiontodelete)) {
469 $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
470}
471if (GETPOSTINT('nomassaction') || in_array($massaction, array('presend', 'predelete'))) {
472 $arrayofmassactions = array();
473}
474$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
475
476print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
477if ($optioncss != '') {
478 print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
479}
480print '<input type="hidden" name="token" value="'.newToken().'">';
481print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
482print '<input type="hidden" name="action" value="list">';
483print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
484print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
485print '<input type="hidden" name="page" value="'.$page.'">';
486print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
487print '<input type="hidden" name="page_y" value="">';
488print '<input type="hidden" name="mode" value="'.$mode.'">';
489
490$newcardbutton = '';
491$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'));
492$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'));
493$newcardbutton .= dolGetButtonTitleSeparator();
494$newcardbutton .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/variants/card.php?action=create&backtopage='.urlencode($_SERVER['PHP_SELF']), '', $permissiontoadd);
495
496print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'object_'.$object->picto, 0, $newcardbutton, '', $limit, 0, 0, 1);
497
498// Add code for pre mass action (confirmation or email presend form)
499$topicmail = "SendProductAttributeRef";
500$modelmail = "productattribute";
501$objecttmp = new ProductAttribute($db);
502$trackid = 'pa'.$object->id;
503include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
504
505if ($search_all) {
506 $setupstring = '';
507 foreach ($fieldstosearchall as $key => $val) {
508 $fieldstosearchall[$key] = $langs->trans($val);
509 $setupstring .= $key."=".$val.";";
510 }
511 print '<!-- Search done like if MYOBJECT_QUICKSEARCH_ON_FIELDS = '.$setupstring.' -->'."\n";
512 print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_all).implode(', ', $fieldstosearchall).'</div>'."\n";
513}
514
515$moreforfilter = '';
516/*$moreforfilter.='<div class="divsearchfield">';
517$moreforfilter.= $langs->trans('MyFilter') . ': <input type="text" name="search_myfield" value="'.dol_escape_htmltag($search_myfield).'">';
518$moreforfilter.= '</div>';*/
519
520$parameters = array();
521$reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
522if (empty($reshook)) {
523 $moreforfilter .= $hookmanager->resPrint;
524} else {
525 $moreforfilter = $hookmanager->resPrint;
526}
527
528if (!empty($moreforfilter)) {
529 print '<div class="liste_titre liste_titre_bydiv centpercent">';
530 print $moreforfilter;
531 print '</div>';
532}
533
534$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
535$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, $conf->main_checkbox_left_column); // This also change content of $arrayfields with user setup
536$selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
537$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
538
539print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
540print '<table id="tableattributes" class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
541
542
543// Fields title search
544// --------------------------------------------------------------------
545print '<tr class="liste_titre_filter nodrag nodrop">';
546// Action column
547if ($conf->main_checkbox_left_column) {
548 print '<td class="liste_titre center maxwidthsearch">';
549 $searchpicto = $form->showFilterButtons('left');
550 print $searchpicto;
551 print '</td>';
552}
553foreach ($object->fields as $key => $val) {
554 //$searchkey = empty($search[$key]) ? '' : $search[$key];
555 $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
556 if ($key == 'status') {
557 $cssforfield .= ($cssforfield ? ' ' : '').'center';
558 } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
559 $cssforfield .= ($cssforfield ? ' ' : '').'center';
560 } elseif (in_array($val['type'], array('timestamp'))) {
561 $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
562 } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('id', 'rowid', 'ref', 'status')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
563 $cssforfield .= ($cssforfield ? ' ' : '').'right';
564 }
565 if (!empty($arrayfields['t.'.$key]['checked'])) {
566 print '<td class="liste_titre'.($cssforfield ? ' '.$cssforfield : '').($key == 'status' ? ' parentonrightofpage' : '').'">';
567 if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) {
568 print $form->selectarray('search_'.$key, $val['arrayofkeyval'], (isset($search[$key]) ? $search[$key] : ''), 1, 0, 0, '', 1, 0, 0, '', 'maxwidth100'.($key == 'status' ? ' search_status width100 onrightofpage' : ''), 1);
569 } elseif ((strpos($val['type'], 'integer:') === 0) || (strpos($val['type'], 'sellist:') === 0)) {
570 print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] : ''), '', '', 'search_', $cssforfield.' maxwidth250', 1);
571 } elseif (preg_match('/^(date|timestamp|datetime)/', $val['type'])) {
572 print '<div class="nowrap">';
573 print $form->selectDate($search[$key.'_dtstart'] ? $search[$key.'_dtstart'] : '', "search_".$key."_dtstart", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
574 print '</div>';
575 print '<div class="nowrap">';
576 print $form->selectDate($search[$key.'_dtend'] ? $search[$key.'_dtend'] : '', "search_".$key."_dtend", 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
577 print '</div>';
578 } elseif ($key == 'lang') {
579 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
580 $formadmin = new FormAdmin($db);
581 print $formadmin->select_language((isset($search[$key]) ? $search[$key] : ''), 'search_lang', 0, array(), 1, 0, 0, 'minwidth100imp maxwidth125', 2);
582 } else {
583 print '<input type="text" class="flat maxwidth'.($val['type'] == 'integer' ? '50' : '75').'" name="search_'.$key.'" value="'.dol_escape_htmltag(isset($search[$key]) ? $search[$key] : '').'">';
584 }
585 print '</td>';
586 }
587}
588// Extra fields
589include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
590// Fields from hook
591$parameters = array('arrayfields' => $arrayfields);
592$reshook = $hookmanager->executeHooks('printFieldListOption', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
593print $hookmanager->resPrint;
594
595$key = 'nb_of_values';
596if (!empty($arrayfields[$key]['checked'])) {
597 print '<td class="liste_titre center">';
598 print '<input type="text" class="flat maxwidth50" name="search_'.$key.'" value="'.dol_escape_htmltag(isset($search[$key]) ? $search[$key] : '').'">';
599 print '</td>';
600}
601$key = 'nb_products';
602if (!empty($arrayfields[$key]['checked'])) {
603 print '<td class="liste_titre center">';
604 print '<input type="text" class="flat maxwidth50" name="search_'.$key.'" value="'.dol_escape_htmltag(isset($search[$key]) ? $search[$key] : '').'">';
605 print '</td>';
606}
607// Action column
608if (!$conf->main_checkbox_left_column) {
609 print '<td class="liste_titre center maxwidthsearch">';
610 $searchpicto = $form->showFilterButtons();
611 print $searchpicto;
612 print '</td>';
613}
614// Move
615print '<td class="liste_titre linecolmove width25"></td>';
616print '</tr>'."\n";
617
618$totalarray = array();
619$totalarray['nbfield'] = 0;
620
621// Fields title label
622// --------------------------------------------------------------------
623print '<tr class="liste_titre nodrag nodrop">';
624// Action column
625if ($conf->main_checkbox_left_column) {
626 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
627 $totalarray['nbfield']++;
628}
629foreach ($object->fields as $key => $val) {
630 $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
631 if ($key == 'status') {
632 $cssforfield .= ($cssforfield ? ' ' : '').'center';
633 } elseif (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
634 $cssforfield .= ($cssforfield ? ' ' : '').'center';
635 } elseif (in_array($val['type'], array('timestamp'))) {
636 $cssforfield .= ($cssforfield ? ' ' : '').'nowrap';
637 } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('id', 'rowid', 'ref', 'status')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
638 $cssforfield .= ($cssforfield ? ' ' : '').'right';
639 }
640 $cssforfield = preg_replace('/small\s*/', '', $cssforfield); // the 'small' css must not be used for the title label
641 if (!empty($arrayfields['t.'.$key]['checked'])) {
642 print getTitleFieldOfList($arrayfields['t.'.$key]['label'], 0, $_SERVER['PHP_SELF'], 't.'.$key, '', $param, '', $sortfield, $sortorder, ($cssforfield ? $cssforfield.' ' : ''), 0, (empty($val['helplist']) ? '' : $val['helplist']))."\n";
643 $totalarray['nbfield']++;
644 }
645}
646// Extra fields
647include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
648// Hook fields
649$parameters = array('arrayfields' => $arrayfields, 'param' => $param, 'sortfield' => $sortfield, 'sortorder' => $sortorder, 'totalarray' => &$totalarray);
650$reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
651print $hookmanager->resPrint;
652
653$key = 'nb_of_values';
654if (!empty($arrayfields[$key]['checked'])) {
655 // @phan-suppress-next-line PhanTypeInvalidDimOffset
656 print getTitleFieldOfList($arrayfields[$key]['label'], 0, $_SERVER['PHP_SELF'], $key, '', $param, 'class="center"', $sortfield, $sortorder, 'center ')."\n";
657 $totalarray['nbfield']++;
658}
659$key = 'nb_products';
660if (!empty($arrayfields[$key]['checked'])) {
661 print getTitleFieldOfList($arrayfields[$key]['label'], 0, $_SERVER['PHP_SELF'], $key, '', $param, 'class="center"', $sortfield, $sortorder, 'center ')."\n";
662 $totalarray['nbfield']++;
663}
664// Action column
665if (!$conf->main_checkbox_left_column) {
666 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
667 $totalarray['nbfield']++;
668}
669// Move
670print getTitleFieldOfList('', 0, '', '', '', '', '', '', '', 'linecolmove ')."\n";
671$totalarray['nbfield']++;
672print '</tr>'."\n";
673
674
675// Detect if we need a fetch on each output line
676$needToFetchEachLine = 0;
677//if (isset($extrafields->attributes[$object->table_element]['computed']) && is_array($extrafields->attributes[$object->table_element]['computed']) && count($extrafields->attributes[$object->table_element]['computed']) > 0) {
678// foreach ($extrafields->attributes[$object->table_element]['computed'] as $key => $val) {
679// if (!is_null($val) && preg_match('/\$object/', $val)) {
680// $needToFetchEachLine++; // There is at least one compute field that use $object
681// }
682// }
683//}
684
685
686// Loop on record
687// --------------------------------------------------------------------
688$i = 0;
689$savnbfield = $totalarray['nbfield'];
690$totalarray = array();
691$totalarray['nbfield'] = 0;
692$imaxinloop = ($limit ? min($num, $limit) : $num);
693while ($i < $imaxinloop) {
694 $obj = $db->fetch_object($resql);
695 if (empty($obj)) {
696 break; // Should not happen
697 }
698
699 // Store properties in $object
700 $object->setVarsFromFetchObj($obj);
701 $object->fetch_optionals();
702
703 if ($mode == 'kanban') {
704 if ($i == 0) {
705 print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
706 print '<div class="box-flex-container kanban">';
707 }
708 // Output Kanban
709 $selected = -1;
710 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
711 $selected = 0;
712 if (in_array($object->id, $arrayofselected)) {
713 $selected = 1;
714 }
715 }
716 print $object->getKanbanView('', array('selected' => $selected));
717 if ($i == ($imaxinloop - 1)) {
718 print '</div>';
719 print '</td></tr>';
720 }
721 } else {
722 // Show line of result
723 $j = 0;
724 print '<tr data-rowid="'.$object->id.'" class="oddeven row-with-select">';
725 // Action column
726 if ($conf->main_checkbox_left_column) {
727 print '<td class="nowrap center">';
728 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
729 $selected = 0;
730 if (in_array($object->id, $arrayofselected)) {
731 $selected = 1;
732 }
733 print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
734 }
735 print '</td>';
736 if (!$i) {
737 $totalarray['nbfield']++;
738 }
739 }
740 // Fields
741 foreach ($object->fields as $key => $val) {
742 $cssforfield = (empty($val['csslist']) ? (empty($val['css']) ? '' : $val['css']) : $val['csslist']);
743 if (in_array($val['type'], array('date', 'datetime', 'timestamp'))) {
744 $cssforfield .= ($cssforfield ? ' ' : '') . 'center';
745 } elseif ($key == 'status') {
746 $cssforfield .= ($cssforfield ? ' ' : '') . 'center';
747 }
748
749 if (in_array($val['type'], array('timestamp'))) {
750 $cssforfield .= ($cssforfield ? ' ' : '') . 'nowraponall';
751 } elseif ($key == 'ref') {
752 $cssforfield .= ($cssforfield ? ' ' : '') . 'nowraponall';
753 }
754
755 if (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && !in_array($key, array('id', 'rowid', 'ref', 'status')) && empty($val['arrayofkeyval'])) {
756 $cssforfield .= ($cssforfield ? ' ' : '') . 'right';
757 }
758 //if (in_array($key, array('fk_soc', 'fk_user', 'fk_warehouse'))) $cssforfield = 'tdoverflowmax100';
759
760 if (!empty($arrayfields['t.' . $key]['checked'])) {
761 print '<td'.($cssforfield ? ' class="'.$cssforfield.((preg_match('/tdoverflow/', $cssforfield) && !in_array($val['type'], array('ip', 'url')) && !is_numeric($object->$key)) ? ' classfortooltip' : '').'"' : '');
762 if (preg_match('/tdoverflow/', $cssforfield) && !in_array($val['type'], array('ip', 'url')) && !is_numeric($object->$key)) {
763 print ' title="'.dol_escape_htmltag((string) $object->$key).'"';
764 }
765 print '>';
766 if ($key == 'status') {
767 print $object->getLibStatut(5);
768 } elseif ($key == 'rowid') {
769 print $object->showOutputField($val, $key, (string) $object->id, '');
770 } else {
771 print $object->showOutputField($val, $key, $object->$key, '');
772 }
773 print '</td>';
774 if (!$i) {
775 $totalarray['nbfield']++;
776 }
777 if (!empty($val['isameasure']) && $val['isameasure'] == 1) {
778 if (!$i) {
779 $totalarray['pos'][$totalarray['nbfield']] = 't.' . $key;
780 }
781 if (!isset($totalarray['val'])) {
782 $totalarray['val'] = array();
783 }
784 if (!isset($totalarray['val']['t.' . $key])) {
785 $totalarray['val']['t.' . $key] = 0;
786 }
787 $totalarray['val']['t.' . $key] += $object->$key;
788 }
789 }
790 }
791 // Extra fields
792 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
793 // Fields from hook
794 $parameters = array('arrayfields' => $arrayfields, 'object' => $object, 'obj' => $obj, 'i' => $i, 'totalarray' => &$totalarray);
795 $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
796 print $hookmanager->resPrint;
797 // Other
798 $key = 'nb_of_values';
799 if (!empty($arrayfields[$key]['checked'])) {
800 print '<td class="center">';
801 print $obj->$key;
802 print '</td>';
803 if (!$i) {
804 $totalarray['nbfield']++;
805 }
806 }
807 $key = 'nb_products';
808 if (!empty($arrayfields[$key]['checked'])) {
809 print '<td class="center">';
810 print $obj->$key;
811 print '</td>';
812 if (!$i) {
813 $totalarray['nbfield']++;
814 }
815 }
816 // Action column
817 if (!$conf->main_checkbox_left_column) {
818 print '<td class="nowrap center">';
819 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
820 $selected = 0;
821 if (in_array($object->id, $arrayofselected)) {
822 $selected = 1;
823 }
824 print '<input id="cb'.$object->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.'"'.($selected ? ' checked="checked"' : '').'>';
825 }
826 print '</td>';
827 if (!$i) {
828 $totalarray['nbfield']++;
829 }
830 }
831 // Move
832 print '<td class="center linecolmove tdlineupdown">';
833 if ($i > 0) {
834 print '<a class="lineupdown" href="' . $_SERVER['PHP_SELF'] . '?action=up&amp;token='.newToken().'&amp;rowid=' . $obj->rowid . '">' . img_up('default', 0, 'imgupforline') . '</a>';
835 }
836 if ($i < $num - 1) {
837 print '<a class="lineupdown" href="' . $_SERVER['PHP_SELF'] . '?action=down&amp;token='.newToken().'&amp;rowid=' . $obj->rowid . '">' . img_down('default', 0, 'imgdownforline') . '</a>';
838 }
839 print '</td>';
840 if (!$i) {
841 $totalarray['nbfield']++;
842 }
843
844 print '</tr>' . "\n";
845 }
846
847 $i++;
848}
849
850// Show total line
851include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
852
853// If no record found
854if ($num == 0) {
855 $colspan = 1;
856 foreach ($arrayfields as $key => $val) {
857 if (!empty($val['checked'])) {
858 $colspan++;
859 }
860 }
861 $colspan++; // For the move column
862 print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
863}
864
865$db->free($resql);
866
867$parameters = array('arrayfields' => $arrayfields, 'sql' => $sql);
868$reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
869print $hookmanager->resPrint;
870
871print '</table>'."\n";
872print '</div>'."\n";
873
874print '</form>'."\n";
875
876$forcereloadpage = getDolGlobalInt('MAIN_FORCE_RELOAD_PAGE');
877$tagidfortablednd = (empty($tagidfortablednd) ? 'tableattributes' : $tagidfortablednd);
878?>
879 <script>
880 $(document).ready(function(){
881 $(".imgupforline, .imgdownforline").hide();
882 $(".lineupdown").removeAttr('href');
883 $(".tdlineupdown")
884 .css("background-image", 'url(<?php echo DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/grip.png'; ?>)')
885 .css("background-repeat", "no-repeat")
886 .css("background-position", "center center")
887 .hover(
888 function () {
889 $(this).addClass('showDragHandle');
890 }, function () {
891 $(this).removeClass('showDragHandle');
892 }
893 );
894
895 $("#<?php echo $tagidfortablednd; ?>").tableDnD({
896 onDrop: function(table, row) {
897 console.log('onDrop variant .tableDnD');
898 $('#<?php echo $tagidfortablednd; ?> tr[data-element=extrafield]').attr('id', ''); // Set extrafields id to empty value in order to ignore them in tableDnDSerialize function
899 $('#<?php echo $tagidfortablednd; ?> tr[data-ignoreidfordnd=1]').attr('id', ''); // Set id to empty value in order to ignore them in tableDnDSerialize function
900 var reloadpage = "<?php echo $forcereloadpage; ?>";
901 var roworder = cleanSerialize(decodeURI($("#<?php echo $tagidfortablednd; ?>").tableDnDSerialize()));
902 $.post("<?php echo DOL_URL_ROOT; ?>/variants/ajax/orderAttribute.php",
903 {
904 roworder: roworder,
905 token: "<?php echo currentToken(); ?>"
906 },
907 function() {
908 if (reloadpage == 1) {
909 location.href = '<?php echo dol_escape_htmltag($_SERVER['PHP_SELF']).'?'.dol_escape_htmltag($_SERVER['QUERY_STRING']); ?>';
910 }
911 });
912 },
913 onDragClass: "dragClass",
914 dragHandle: "td.tdlineupdown"
915 });
916 });
917 </script>
918<?php
919
920if (in_array('builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords === '' || $nbtotalofrecords)) {
921 $hidegeneratedfilelistifempty = 1;
922 if ($massaction == 'builddoc' || $action == 'remove_file' || $show_files) {
923 $hidegeneratedfilelistifempty = 0;
924 }
925
926 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
927 $formfile = new FormFile($db);
928
929 // Show list of available documents
930 $urlsource = $_SERVER['PHP_SELF'].'?sortfield='.$sortfield.'&sortorder='.$sortorder;
931 $urlsource .= str_replace('&amp;', '&', $param);
932
933 $filedir = $diroutputmassaction;
934 $genallowed = $permissiontoread;
935 $delallowed = $permissiontoadd;
936
937 print $formfile->showdocuments('massfilesarea_productattribute', '', $filedir, $urlsource, 0, $delallowed, '', 1, 1, 0, 48, 1, $param, $title, '', '', '', null, $hidegeneratedfilelistifempty);
938}
939
940// End of page
941llxFooter();
942$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
$totalarray
Definition list.php:501
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:73
Class to generate html code for admin pages.
Class to offer components to list and upload files.
Class to manage generation of HTML components Only common components must be here.
Class ProductAttribute Used to represent a Product attribute Examples:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_now($mode='gmt')
Return date for now.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0, $sqltoadd='')
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
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...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
isModEnabled($module)
Is Dolibarr module enabled.
treeview li table
No Email.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
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.
img_down($titlealt='default', $selected=0, $moreclass='')
Show down arrow logo.
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.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_up($titlealt='default', $selected=0, $moreclass='')
Show top arrow logo.
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...
Definition html.lib.php:172
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.