27require_once
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/recruitment/lib/recruitment.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/recruitment/lib/recruitment_recruitmentjobposition.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentcandidature.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentjobposition.class.php';
37$langs->loadLangs(array(
"recruitment",
"other"));
42$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
43$massaction =
GETPOST(
'massaction',
'alpha');
45$confirm =
GETPOST(
'confirm',
'alpha');
46$cancel =
GETPOST(
'cancel',
'alpha');
47$toselect =
GETPOST(
'toselect',
'array');
48$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : ((empty(
$id) && empty($ref)) ?
'recruitmentcandidaturelist' :
'recruitmentjobposition_candidature');
49$backtopage =
GETPOST(
'backtopage',
'alpha');
50$optioncss =
GETPOST(
'optioncss',
'aZ');
56$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
57$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
59if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
63$offset = $limit * $page;
70$diroutputmassaction = $conf->recruitment->dir_output.
'/temp/massgeneration/'.$user->id;
71$hookmanager->initHooks(array($contextpage));
74$extrafields->fetch_name_optionals_label(
$object->table_element);
77$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
81 $sortfield =
"t.date_creation";
88$search_all =
GETPOST(
'search_all',
'alphanohtml');
90foreach (
$object->fields as $key => $val) {
91 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
92 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
94 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
101$fieldstosearchall = array();
102foreach (
$object->fields as $key => $val) {
103 if (!empty($val[
'searchall'])) {
104 $fieldstosearchall[
't.'.$key] = $val[
'label'];
116$arrayfields = array();
117foreach (
$object->fields as $key => $val) {
119 if (!empty($val[
'visible'])) {
120 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
121 $arrayfields[
't.'.$key] = array(
122 'label' => $val[
'label'],
123 'checked' => (($visible < 0) ? 0 : 1),
124 'enabled' => (abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
125 'position' => $val[
'position'],
126 'help' => isset($val[
'help']) ? $val[
'help'] :
''
131include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
135if ($id > 0 || !empty($ref)) {
136 $jobposition->fetch($id, $ref);
137 $id = $jobposition->id;
143$permissiontoread = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'read');
144$permissiontoadd = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
145$permissiontodelete = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'delete');
151if ($jobposition->id > 0) {
152 $isdraft = (($jobposition->status == $jobposition::STATUS_DRAFT) ? 1 : 0);
153 $result =
restrictedArea($user,
'recruitment', $jobposition->id,
'recruitment_recruitmentjobposition',
'recruitmentjobposition',
'',
'rowid', $isdraft);
155 $result =
restrictedArea($user,
'recruitment', 0,
'recruitment_recruitmentcandidature',
'recruitmentjobposition');
164if (
GETPOST(
'cancel',
'alpha')) {
168if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
172$parameters = array();
173$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
178if (empty($reshook)) {
180 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
183 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
184 foreach (
$object->fields as $key => $val) {
186 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
187 $search[$key.
'_dtstart'] =
'';
188 $search[$key.
'_dtend'] =
'';
192 $search_array_options = array();
194 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
195 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
200 $objectclass =
'RecruitmentCandidature';
201 $objectlabel =
'RecruitmentCandidature';
202 $uploaddir = $conf->recruitment->dir_output;
203 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
212$form =
new Form($db);
218$title = $langs->trans(
'RecruitmentCandidatures');
226$sql .=
$object->getFieldList(
't');
228if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
229 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
230 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
234$parameters = array();
235$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object);
236$sql .= $hookmanager->resPrint;
237$sql = preg_replace(
'/,\s*$/',
'', $sql);
241$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
242if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
243 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
246$parameters = array();
247$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object);
248$sql .= $hookmanager->resPrint;
249if (
$object->ismultientitymanaged == 1) {
250 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element).
")";
252 $sql .=
" WHERE 1 = 1";
254foreach ($search as $key => $val) {
255 if (array_key_exists($key,
$object->fields)) {
256 if ($key ==
'status' && $search[$key] == -1) {
260 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
261 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
266 if ($search[$key] !=
'') {
267 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
270 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
271 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
272 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
273 if (preg_match(
'/_dtstart$/', $key)) {
274 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
276 if (preg_match(
'/_dtend$/', $key)) {
277 $sql .=
" AND t.".$db->escape($columnName).
" <= '" . $db->idate($search[$key]).
"'";
284 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
287 $sql .=
" AND t.fk_recruitmentjobposition = ".((int) $id);
291include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
293$parameters = array();
294$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
295$sql .= $hookmanager->resPrint;
316$nbtotalofrecords =
'';
319 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
320 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
321 $resql = $db->query($sqlforcount);
323 $objforcount = $db->fetch_object($resql);
324 $nbtotalofrecords = $objforcount->nbtotalofrecords;
329 if (($page * $limit) > $nbtotalofrecords) {
337$sql .= $db->order($sortfield, $sortorder);
339 $sql .= $db->plimit($limit + 1, $offset);
342$resql = $db->query($sql);
348$num = $db->num_rows($resql);
352if ($num == 1 &&
getDolGlobalString(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
353 $obj = $db->fetch_object($resql);
355 header(
"Location: ".DOL_URL_ROOT.
'/recruitment/recruitmentcandidature_card.php?id='.$id);
363llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'bodyforlist');
368if ($jobposition->id > 0 && (empty($action) || ($action !=
'edit' && $action !=
'create'))) {
373 $res =
$object->fetch_optionals();
381 if ($action ==
'delete') {
382 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'DeleteRecruitmentJobPosition'), $langs->trans(
'ConfirmDeleteObject'),
'confirm_delete',
'', 0, 1);
385 if ($action ==
'deleteline') {
386 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&lineid='.$lineid, $langs->trans(
'DeleteLine'), $langs->trans(
'ConfirmDeleteLine'),
'confirm_deleteline',
'', 0, 1);
389 if ($action ==
'clone') {
391 $formquestion = array();
392 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneAsk',
$object->ref),
'confirm_clone', $formquestion,
'yes', 1);
396 if ($action ==
'xxx') {
397 $formquestion = array();
408 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'XXX'), $text,
'confirm_xxx', $formquestion, 0, 1, 220);
412 $parameters = array(
'formConfirm' => $formconfirm,
'lineid' => $lineid);
413 $reshook = $hookmanager->executeHooks(
'formConfirm', $parameters, $object, $action);
414 if (empty($reshook)) {
415 $formconfirm .= $hookmanager->resPrint;
416 } elseif ($reshook > 0) {
417 $formconfirm = $hookmanager->resPrint;
426 $linkback =
'<a href="'.dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
428 $morehtmlref =
'<div class="refidno">';
437 if (isModEnabled(
'project')) {
438 $langs->load(
"projects");
439 $morehtmlref .= $langs->trans(
'Project').
' ';
440 if ($permissiontoadd) {
441 if ($action !=
'classify') {
442 $morehtmlref .=
'<a class="editfielda" href="'.$_SERVER[
'PHP_SELF'].
'?action=classify&token='.
newToken().
'&id='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetProject')).
'</a>';
444 $morehtmlref .=
' : ';
445 if ($action ==
'classify') {
447 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'">';
448 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
449 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
450 $morehtmlref .= $formproject->select_projects(0,
$object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
451 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
452 $morehtmlref .=
'</form>';
454 $morehtmlref .= $form->form_project($_SERVER[
'PHP_SELF'].
'?id='.
$object->id, !empty(
$object->socid) ?
$object->socid : 0,
$object->fk_project,
'none', 0, 0, 0, 1,
'',
'maxwidth300');
457 if (!empty(
$object->fk_project)) {
459 $proj->fetch(
$object->fk_project);
460 $morehtmlref .=
': '.$proj->getNomUrl();
466 $morehtmlref .=
'</div>';
469 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
472 print
'<div class="fichecenter">';
473 print
'<div class="fichehalfleft">';
474 print
'<div class="underbanner clearboth"></div>';
475 print
'<table class="border centpercent tableforfield">'.
"\n";
478 $keyforbreak =
'description';
479 unset(
$object->fields[
'fk_project']);
481 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_view.tpl.php';
484 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
490 print
'<div class="clearboth"></div>';
500$arrayofselected = is_array($toselect) ? $toselect : array();
504 $param .=
'&id='.urlencode((
string) ($id));
507 $param .=
'&mode='.urlencode($mode);
509if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
510 $param .=
'&contextpage='.urlencode($contextpage);
512if ($limit > 0 && $limit != $conf->liste_limit) {
513 $param .=
'&limit='.((int) $limit);
515foreach ($search as $key => $val) {
516 if (is_array($search[$key])) {
517 foreach ($search[$key] as $skey) {
519 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
522 } elseif ($search[$key] !=
'') {
523 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
526if ($optioncss !=
'') {
527 $param .=
'&optioncss='.urlencode($optioncss);
530include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
532$parameters = array(
'param' => &$param);
533$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object);
534$param .= $hookmanager->resPrint;
537$arrayofmassactions = array(
538 'validate' =>
img_picto(
'',
'check',
'class="pictofixedwidth"').$langs->trans(
"Validate"),
543if (!empty($permissiontodelete)) {
544 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
546if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
547 $arrayofmassactions = array();
549$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
551print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
552if ($optioncss !=
'') {
553 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
555print
'<input type="hidden" name="token" value="'.newToken().
'">';
556print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
557print
'<input type="hidden" name="action" value="list">';
558print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
559print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
560print
'<input type="hidden" name="page" value="'.$page.
'">';
561print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
562print
'<input type="hidden" name="mode" value="'.$mode.
'">';
563print
'<input type="hidden" name="id" value="'.$id.
'">';
567$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'));
568$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'));
570$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/recruitment/recruitmentcandidature_card.php', 1).
'?action=create&fk_recruitmentjobposition='.$id,
'', $permissiontoadd);
572print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'object_'.
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
575$topicmail =
"SendRecruitmentCandidatureRef";
576$modelmail =
"recruitmentcandidature";
578$trackid =
'recruitmentapplication'.$object->id;
579include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
583 foreach ($fieldstosearchall as $key => $val) {
584 $fieldstosearchall[$key] = $langs->trans($val);
585 $setupstring .= $key.
"=".$val.
";";
587 print
'<!-- Search done like if RECRUITMENT_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
588 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>'.
"\n";
596$parameters = array();
597$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
598if (empty($reshook)) {
599 $moreforfilter .= $hookmanager->resPrint;
601 $moreforfilter = $hookmanager->resPrint;
604if (!empty($moreforfilter)) {
605 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
606 print $moreforfilter;
610$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
611$selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
612$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
614print
'<div class="div-table-responsive">';
615print
'<table class="tagtable nobottomiftotal noborder liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
620print
'<tr class="liste_titre_filter">';
623 print
'<td class="liste_titre maxwidthsearch center">';
624 $searchpicto = $form->showFilterButtons(
'left');
628foreach (
$object->fields as $key => $val) {
629 $searchkey = empty($search[$key]) ?
'' : $search[$key];
630 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
631 if ($key ==
'status') {
632 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
633 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
634 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
635 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
636 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
637 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
638 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
640 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
641 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
642 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
643 print $form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), $val[
'notnull'], 0, 0,
'', 1, 0, 0,
'',
'maxwidth100'.($key ==
'status' ?
' search_status width100 onrightofpage' :
''), 1);
644 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
645 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
646 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
647 print
'<div class="nowrap">';
648 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
650 print
'<div class="nowrap">';
651 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
653 } elseif ($key ==
'lang') {
654 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
656 print $formadmin->select_language($search[$key],
'search_lang', 0, array(), 1, 0, 0,
'minwidth100imp maxwidth125', 2);
658 print
'<input type="text" class="flat maxwidth'.($val[
'type'] ==
'integer' ?
'50' :
'75').
'" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
664include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
667$parameters = array(
'arrayfields' => $arrayfields);
668$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
669print $hookmanager->resPrint;
672 print
'<td class="liste_titre center maxwidthsearch">';
673 $searchpicto = $form->showFilterButtons();
679$totalarray = array();
680$totalarray[
'nbfield'] = 0;
684print
'<tr class="liste_titre">';
686 print
getTitleFieldOfList(($mode !=
'kanban' ? $selectedfields :
''), 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
687 $totalarray[
'nbfield']++;
689foreach (
$object->fields as $key => $val) {
690 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
691 if ($key ==
'status') {
692 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
693 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
694 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
695 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
696 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
697 } 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'])) {
698 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
700 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
701 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
702 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";
703 $totalarray[
'nbfield']++;
707include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
709$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
710$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
711print $hookmanager->resPrint;
714 print
getTitleFieldOfList(($mode !=
'kanban' ? $selectedfields :
''), 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
715 $totalarray[
'nbfield']++;
721$needToFetchEachLine = 0;
722if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
723 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
724 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
725 $needToFetchEachLine++;
734$savnbfield = $totalarray[
'nbfield'];
735$totalarray = array();
736$totalarray[
'nbfield'] = 0;
737$imaxinloop = ($limit ? min($num, $limit) : $num);
738while ($i < $imaxinloop) {
739 $obj = $db->fetch_object($resql);
745 $object->setVarsFromFetchObj($obj);
747 if ($mode ==
'kanban') {
749 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
750 print
'<div class="box-flex-container kanban">';
754 $recruitment->fetch($obj->fk_recruitmentjobposition);
760 if ($massactionbutton || $massaction) {
762 if (in_array(
$object->id, $arrayofselected)) {
766 print
$object->getKanbanView(
'', array(
'jobpositionlink' => $recruitment->getNomUrl(1),
'selected' => $selected));
767 if ($i == ($imaxinloop - 1)) {
774 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
777 print
'<td class="nowrap center">';
778 if ($massactionbutton || $massaction) {
780 if (in_array(
$object->id, $arrayofselected)) {
783 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
787 $totalarray[
'nbfield']++;
790 foreach (
$object->fields as $key => $val) {
791 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
792 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
793 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
794 } elseif ($key ==
'status') {
795 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
798 if (in_array($val[
'type'], array(
'timestamp'))) {
799 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
800 } elseif ($key ==
'ref') {
801 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
804 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'rowid',
'status')) && empty($val[
'arrayofkeyval'])) {
805 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
809 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
810 print
'<td'.($cssforfield ?
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ?
' classfortooltip' :
'').
'"' :
'');
811 if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric(
$object->$key)) {
812 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
815 if ($key ==
'status') {
816 print
$object->getLibStatut(5);
817 } elseif ($key ==
'rowid') {
824 $totalarray[
'nbfield']++;
826 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
828 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
830 if (!isset($totalarray[
'val'])) {
831 $totalarray[
'val'] = array();
833 if (!isset($totalarray[
'val'][
't.'.$key])) {
834 $totalarray[
'val'][
't.'.$key] = 0;
836 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
841 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
843 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
844 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
845 print $hookmanager->resPrint;
848 print
'<td class="nowrap center">';
849 if ($massactionbutton || $massaction) {
851 if (in_array(
$object->id, $arrayofselected)) {
854 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
858 $totalarray[
'nbfield']++;
869include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
874 foreach ($arrayfields as $key => $val) {
875 if (!empty($val[
'checked'])) {
879 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
885$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
886$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
887print $hookmanager->resPrint;
889print
'</table>'.
"\n";
894if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
895 $hidegeneratedfilelistifempty = 1;
896 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
897 $hidegeneratedfilelistifempty = 0;
900 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
904 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
905 $urlsource .= str_replace(
'&',
'&', $param);
907 $filedir = $diroutputmassaction;
908 $genallowed = $permissiontoread;
909 $delallowed = $permissiontoadd;
911 print $formfile->showdocuments(
'massfilesarea_recruitment',
'', $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($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage projects.
Class for RecruitmentCandidature.
Class for RecruitmentJobPosition.
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)
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_get_fiche_end($notab=0)
Return tab footer of a card.
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...
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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.
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...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
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...
recruitmentjobpositionPrepareHead($object)
Prepare array of tabs for RecruitmentJobPosition.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.