32 global $db, $langs, $conf;
34 $langs->load(
"recruitment");
39 $head[$h][0] =
dol_buildpath(
"/recruitment/recruitmentcandidature_card.php", 1).
'?id='.$object->id;
40 $head[$h][1] = $langs->trans(
"RecruitmentCandidature");
41 $head[$h][2] =
'card';
51 if (isset($object->fields[
'note_public']) || isset($object->fields[
'note_private'])) {
53 if (!empty($object->note_private)) {
56 if (!empty($object->note_public)) {
59 $head[$h][0] =
dol_buildpath(
'/recruitment/recruitmentcandidature_note.php', 1).
'?id='.$object->id;
60 $head[$h][1] = $langs->trans(
'Notes');
62 $head[$h][1] .=
'<span class="badge marginleftonlyshort">'.$nbNote.
'</span>';
64 $head[$h][2] =
'note';
68 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
69 require_once DOL_DOCUMENT_ROOT.
'/core/class/link.class.php';
70 $upload_dir = $conf->recruitment->dir_output.
"/recruitmentcandidature/".
dol_sanitizeFileName($object->ref);
71 $nbFiles = count(
dol_dir_list($upload_dir,
'files', 0,
'',
'(\.meta|_preview.*\.png)$'));
72 $nbLinks =
Link::count($db, $object->element, $object->id);
73 $head[$h][0] =
dol_buildpath(
"/recruitment/recruitmentcandidature_document.php", 1).
'?id='.$object->id;
74 $head[$h][1] = $langs->trans(
'Documents');
75 if (($nbFiles + $nbLinks) > 0) {
76 $head[$h][1] .=
'<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).
'</span>';
78 $head[$h][2] =
'document';
81 $head[$h][0] =
dol_buildpath(
"/recruitment/recruitmentcandidature_agenda.php", 1).
'?id='.$object->id;
82 $head[$h][1] = $langs->trans(
"Events");
83 $head[$h][2] =
'agenda';
static count($dbs, $objecttype, $objectid)
Return nb of links.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).
recruitmentCandidaturePrepareHead($object)
Prepare array of tabs for RecruitmentCandidature.