34 global $db, $langs, $conf;
36 $langs->load(
"recruitment");
41 $head[$h][0] = DOL_URL_ROOT .
'/recruitment/recruitmentcandidature_card.php?id=' .
$object->id;
42 $head[$h][1] = $langs->trans(
"RecruitmentCandidature");
43 $head[$h][2] =
'card';
53 if (isset(
$object->fields[
'note_public']) || isset(
$object->fields[
'note_private'])) {
55 if (!empty(
$object->note_private)) {
58 if (!empty(
$object->note_public)) {
61 $head[$h][0] = DOL_URL_ROOT .
'/recruitment/recruitmentcandidature_note.php?id=' .
$object->id;
62 $head[$h][1] = $langs->trans(
'Notes');
64 $head[$h][1] .=
'<span class="badge marginleftonlyshort">' . $nbNote .
'</span>';
66 $head[$h][2] =
'note';
70 require_once DOL_DOCUMENT_ROOT .
'/core/lib/files.lib.php';
71 require_once DOL_DOCUMENT_ROOT .
'/core/class/link.class.php';
73 $nbFiles = count(
dol_dir_list($upload_dir,
'files', 0,
'',
'(\.meta|_preview.*\.png)$'));
75 $head[$h][0] = DOL_URL_ROOT .
'/recruitment/recruitmentcandidature_document.php?id=' .
$object->id;
76 $head[$h][1] = $langs->trans(
'Documents');
77 if (($nbFiles + $nbLinks) > 0) {
78 $head[$h][1] .=
'<span class="badge marginleftonlyshort">' . ($nbFiles + $nbLinks) .
'</span>';
80 $head[$h][2] =
'document';
83 $head[$h][0] = DOL_URL_ROOT .
'/recruitment/recruitmentcandidature_agenda.php?id=' .
$object->id;
84 $head[$h][1] = $langs->trans(
"Events");
85 $head[$h][2] =
'agenda';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
static count($dbs, $objecttype, $objectid)
Return nb of links.
dol_dir_list($utf8_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_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.