26require
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/webhook/class/target.class.php';
34global $conf, $db, $hookmanager, $langs, $user;
37$langs->loadLangs(array(
'other',
'admin'));
40$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
41$massaction =
GETPOST(
'massaction',
'alpha');
43$confirm =
GETPOST(
'confirm',
'alpha');
44$cancel =
GETPOST(
'cancel',
'alpha');
45$toselect =
GETPOST(
'toselect',
'array');
46$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'targetlist';
47$backtopage =
GETPOST(
'backtopage',
'alpha');
48$optioncss =
GETPOST(
'optioncss',
'aZ');
51 $mode =
'modulesetup';
58$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
59$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
61if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
65$offset = $limit * $page;
72$diroutputmassaction = $conf->webhook->dir_output.
'/temp/massgeneration/'.$user->id;
73$hookmanager->initHooks(array(
'targetlist'));
76$extrafields->fetch_name_optionals_label(
$object->table_element);
79$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
84 $sortfield =
"t.".key(
$object->fields);
91$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
93foreach (
$object->fields as $key => $val) {
94 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
95 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
97 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
104$fieldstosearchall = array();
105foreach (
$object->fields as $key => $val) {
106 if (!empty($val[
'searchall'])) {
107 $fieldstosearchall[
't.'.$key] = $val[
'label'];
112$arrayfields = array();
113foreach (
$object->fields as $key => $val) {
115 if (!empty($val[
'visible'])) {
116 $visible = (int)
dol_eval($val[
'visible'], 1);
117 $arrayfields[
't.'.$key] = array(
118 'label'=>$val[
'label'],
119 'checked'=>(($visible < 0) ? 0 : 1),
120 'enabled'=>(abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
121 'position'=>$val[
'position'],
122 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
128include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
136$enablepermissioncheck = 0;
137if ($enablepermissioncheck) {
138 $permissiontoread = $user->hasRight(
'webhook',
'target',
'read');
139 $permissiontoadd = $user->hasRight(
'webhook',
'target',
'write');
140 $permissiontodelete = $user->hasRight(
'webhook',
'target',
'delete');
142 $permissiontoread = 1;
143 $permissiontoadd = 1;
144 $permissiontodelete = 1;
148if ($user->socid > 0) {
155if (!isModEnabled(
'webhook')) {
158if (!$permissiontoread) {
167if (
GETPOST(
'cancel',
'alpha')) {
171if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
175$parameters = array();
176$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
181if (empty($reshook)) {
183 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
186 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
187 foreach (
$object->fields as $key => $val) {
189 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
190 $search[$key.
'_dtstart'] =
'';
191 $search[$key.
'_dtend'] =
'';
196 $search_array_options = array();
198 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
199 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
204 $objectclass =
'Target';
205 $objectlabel =
'Target';
206 $uploaddir = $conf->webhook->dir_output;
207 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
216$form =
new Form($db);
223$title = $langs->trans(
"Targets");
231$sql .=
$object->getFieldList(
't');
233if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
234 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
235 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
239$parameters = array();
240$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
241$sql .= $hookmanager->resPrint;
242$sql = preg_replace(
'/,\s*$/',
'', $sql);
246$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
248if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
249 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
252$parameters = array();
253$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
254$sql .= $hookmanager->resPrint;
255if (
$object->ismultientitymanaged == 1) {
256 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOST(
'search_current_entity',
'int') ? 0 : 1)).
")";
258 $sql .=
" WHERE 1 = 1";
260foreach ($search as $key => $val) {
261 if (array_key_exists($key,
$object->fields)) {
262 if ($key ==
'status' && $search[$key] == -1) {
266 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
267 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
272 if ($search[$key] !=
'') {
273 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
276 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
277 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
278 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
279 if (preg_match(
'/_dtstart$/', $key)) {
280 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
282 if (preg_match(
'/_dtend$/', $key)) {
283 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
290 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
294include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
296$parameters = array();
297$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
298$sql .= $hookmanager->resPrint;
326$nbtotalofrecords =
'';
329 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
330 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
332 $resql = $db->query($sqlforcount);
334 $objforcount = $db->fetch_object($resql);
335 $nbtotalofrecords = $objforcount->nbtotalofrecords;
340 if (($page * $limit) > $nbtotalofrecords) {
348$sql .= $db->order($sortfield, $sortorder);
350 $sql .= $db->plimit($limit + 1, $offset);
353$resql = $db->query($sql);
359$num = $db->num_rows($resql);
363if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
364 $obj = $db->fetch_object($resql);
366 header(
"Location: ".
dol_buildpath(
'/webhook/target_card.php', 1).
'?id='.$id);
373$title = $langs->trans(
"Targets");
374llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'bodyforlist mod-webhook page-target_list');
376if ($mode ==
'modulesetup') {
377 require_once
'lib/webhook.lib.php';
380 $page_name =
"WebhookSetup";
382 $linkback =
'<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1').
'">'.$langs->trans(
"BackToModuleList").
'</a>';
383 print
load_fiche_titre($langs->trans($page_name), $linkback,
'title_setup');
404$arrayofselected = is_array($toselect) ? $toselect : array();
408 $param .=
'&mode='.urlencode($mode);
410if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
411 $param .=
'&contextpage='.urlencode($contextpage);
413if ($limit > 0 && $limit != $conf->liste_limit) {
414 $param .=
'&limit='.((int) $limit);
416if ($optioncss !=
'') {
417 $param .=
'&optioncss='.urlencode($optioncss);
419foreach ($search as $key => $val) {
420 if (is_array($search[$key])) {
421 foreach ($search[$key] as $skey) {
423 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
426 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
427 $param .=
'&search_'.$key.
'month='.((int)
GETPOST(
'search_'.$key.
'month',
'int'));
428 $param .=
'&search_'.$key.
'day='.((int)
GETPOST(
'search_'.$key.
'day',
'int'));
429 $param .=
'&search_'.$key.
'year='.((int)
GETPOST(
'search_'.$key.
'year',
'int'));
430 } elseif ($search[$key] !=
'') {
431 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
435include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
437$parameters = array(
'param' => &$param);
438$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
439$param .= $hookmanager->resPrint;
442$arrayofmassactions = array(
448if (!empty($permissiontodelete)) {
449 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
451if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
452 $arrayofmassactions = array();
454$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
456print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
457if ($optioncss !=
'') {
458 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
460print
'<input type="hidden" name="token" value="'.newToken().
'">';
461print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
462print
'<input type="hidden" name="action" value="list">';
463print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
464print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
465print
'<input type="hidden" name="page" value="'.$page.
'">';
466print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
467print
'<input type="hidden" name="mode" value="'.$mode.
'">';
474$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/webhook/target_card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']).
'?mode=modulesetup',
'', $permissiontoadd);
476print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
"", 0, $newcardbutton,
'', $limit, 0, 0, 1);
479$topicmail =
"SendTargetRef";
480$modelmail =
"target";
481$objecttmp =
new Target($db);
482$trackid =
'xxxx'.$object->id;
483include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
487 foreach ($fieldstosearchall as $key => $val) {
488 $fieldstosearchall[$key] = $langs->trans($val);
490 print
'<!-- Search done like if WEBHOOK_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
491 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>';
499$parameters = array();
500$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
501if (empty($reshook)) {
502 $moreforfilter .= $hookmanager->resPrint;
504 $moreforfilter = $hookmanager->resPrint;
507if (!empty($moreforfilter)) {
508 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
509 print $moreforfilter;
510 $parameters = array();
511 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
512 print $hookmanager->resPrint;
516$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
517$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
518$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
519$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
521print
'<div class="div-table-responsive">';
522print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
527print
'<tr class="liste_titre">';
530 print
'<td class="liste_titre center maxwidthsearch">';
531 $searchpicto = $form->showFilterButtons(
'left');
535foreach (
$object->fields as $key => $val) {
536 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
537 if ($key ==
'status') {
538 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
539 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
540 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
541 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
542 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
543 } 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'])) {
544 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
546 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
547 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
548 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
549 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);
550 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
551 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
552 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
553 print
'<div class="nowrap">';
554 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
556 print
'<div class="nowrap">';
557 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
559 } elseif ($key ==
'lang') {
560 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
562 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, null, 1, 0, 0,
'minwidth100imp maxwidth125', 2);
564 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
570include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
573$parameters = array(
'arrayfields'=>$arrayfields);
574$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
575print $hookmanager->resPrint;
581 print
'<td class="liste_titre center maxwidthsearch">';
582 print
'<td class="liste_titre maxwidthsearch">';
583 $searchpicto = $form->showFilterButtons();
589$totalarray = array();
590$totalarray[
'nbfield'] = 0;
594print
'<tr class="liste_titre">';
597 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
598 $totalarray[
'nbfield']++;
600foreach (
$object->fields as $key => $val) {
601 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
602 if ($key ==
'status') {
603 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
604 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
605 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
606 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
607 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
608 } 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'])) {
609 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
611 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
612 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
613 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
''), 0, (empty($val[
'helplist']) ?
'' : $val[
'helplist'])).
"\n";
614 $totalarray[
'nbfield']++;
618include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
620$parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder,
'totalarray'=>&$totalarray);
621$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
622print $hookmanager->resPrint;
629 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
630 $totalarray[
'nbfield']++;
636$needToFetchEachLine = 0;
637if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
638 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
639 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
640 $needToFetchEachLine++;
649$savnbfield = $totalarray[
'nbfield'];
650$totalarray = array();
651$totalarray[
'nbfield'] = 0;
652$imaxinloop = ($limit ? min($num, $limit) : $num);
653while ($i < $imaxinloop) {
654 $obj = $db->fetch_object($resql);
659 if (empty($obj->ref)) {
660 $obj->ref = $obj->rowid;
664 $object->setVarsFromFetchObj($obj);
666 if ($mode ==
'kanban') {
668 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
669 print
'<div class="box-flex-container kanban">';
673 if ($massactionbutton || $massaction) {
675 if (in_array(
$object->id, $arrayofselected)) {
679 print
$object->getKanbanView(
'', array(
'selected' => $selected));
680 if ($i == ($imaxinloop - 1)) {
687 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
691 print
'<td class="nowrap center">';
692 if ($massactionbutton || $massaction) {
694 if (in_array(
$object->id, $arrayofselected)) {
697 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
701 $totalarray[
'nbfield']++;
704 foreach (
$object->fields as $key => $val) {
705 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
706 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
707 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
708 } elseif ($key ==
'status') {
709 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
712 if (in_array($val[
'type'], array(
'timestamp'))) {
713 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
714 } elseif ($key ==
'ref') {
715 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
718 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'])) {
719 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
723 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
724 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
725 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) {
726 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
729 if ($key ==
'status') {
730 print
$object->getLibStatut(5);
731 } elseif ($key ==
'rowid') {
738 $totalarray[
'nbfield']++;
740 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
742 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
744 if (!isset($totalarray[
'val'])) {
745 $totalarray[
'val'] = array();
747 if (!isset($totalarray[
'val'][
't.'.$key])) {
748 $totalarray[
'val'][
't.'.$key] = 0;
750 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
755 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
757 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
758 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
759 print $hookmanager->resPrint;
765 print
'<td class="nowrap center">';
766 if ($massactionbutton || $massaction) {
768 if (in_array(
$object->id, $arrayofselected)) {
771 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
775 $totalarray[
'nbfield']++;
786include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
791 foreach ($arrayfields as $key => $val) {
792 if (!empty($val[
'checked'])) {
796 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
802$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
803$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
804print $hookmanager->resPrint;
806print
'</table>'.
"\n";
811if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
812 $hidegeneratedfilelistifempty = 1;
813 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
814 $hidegeneratedfilelistifempty = 0;
817 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
821 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
822 $urlsource .= str_replace(
'&',
'&', $param);
824 $filedir = $diroutputmassaction;
825 $genallowed = $permissiontoread;
826 $delallowed = $permissiontoadd;
828 print $formfile->showdocuments(
'massfilesarea_'.
$object->module,
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
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.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
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...
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
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.
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.
webhookAdminPrepareHead()
Prepare admin pages header.