32require
'../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
37require_once __DIR__.
'/class/job.class.php';
48$langs->loadLangs(array(
'hrm',
'other'));
51$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
52$massaction =
GETPOST(
'massaction',
'alpha');
54$confirm =
GETPOST(
'confirm',
'alpha');
55$cancel =
GETPOST(
'cancel',
'alpha');
56$toselect =
GETPOST(
'toselect',
'array:int');
57$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
58$backtopage =
GETPOST(
'backtopage',
'alpha');
59$optioncss =
GETPOST(
'optioncss',
'aZ');
61$groupby =
GETPOST(
'groupby',
'aZ');
67$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
68$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
70if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
74$offset = $limit * $page;
81$diroutputmassaction =
$conf->hrm->dir_output.
'/temp/massgeneration/'.$user->id;
82$hookmanager->initHooks(array(
'joblist'));
85$extrafields->fetch_name_optionals_label(
$object->table_element);
88$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
93 $sortfield =
"t.".key(
$object->fields);
100$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
102foreach (
$object->fields as $key => $val) {
103 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
104 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
106 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
112$fieldstosearchall = array();
114foreach (
$object->fields as $key => $val) {
115 if (!empty($val[
'searchall'])) {
116 $fieldstosearchall[
't.'.$key] = $val[
'label'];
122$arrayfields = array();
123foreach (
$object->fields as $key => $val) {
125 if (!empty($val[
'visible'])) {
126 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
127 $arrayfields[$tableprefix.
'.'.$key] = array(
128 'label' => $val[
'label'],
129 'checked' => (($visible < 0) ? 0 : 1),
130 'enabled' => (abs($visible) != 3 && (bool)
dol_eval((
string) $val[
'enabled'], 1)),
131 'position' => $val[
'position'],
132 'help' => isset($val[
'help']) ? $val[
'help'] :
''
137include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
143$permissiontoread = $user->hasRight(
'hrm',
'all',
'read');
144$permissiontoadd = $user->hasRight(
'hrm',
'all',
'write');
145$permissiontodelete = $user->hasRight(
'hrm',
'all',
'delete');
148if ($user->socid > 0) {
158if (!$permissiontoread) {
168if (
GETPOST(
'cancel',
'alpha')) {
172if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
176$parameters = array(
'arrayfields' => &$arrayfields);
177$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
182if (empty($reshook)) {
184 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
187 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
188 foreach (
$object->fields as $key => $val) {
190 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
191 $search[$key.
'_dtstart'] =
'';
192 $search[$key.
'_dtend'] =
'';
197 $search_array_options = array();
199 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
200 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
205 $objectclass =
'Job';
206 $objectlabel =
'Job';
207 $uploaddir =
$conf->hrm->dir_output;
210 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
223$title = $langs->trans(
"JobsProfiles");
233$sql .=
" ".$object->getFieldList(
't');
235if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
236 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
237 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
"");
241$parameters = array();
242$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
243$sql .= $hookmanager->resPrint;
244$sql = preg_replace(
'/,\s*$/',
'', $sql);
248$sql .=
", COUNT(ju.rowid) as nbofskills";
249$sql .=
" FROM ".$db->prefix().$object->table_element.
" as t";
250if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
251 $sql .=
" LEFT JOIN ".$db->prefix().$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
253$sql .=
" LEFT JOIN ".$db->prefix().
"hrm_job_user as ju ON ju.fk_job = t.rowid";
255$parameters = array();
256$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
257$sql .= $hookmanager->resPrint;
258if (
$object->ismultientitymanaged == 1) {
259 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element, (
GETPOSTINT(
'search_current_entity') ? 0 : 1)).
")";
261 $sql .=
" WHERE 1 = 1";
263foreach ($search as $key => $val) {
264 if (array_key_exists($key,
$object->fields)) {
265 if ($key ==
'status' && $search[$key] == -1) {
268 $field_spec =
$object->fields[$key];
269 $mode_search = ((
$object->isInt($field_spec) ||
$object->isFloat($field_spec)) ? 1 : 0);
270 if ((strpos($field_spec[
'type'],
'integer:') === 0) || (strpos($field_spec[
'type'],
'sellist:') === 0) || !empty($field_spec[
'arrayofkeyval'])) {
271 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($field_spec[
'arrayofkeyval']) || !array_key_exists(
'0', $field_spec[
'arrayofkeyval'])))) {
276 if ($field_spec[
'type'] ===
'boolean') {
278 if ($search[$key] ==
'-1') {
282 if (empty($field_spec[
'searchmulti'])) {
283 if (!is_array($search[$key]) && $search[$key] !=
'') {
284 $sql .=
natural_search(
"t.".
$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
287 if (is_array($search[$key]) && !empty($search[$key])) {
288 $sql .=
natural_search(
"t.".
$db->escape($key), implode(
',', $search[$key]), (($key ==
'status') ? 2 : $mode_search));
292 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
293 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
294 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
295 if (preg_match(
'/_dtstart$/', $key)) {
296 $sql .=
" AND t.".$db->sanitize($columnName).
" >= '".
$db->idate($search[$key]).
"'";
298 if (preg_match(
'/_dtend$/', $key)) {
299 $sql .=
" AND t.".$db->sanitize($columnName).
" <= '".
$db->idate($search[$key]).
"'";
306 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
310include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
312$parameters = array();
313$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
314$sql .= $hookmanager->resPrint;
317foreach (
$object->fields as $key => $val) {
318 $sql .=
"t.".$db->sanitize($key).
", ";
321if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
322 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
323 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
"ef.".$key.
', ' :
'');
327$parameters = array();
328$reshook = $hookmanager->executeHooks(
'printFieldListGroupBy', $parameters, $object, $action);
329$sql .= $hookmanager->resPrint;
330$sql = preg_replace(
'/,\s*$/',
'', $sql);
333$nbtotalofrecords =
'';
336 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
337 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
339 $resql =
$db->query($sqlforcount);
341 $objforcount =
$db->fetch_object($resql);
342 $nbtotalofrecords = $objforcount->nbtotalofrecords;
347 if (($page * $limit) > (
int) $nbtotalofrecords) {
355$sql .=
$db->order($sortfield, $sortorder);
357 $sql .=
$db->plimit($limit + 1, $offset);
360$resql =
$db->query($sql);
366$num =
$db->num_rows($resql);
370if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
371 $obj =
$db->fetch_object($resql);
373 header(
"Location: ".
dol_buildpath(
'/hrm/job_card.php', 1).
'?id='.((
int) $id));
381llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'mod-hrm page-list bodyforlist');
398$arrayofselected = is_array($toselect) ? $toselect : array();
402 $param .=
'&mode='.urlencode($mode);
404if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
405 $param .=
'&contextpage='.urlencode($contextpage);
407if ($limit > 0 && $limit !=
$conf->liste_limit) {
408 $param .=
'&limit='.((int) $limit);
410if ($optioncss !=
'') {
411 $param .=
'&optioncss='.urlencode($optioncss);
414 $param .=
'&groupby='.urlencode($groupby);
416foreach ($search as $key => $val) {
417 if (is_array($search[$key])) {
418 foreach ($search[$key] as $skey) {
420 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
423 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
424 $param .=
'&search_'.$key.
'month='.
GETPOSTINT(
'search_'.$key.
'month');
425 $param .=
'&search_'.$key.
'day='.
GETPOSTINT(
'search_'.$key.
'day');
426 $param .=
'&search_'.$key.
'year='.
GETPOSTINT(
'search_'.$key.
'year');
427 } elseif ($search[$key] !=
'') {
428 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
432include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
434$parameters = array(
'param' => &$param);
435$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
436$param .= $hookmanager->resPrint;
439$arrayofmassactions = array(
445if (!empty($permissiontodelete)) {
446 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
448if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
449 $arrayofmassactions = array();
451$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
453print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
454if ($optioncss !=
'') {
455 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
457print
'<input type="hidden" name="token" value="'.newToken().
'">';
458print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
459print
'<input type="hidden" name="action" value="list">';
460print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
461print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
462print
'<input type="hidden" name="page" value="'.$page.
'">';
463print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
464print
'<input type="hidden" name="mode" value="'.$mode.
'">';
468$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'));
469$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'));
470$newcardbutton .= dolGetButtonTitleSeparator();
471$newcardbutton .= dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/hrm/job_card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
473print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'object_'.
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
476$topicmail =
"SendJobRef";
479$trackid =
'xxxx'.$object->id;
480include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
485 foreach ($fieldstosearchall as $key => $val) {
486 $fieldstosearchall[$key] = $langs->trans($val);
487 $setupstring .= $key.
"=".$val.
";";
489 print
'<!-- Search done like if JOBPOSITION_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
490 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>';
498$parameters = array();
499$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
500if (empty($reshook)) {
501 $moreforfilter .= $hookmanager->resPrint;
503 $moreforfilter = $hookmanager->resPrint;
506 'arrayfields' => &$arrayfields,
509if (!empty($moreforfilter)) {
510 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
511 print $moreforfilter;
515$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
516$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
$conf->main_checkbox_left_column);
517$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
518$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
520print
'<div class="div-table-responsive">';
521print
'<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
526print
'<tr class="liste_titre_filter">';
528if (
$conf->main_checkbox_left_column) {
529 print
'<td class="liste_titre center maxwidthsearch">';
530 $searchpicto = $form->showFilterButtons(
'left');
534foreach (
$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 if (empty($val[
'searchmulti'])) {
550 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);
552 print $form->multiselectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), 0, 0,
'maxwidth100'.($key ==
'status' ?
' search_status width100 onrightofpage' :
''), 1);
554 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
555 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
556 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
557 print
'<div class="nowrap">';
558 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
560 print
'<div class="nowrap">';
561 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
563 } elseif ($key ==
'lang') {
564 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
566 print $formadmin->select_language((isset($search[$key]) ? $search[$key] :
''),
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
567 } elseif ($val[
'type'] ===
'boolean') {
568 print $form->selectyesno(
'search_' . $key, $search[$key] ??
'', 1,
false, 1);
570 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] :
'').
'">';
576include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
578$parameters = array(
'arrayfields' => $arrayfields);
579$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
580print $hookmanager->resPrint;
582print
'<td class="liste_titre"></td>';
585if (!
$conf->main_checkbox_left_column) {
586 print
'<td class="liste_titre center maxwidthsearch">';
587 $searchpicto = $form->showFilterButtons();
598print
'<tr class="liste_titre">';
600if (
$conf->main_checkbox_left_column) {
601 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
604foreach (
$object->fields as $key => $val) {
605 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
606 if ($key ==
'status') {
607 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
608 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
609 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
610 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
611 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
612 } 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'])) {
613 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
615 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
616 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
617 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";
622include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
624$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
625$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
626print $hookmanager->resPrint;
628print
'<th class="liste_titre right">'.$langs->trans(
"NbOfExpectedSkills").
'</th>';
632if (!
$conf->main_checkbox_left_column) {
633 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
640$needToFetchEachLine = 0;
641if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
642 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
643 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
644 $needToFetchEachLine++;
656$imaxinloop = ($limit ? min($num, $limit) : $num);
657while ($i < $imaxinloop) {
658 $obj =
$db->fetch_object($resql);
664 $object->setVarsFromFetchObj($obj);
666 if ($mode ==
'kanban') {
667 $object->deplacement = $obj->deplacement;
668 $object->description = $obj->description;
671 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
672 print
'<div class="box-flex-container kanban">';
676 if ($massactionbutton || $massaction) {
678 if (in_array(
$object->id, $arrayofselected)) {
682 print
$object->getKanbanView(
'', array(
'selected' => $selected));
683 if ($i == ($imaxinloop - 1)) {
690 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
692 if (
$conf->main_checkbox_left_column) {
693 print
'<td class="nowrap center">';
694 if ($massactionbutton || $massaction) {
696 if (in_array(
$object->id, $arrayofselected)) {
699 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
707 foreach (
$object->fields as $key => $val) {
708 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
709 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
710 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
711 } elseif ($key ==
'status') {
712 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
715 if (in_array($val[
'type'], array(
'timestamp'))) {
716 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
717 } elseif ($key ==
'ref') {
718 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
721 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'])) {
722 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
726 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
727 print
'<td'.($cssforfield ?
' class="'.$cssforfield.((preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key)) ?
' classfortooltip' :
'').
'"' :
'');
728 if (preg_match(
'/tdoverflow/', $cssforfield) && !in_array($val[
'type'], array(
'ip',
'url')) && !is_numeric(
$object->$key) && !in_array($key, array(
'ref'))) {
729 print
' title="'.dol_escape_htmltag((
string)
$object->$key).
'"';
732 if ($key ==
'status') {
733 print
$object->getLibStatut(5);
734 } elseif ($key ==
'rowid') {
735 print
$object->showOutputField($val, $key, (
string)
$object->id,
'');
736 } elseif ($key ==
'label') {
739 print
$object->showOutputField($val, $key, (
string)
$object->$key,
'');
745 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
749 if (!isset($totalarray[
'val'])) {
752 if (!isset($totalarray[
'val'][
't.'.$key])) {
760 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
762 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
763 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
764 print $hookmanager->resPrint;
769 print
'<td class="right">'.$obj->nbofskills.
'</td>';
772 if (empty(
$conf->main_checkbox_left_column)) {
773 print
'<td class="nowrap center">';
774 if ($massactionbutton || $massaction) {
776 if (in_array(
$object->id, $arrayofselected)) {
779 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
794include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
799 foreach ($arrayfields as $key => $val) {
800 if (!empty($val[
'checked'])) {
804 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
810$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
811$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
812print $hookmanager->resPrint;
814print
'</table>'.
"\n";
819if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
820 $hidegeneratedfilelistifempty = 1;
821 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
822 $hidegeneratedfilelistifempty = 0;
825 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
829 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
830 $urlsource .= str_replace(
'&',
'&', $param);
832 $filedir = $diroutputmassaction;
833 $genallowed = $permissiontoread;
834 $delallowed = $permissiontoadd;
836 print $formfile->showdocuments(
'massfilesarea_hrm',
'', $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.
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.
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...
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
buildzip.php
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.