51if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
52 $res = @include $_SERVER[
"CONTEXT_DOCUMENT_ROOT"].
"/main.inc.php";
55$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME']; $tmp2 = realpath(__FILE__); $i = strlen($tmp) - 1; $j = strlen($tmp2) - 1;
56while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
60if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
61 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
63if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
64 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
67if (!$res && file_exists(
"../main.inc.php")) {
68 $res = @include
"../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";
77 die(
"Include of main fails");
80require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
81require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
82require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
84require_once __DIR__.
'/class/myobject.class.php';
89$langs->loadLangs(array(
"mymodule@mymodule",
"other"));
92$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
93$massaction =
GETPOST(
'massaction',
'alpha');
95$confirm =
GETPOST(
'confirm',
'alpha');
96$cancel =
GETPOST(
'cancel',
'alpha');
97$toselect =
GETPOST(
'toselect',
'array:int');
98$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
99$backtopage =
GETPOST(
'backtopage',
'alpha');
100$optioncss =
GETPOST(
'optioncss',
'aZ');
102$groupby =
GETPOST(
'groupby',
'aZ09');
109$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
110$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
112if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
116$offset = $limit * $page;
117$pageprev = $page - 1;
118$pagenext = $page + 1;
123$diroutputmassaction = $conf->mymodule->dir_output.
'/temp/massgeneration/'.$user->id;
124$hookmanager->initHooks(array($contextpage));
127$extrafields->fetch_name_optionals_label(
$object->table_element);
130$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
135 $sortfield =
"t.".key(
$object->fields);
142$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
144foreach (
$object->fields as $key => $val) {
145 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
146 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
148 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
154$fieldstosearchall = array();
170$arrayfields = array();
171foreach (
$object->fields as $key => $val) {
173 if (!empty($val[
'visible'])) {
174 $visible = (int)
dol_eval($val[
'visible'], 1);
175 $arrayfields[
't.'.$key] = array(
176 'label' => $val[
'label'],
177 'checked' => (($visible < 0) ? 0 : 1),
178 'enabled' => (abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
179 'position' => $val[
'position'],
180 'help' => isset($val[
'help']) ? $val[
'help'] :
''
185include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
193$enablepermissioncheck = 0;
194if ($enablepermissioncheck) {
195 $permissiontoread = $user->hasRight(
'mymodule',
'myobject',
'read');
196 $permissiontoadd = $user->hasRight(
'mymodule',
'myobject',
'write');
197 $permissiontodelete = $user->hasRight(
'mymodule',
'myobject',
'delete');
199 $permissiontoread = 1;
200 $permissiontoadd = 1;
201 $permissiontodelete = 1;
205if ($user->socid > 0) {
212if (!isModEnabled(
"mymodule")) {
215if (!$permissiontoread) {
224if (
GETPOST(
'cancel',
'alpha')) {
228if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
232$parameters = array(
'arrayfields' => &$arrayfields);
233$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
238if (empty($reshook)) {
240 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
243 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
244 foreach (
$object->fields as $key => $val) {
246 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
247 $search[$key.
'_dtstart'] =
'';
248 $search[$key.
'_dtend'] =
'';
253 $search_array_options = array();
255 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
256 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
261 $objectclass =
'MyObject';
262 $objectlabel =
'MyObject';
263 $uploaddir = $conf->mymodule->dir_output;
264 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
276$form =
new Form($db);
280$title = $langs->trans(
"MyObjects");
290$sql .=
$object->getFieldList(
't');
292if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
293 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
294 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
298$parameters = array();
299$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
300$sql .= $hookmanager->resPrint;
301$sql = preg_replace(
'/,\s*$/',
'', $sql);
305$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
307if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
308 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
311$parameters = array();
312$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
313$sql .= $hookmanager->resPrint;
314if (
$object->ismultientitymanaged == 1) {
315 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOST(
'search_current_entity',
'int') ? 0 : 1)).
")";
317 $sql .=
" WHERE 1 = 1";
319foreach ($search as $key => $val) {
320 if (array_key_exists($key,
$object->fields)) {
321 if ($key ==
'status' && $search[$key] == -1) {
325 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
326 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
331 if ($search[$key] !=
'') {
332 $sql .=
natural_search(
"t.".$db->sanitize($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
335 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
336 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
337 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
338 if (preg_match(
'/_dtstart$/', $key)) {
339 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".$db->idate($search[$key]).
"'";
341 if (preg_match(
'/_dtend$/', $key)) {
342 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".$db->idate($search[$key]).
"'";
349 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
372include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
374$parameters = array();
375$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
376$sql .= $hookmanager->resPrint;
404$nbtotalofrecords =
'';
407 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
408 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
410 $resql = $db->query($sqlforcount);
412 $objforcount = $db->fetch_object($resql);
413 $nbtotalofrecords = $objforcount->nbtotalofrecords;
418 if (($page * $limit) > $nbtotalofrecords) {
426$sql .= $db->order($sortfield, $sortorder);
428 $sql .= $db->plimit($limit + 1, $offset);
431$resql = $db->query($sql);
437$num = $db->num_rows($resql);
441if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
442 $obj = $db->fetch_object($resql);
444 header(
"Location: ".
dol_buildpath(
'/mymodule/myobject_card.php', 1).
'?id='.((
int) $id));
452llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'mod-mymodule page-list bodyforlist');
469$arrayofselected = is_array($toselect) ? $toselect : array();
473 $param .=
'&mode='.urlencode($mode);
475if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
476 $param .=
'&contextpage='.urlencode($contextpage);
478if ($limit > 0 && $limit != $conf->liste_limit) {
479 $param .=
'&limit='.((int) $limit);
481if ($optioncss !=
'') {
482 $param .=
'&optioncss='.urlencode($optioncss);
485 $param .=
'&groupby='.urlencode($groupby);
487foreach ($search as $key => $val) {
488 if (is_array($search[$key])) {
489 foreach ($search[$key] as $skey) {
491 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
494 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
495 $param .=
'&search_'.$key.
'month='.(
GETPOSTINT(
'search_'.$key.
'month'));
496 $param .=
'&search_'.$key.
'day='.(
GETPOSTINT(
'search_'.$key.
'day'));
497 $param .=
'&search_'.$key.
'year='.(
GETPOSTINT(
'search_'.$key.
'year'));
498 } elseif ($search[$key] !=
'') {
499 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
503include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
505$parameters = array(
'param' => &$param);
506$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
507$param .= $hookmanager->resPrint;
510$arrayofmassactions = array(
516if (!empty($permissiontodelete)) {
517 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
519if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
520 $arrayofmassactions = array();
522$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
524print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
525if ($optioncss !=
'') {
526 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
528print
'<input type="hidden" name="token" value="'.newToken().
'">';
529print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
530print
'<input type="hidden" name="action" value="list">';
531print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
532print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
533print
'<input type="hidden" name="page" value="'.$page.
'">';
534print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
535print
'<input type="hidden" name="page_y" value="">';
536print
'<input type="hidden" name="mode" value="'.$mode.
'">';
540$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'));
541$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'));
543$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/mymodule/myobject_card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
545print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'object_'.
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
548$topicmail =
"SendMyObjectRef";
549$modelmail =
"myobject";
551$trackid =
'xxxx'.$object->id;
552include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
556 foreach ($fieldstosearchall as $key => $val) {
557 $fieldstosearchall[$key] = $langs->trans($val);
558 $setupstring .= $key.
"=".$val.
";";
560 print
'<!-- Search done like if MYOBJECT_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
561 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
569$parameters = array();
570$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
571if (empty($reshook)) {
572 $moreforfilter .= $hookmanager->resPrint;
574 $moreforfilter = $hookmanager->resPrint;
577if (!empty($moreforfilter)) {
578 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
579 print $moreforfilter;
583$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
584$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
585$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
586$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
588print
'<div class="div-table-responsive">';
589print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
593print
'<tr class="liste_titre_filter">';
596 print
'<td class="liste_titre center maxwidthsearch">';
597 $searchpicto = $form->showFilterButtons(
'left');
601foreach (
$object->fields as $key => $val) {
603 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
604 if ($key ==
'status') {
605 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
606 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
607 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
608 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
609 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
610 } 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'])) {
611 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
613 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
614 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
615 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
616 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);
617 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
618 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
619 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
620 print
'<div class="nowrap">';
621 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
623 print
'<div class="nowrap">';
624 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
626 } elseif ($key ==
'lang') {
627 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
629 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, null, 1, 0, 0,
'minwidth100imp maxwidth125', 2);
631 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
637include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
640$parameters = array(
'arrayfields'=>$arrayfields);
641$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
642print $hookmanager->resPrint;
648 print
'<td class="liste_titre center maxwidthsearch">';
649 $searchpicto = $form->showFilterButtons();
655$totalarray = array();
656$totalarray[
'nbfield'] = 0;
660print
'<tr class="liste_titre">';
663 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
664 $totalarray[
'nbfield']++;
666foreach (
$object->fields as $key => $val) {
667 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
668 if ($key ==
'status') {
669 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
670 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
671 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
672 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
673 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
674 } 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'])) {
675 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
677 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
678 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
679 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";
680 $totalarray[
'nbfield']++;
684include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
686$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
687$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
688print $hookmanager->resPrint;
695 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
696 $totalarray[
'nbfield']++;
701$needToFetchEachLine = 0;
702if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
703 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
704 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
705 $needToFetchEachLine++;
714$savnbfield = $totalarray[
'nbfield'];
715$totalarray = array();
716$totalarray[
'nbfield'] = 0;
717$imaxinloop = ($limit ? min($num, $limit) : $num);
718while ($i < $imaxinloop) {
719 $obj = $db->fetch_object($resql);
725 $object->setVarsFromFetchObj($obj);
741 if ($mode ==
'kanban') {
743 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
744 print
'<div class="box-flex-container kanban">';
748 if ($massactionbutton || $massaction) {
750 if (in_array(
$object->id, $arrayofselected)) {
755 print
$object->getKanbanView(
'', array(
'selected' => $selected));
756 if ($i == ($imaxinloop - 1)) {
763 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
767 print
'<td class="nowrap center">';
768 if ($massactionbutton || $massaction) {
770 if (in_array(
$object->id, $arrayofselected)) {
773 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
777 $totalarray[
'nbfield']++;
781 foreach (
$object->fields as $key => $val) {
782 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
783 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
784 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
785 } elseif ($key ==
'status') {
786 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
789 if (in_array($val[
'type'], array(
'timestamp'))) {
790 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
791 } elseif ($key ==
'ref') {
792 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
795 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'])) {
796 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
800 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
801 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
802 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) {
803 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
806 if ($key ==
'status') {
807 print
$object->getLibStatut(5);
808 } elseif ($key ==
'rowid') {
815 $totalarray[
'nbfield']++;
817 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
819 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
821 if (!isset($totalarray[
'val'])) {
822 $totalarray[
'val'] = array();
824 if (!isset($totalarray[
'val'][
't.'.$key])) {
825 $totalarray[
'val'][
't.'.$key] = 0;
827 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
832 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
834 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
835 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
836 print $hookmanager->resPrint;
844 print
'<td class="nowrap center">';
845 if ($massactionbutton || $massaction) {
847 if (in_array(
$object->id, $arrayofselected)) {
850 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
854 $totalarray[
'nbfield']++;
865include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
870 foreach ($arrayfields as $key => $val) {
871 if (!empty($val[
'checked'])) {
875 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
881$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
882$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
883print $hookmanager->resPrint;
885print
'</table>'.
"\n";
890if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
891 $hidegeneratedfilelistifempty = 1;
892 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
893 $hidegeneratedfilelistifempty = 0;
896 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
900 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
901 $urlsource .= str_replace(
'&',
'&', $param);
903 $filedir = $diroutputmassaction;
904 $genallowed = $permissiontoread;
905 $delallowed = $permissiontoadd;
907 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...
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
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.
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.