35 global $db, $langs, $conf;
42 $head[$h][0] =
dol_buildpath(
"/hrm/skilldet_card.php", 1).
'?id='.$object->id;
43 $head[$h][1] = $langs->trans(
"Card");
44 $head[$h][2] =
'card';
47 if (isset($object->fields[
'note_public']) || isset($object->fields[
'note_private'])) {
49 if (!empty($object->note_private)) {
52 if (!empty($object->note_public)) {
55 $head[$h][0] =
dol_buildpath(
'/hrm/skilldet_note.php', 1).
'?id='.$object->id;
56 $head[$h][1] = $langs->trans(
'Notes');
58 $head[$h][1] .= (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER) ?
'<span class="badge marginleftonlyshort">'.$nbNote.
'</span>' :
'');
60 $head[$h][2] =
'note';
64 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
65 require_once DOL_DOCUMENT_ROOT.
'/core/class/link.class.php';
67 $nbFiles = count(
dol_dir_list($upload_dir,
'files', 0,
'',
'(\.meta|_preview.*\.png)$'));
68 $nbLinks =
Link::count($db, $object->element, $object->id);
69 $head[$h][0] =
dol_buildpath(
"/hrm/skilldet_document.php", 1).
'?id='.$object->id;
70 $head[$h][1] = $langs->trans(
'Documents');
71 if (($nbFiles + $nbLinks) > 0) {
72 $head[$h][1] .=
'<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).
'</span>';
74 $head[$h][2] =
'document';
77 $head[$h][0] =
dol_buildpath(
"/hrm/skilldet_agenda.php", 1).
'?id='.$object->id;
78 $head[$h][1] = $langs->trans(
"Events");
79 $head[$h][2] =
'agenda';
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.
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).