51if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
52 $res = @include str_replace(
"..",
"", $_SERVER[
"CONTEXT_DOCUMENT_ROOT"]).
"/main.inc.php";
55$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
56$tmp2 = realpath(__FILE__);
58$j = strlen($tmp2) - 1;
59while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
63if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
64 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
66if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
67 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
70if (!$res && file_exists(
"../main.inc.php")) {
71 $res = @include
"../main.inc.php";
73if (!$res && file_exists(
"../../main.inc.php")) {
74 $res = @include
"../../main.inc.php";
76if (!$res && file_exists(
"../../../main.inc.php")) {
77 $res = @include
"../../../main.inc.php";
80 die(
"Include of main fails");
90include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
91include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
92include_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
94include_once __DIR__.
'/class/myobject.class.php';
99$langs->loadLangs(array(
"mymodule@mymodule",
"other"));
102$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
103$massaction =
GETPOST(
'massaction',
'alpha');
105$confirm =
GETPOST(
'confirm',
'alpha');
106$cancel =
GETPOST(
'cancel',
'alpha');
107$toselect =
GETPOST(
'toselect',
'array:int');
109$backtopage =
GETPOST(
'backtopage',
'alpha');
110$optioncss =
GETPOST(
'optioncss',
'aZ');
112$groupby =
GETPOST(
'groupby',
'aZ09');
119$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
120$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
122if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
126$offset = $limit * $page;
127$pageprev = $page - 1;
128$pagenext = $page + 1;
133$diroutputmassaction = $conf->mymodule->dir_output.
'/temp/massgeneration/'.$user->id;
134$hookmanager->initHooks(array($contextpage));
137$extrafields->fetch_name_optionals_label(
$object->table_element);
140$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
145 $sortfield =
"t.".key(
$object->fields);
152$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
154foreach (
$object->fields as $key => $val) {
155 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
156 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
158 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
165$fieldstosearchall = array();
181$arrayfields = array();
182foreach (
$object->fields as $key => $val) {
184 if (!empty($val[
'visible'])) {
185 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
186 $arrayfields[$tableprefix.
'.'.$key] = array(
187 'label' => $val[
'label'],
188 'checked' => (($visible < 0) ?
'0' :
'1'),
189 'enabled' => (string) (int) (abs($visible) != 3 && (bool)
dol_eval((string) $val[
'enabled'], 1)),
190 'position' => $val[
'position'],
191 'help' => isset($val[
'help']) ? $val[
'help'] :
''
197include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
199$parameters = array(
'arrayfields' => &$arrayfields);
200$reshook = $hookmanager->executeHooks(
'completeArrayFields', $parameters, $object, $action);
201$sql .= $hookmanager->resPrint;
213$enablepermissioncheck =
getDolGlobalInt(
'MYMODULE_ENABLE_PERMISSION_CHECK');
214if ($enablepermissioncheck) {
215 $permissiontoread = $user->hasRight(
'mymodule',
'myobject',
'read');
216 $permissiontoadd = $user->hasRight(
'mymodule',
'myobject',
'write');
217 $permissiontodelete = $user->hasRight(
'mymodule',
'myobject',
'delete');
219 $permissiontoread = 1;
220 $permissiontoadd = 1;
221 $permissiontodelete = 1;
225if ($user->socid > 0) {
235if (!$permissiontoread) {
244if (
GETPOST(
'cancel',
'alpha')) {
248if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
252$parameters = array(
'arrayfields' => &$arrayfields);
253$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
258if (empty($reshook)) {
260 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
263 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
264 foreach (
$object->fields as $key => $val) {
266 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
267 $search[$key.
'_dtstart'] =
'';
268 $search[$key.
'_dtend'] =
'';
273 $search_array_options = array();
275 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
276 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
281 $objectclass =
'MyObject';
282 $objectlabel =
'MyObject';
283 $uploaddir = $conf->mymodule->dir_output;
286 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
298$form =
new Form($db);
302$title = $langs->trans(
"MyObjects");
312$sql .=
" ".$object->getFieldList(
't');
314if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
315 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
316 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
320$parameters = array();
321$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
322$sql .= $hookmanager->resPrint;
323$sql = preg_replace(
'/,\s*$/',
'', $sql);
327$sql .=
" FROM ".$db->prefix().$object->table_element.
" as t";
329if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
330 $sql .=
" LEFT JOIN ".$db->prefix().$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
333$parameters = array();
334$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
335$sql .= $hookmanager->resPrint;
337if (!empty(
$object->ismultientitymanaged) && (
int)
$object->ismultientitymanaged == 1) {
338 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
339} elseif (preg_match(
'/^\w+@\w+$/', (
string)
$object->ismultientitymanaged)) {
340 $tmparray = explode(
'@', (
string)
$object->ismultientitymanaged);
341 $sql .=
" LEFT JOIN ".$object->db->prefix().$tmparray[1].
" as pt ON t.".$db->sanitize($tmparray[0]).
" = pt.rowid";
342 $sql .=
" WHERE pt.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
344 $sql .=
" WHERE 1 = 1";
346foreach ($search as $key => $val) {
347 if (array_key_exists($key,
$object->fields)) {
348 if ($key ==
'status' && $search[$key] == -1) {
351 $field_spec =
$object->fields[$key];
352 if ($field_spec ===
null) {
355 $mode_search = ((
$object->isInt($field_spec) ||
$object->isFloat($field_spec)) ? 1 : 0);
356 if ((strpos($field_spec[
'type'],
'integer:') === 0) || (strpos($field_spec[
'type'],
'sellist:') === 0) || !empty($field_spec[
'arrayofkeyval'])) {
357 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($field_spec[
'arrayofkeyval']) || !array_key_exists(
'0', $field_spec[
'arrayofkeyval'])))) {
362 if ($field_spec[
'type'] ===
'boolean') {
364 if ($search[$key] ==
'-1') {
368 if (empty($field_spec[
'searchmulti'])) {
369 if (!is_array($search[$key]) && $search[$key] !=
'') {
370 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
373 if (is_array($search[$key]) && !empty($search[$key])) {
374 $sql .=
natural_search(
"t.".$db->escape($key), implode(
',', $search[$key]), (($key ==
'status') ? 2 : $mode_search));
378 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
379 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
380 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
381 if (preg_match(
'/_dtstart$/', $key)) {
382 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".$db->idate($search[$key]).
"'";
384 if (preg_match(
'/_dtend$/', $key)) {
385 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".$db->idate($search[$key]).
"'";
392 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
415include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
417$parameters = array();
418$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
419$sql .= $hookmanager->resPrint;
456$nbtotalofrecords =
'';
459 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
460 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
462 $resql = $db->query($sqlforcount);
464 $objforcount = $db->fetch_object($resql);
465 $nbtotalofrecords = $objforcount->nbtotalofrecords;
470 if (($page * $limit) > (
int) $nbtotalofrecords) {
478$sql .= $db->order($sortfield, $sortorder);
480 $sql .= $db->plimit($limit + 1, $offset);
483$resql = $db->query($sql);
489$num = $db->num_rows($resql);
493if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
494 $obj = $db->fetch_object($resql);
496 header(
"Location: ".
dol_buildpath(
'/mymodule/myobject_card.php', 1).
'?id='.((
int) $id));
504llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'mod-mymodule page-list bodyforlist');
521$arrayofselected = is_array($toselect) ? $toselect : array();
525 $param .=
'&mode='.urlencode($mode);
528 $param .=
'&contextpage='.urlencode($contextpage);
530if ($limit > 0 && $limit != $conf->liste_limit) {
531 $param .=
'&limit='.((int) $limit);
533if ($optioncss !=
'') {
534 $param .=
'&optioncss='.urlencode($optioncss);
537 $param .=
'&groupby='.urlencode($groupby);
539foreach ($search as $key => $val) {
540 if (is_array($search[$key])) {
541 foreach ($search[$key] as $skey) {
543 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
546 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
547 $param .=
'&search_'.$key.
'month='.
GETPOSTINT(
'search_'.$key.
'month');
548 $param .=
'&search_'.$key.
'day='.
GETPOSTINT(
'search_'.$key.
'day');
549 $param .=
'&search_'.$key.
'year='.
GETPOSTINT(
'search_'.$key.
'year');
550 } elseif ($search[$key] !=
'') {
551 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
555include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
557$parameters = array(
'param' => &$param);
558$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
559$param .= $hookmanager->resPrint;
562$arrayofmassactions = array(
568if (!empty($permissiontodelete)) {
569 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
571if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
572 $arrayofmassactions = array();
574$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
576print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
577if ($optioncss !=
'') {
578 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
580print
'<input type="hidden" name="token" value="'.newToken().
'">';
581print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
582print
'<input type="hidden" name="action" value="list">';
583print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
584print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
585print
'<input type="hidden" name="page" value="'.$page.
'">';
586print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
587print
'<input type="hidden" name="page_y" value="">';
588print
'<input type="hidden" name="mode" value="'.$mode.
'">';
592$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=common'.preg_replace(
'/(&|\?)*(mode|groupby)=[^&]+/',
'', $param),
'', ((empty($mode) || $mode ==
'common') ? 2 : 1), array(
'morecss' =>
'reposition'));
593$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewKanban'),
'',
'fa fa-th-list imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=kanban'.preg_replace(
'/(&|\?)*(mode|groupby)=[^&]+/',
'', $param),
'', ($mode ==
'kanban' ? 2 : 1), array(
'morecss' =>
'reposition'));
597$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/mymodule/myobject_card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
599print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
602$topicmail =
"SendMyObjectRef";
603$modelmail =
"myobject";
605$trackid =
'xxxx'.$object->id;
606include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
611 foreach ($fieldstosearchall as $key => $val) {
612 $fieldstosearchall[$key] = $langs->trans($val);
613 $setupstring .= $key.
"=".$val.
";";
615 print
'<!-- Search done like if MYOBJECT_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
616 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
624$parameters = array();
625$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
626if (empty($reshook)) {
627 $moreforfilter .= $hookmanager->resPrint;
629 $moreforfilter = $hookmanager->resPrint;
632 'arrayfields' => &$arrayfields,
635if (!empty($moreforfilter)) {
636 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
637 print $moreforfilter;
641$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
642$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage, $conf->main_checkbox_left_column);
643$selectedfields = (($mode !=
'kanban' && $mode !=
'kanbangroupby') ? $htmlofselectarray :
'');
644$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
646print
'<div class="div-table-responsive">';
647print
'<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
651print
'<tr class="liste_titre_filter">';
653if ($conf->main_checkbox_left_column) {
654 print
'<td class="liste_titre center maxwidthsearch">';
655 $searchpicto = $form->showFilterButtons(
'left');
659foreach (
$object->fields as $key => $val) {
661 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
662 if ($key ==
'status') {
663 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
664 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
665 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
666 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
667 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
668 } 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'])) {
669 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
671 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
672 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
673 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
674 if (empty($val[
'searchmulti'])) {
675 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);
677 print $form->multiselectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), 0, 0,
'maxwidth100'.($key ==
'status' ?
' search_status width100 onrightofpage' :
''), 1);
679 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
680 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
681 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
682 print
'<div class="nowrap">';
683 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
685 print
'<div class="nowrap">';
686 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
688 } elseif ($key ==
'lang') {
689 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
691 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
692 } elseif ($val[
'type'] ===
'boolean') {
693 print $form->selectyesno(
'search_' . $key, $search[$key] ??
'', 1,
false, 1);
695 print
'<input type="text" class="flat maxwidth'.(in_array($val[
'type'], array(
'integer',
'price')) ?
'50' :
'75').
'" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
701include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
704$parameters = array(
'arrayfields' => $arrayfields);
705$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
706print $hookmanager->resPrint;
711if (!$conf->main_checkbox_left_column) {
712 print
'<td class="liste_titre center maxwidthsearch">';
713 $searchpicto = $form->showFilterButtons();
724print
'<tr class="liste_titre">';
726if ($conf->main_checkbox_left_column) {
727 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
730foreach (
$object->fields as $key => $val) {
731 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
732 if ($key ==
'status') {
733 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
734 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
735 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
736 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
737 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
738 } 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'])) {
739 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
741 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
742 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
743 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";
748include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
750$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
751$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
752print $hookmanager->resPrint;
758if (!$conf->main_checkbox_left_column) {
759 print
getTitleFieldOfList(($mode !=
'kanban' ? $selectedfields :
''), 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
765$needToFetchEachLine = 0;
766if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
767 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
768 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
769 $needToFetchEachLine++;
781$imaxinloop = ($limit ? min($num, $limit) : $num);
782while ($i < $imaxinloop) {
783 $obj = $db->fetch_object($resql);
789 $object->setVarsFromFetchObj($obj);
805 if ($mode ==
'kanban' || $mode ==
'kanbangroupby') {
807 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
808 print
'<div class="box-flex-container kanban">';
812 if ($massactionbutton || $massaction) {
814 if (in_array(
$object->id, $arrayofselected)) {
819 print
$object->getKanbanView(
'', array(
'selected' => $selected));
820 if ($i == ($imaxinloop - 1)) {
827 print
'<tr data-rowid="'.$object->id.
'" class="oddeven row-with-select">';
830 if ($conf->main_checkbox_left_column) {
831 print
'<td class="nowrap center">';
832 if ($massactionbutton || $massaction) {
834 if (in_array(
$object->id, $arrayofselected)) {
837 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
845 foreach (
$object->fields as $key => $val) {
846 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
847 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
848 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
849 } elseif ($key ==
'status') {
850 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
853 if (in_array($val[
'type'], array(
'timestamp'))) {
854 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
855 } elseif ($key ==
'ref') {
856 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
859 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'])) {
860 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
864 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
865 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
866 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key) && !in_array($key, array(
'ref'))) {
867 print
' title="'.dol_escape_htmltag((
string)
$object->$key).
'"';
870 if ($key ==
'status') {
871 print
$object->getLibStatut(5);
872 } elseif ($key ==
'rowid') {
873 print
$object->showOutputField($val, $key, (
string)
$object->id,
'');
875 if ($val[
'type'] ==
'html') {
876 print
'<div class="small lineheightsmall twolinesmax-normallineheight">';
878 print
$object->showOutputField($val, $key, (
string)
$object->$key,
'');
879 if ($val[
'type'] ==
'html') {
887 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
891 if (!isset($totalarray[
'val'])) {
894 if (!isset($totalarray[
'val'][
't.'.$key])) {
902 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
904 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
905 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
906 print $hookmanager->resPrint;
913 if (empty($conf->main_checkbox_left_column)) {
914 print
'<td class="nowrap center">';
915 if ($massactionbutton || $massaction) {
917 if (in_array(
$object->id, $arrayofselected)) {
920 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
935include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
940 foreach ($arrayfields as $key => $val) {
941 if (!empty($val[
'checked'])) {
945 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
951$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
952$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
953print $hookmanager->resPrint;
955print
'</table>'.
"\n";
960if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
961 $hidegeneratedfilelistifempty = 1;
962 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
963 $hidegeneratedfilelistifempty = 0;
966 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
970 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
971 $urlsource .= str_replace(
'&',
'&', $param);
973 $filedir = $diroutputmassaction;
974 $genallowed = $permissiontoread;
975 $delallowed = $permissiontoadd;
977 print $formfile->showdocuments(
'massfilesarea_'.
$object->module,
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
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...
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)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0, $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...
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.
getDolDefaultContextPage($s)
Return the default context page string.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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...
isModEnabled($module)
Is Dolibarr module enabled.
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.