36 global $db, $langs, $conf;
43 $head[$h][0] = DOL_URL_ROOT.
"/hrm/job_card.php?id=".
$object->id;
44 $head[$h][1] = $langs->trans(
"JobProfile");
45 $head[$h][2] =
'job_card';
48 $head[$h][0] = DOL_URL_ROOT.
"/hrm/skill_tab.php?id=".
$object->id.
'&objecttype=job';
49 $head[$h][1] = $langs->trans(
"RequiredSkills");
51 $sql =
"SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX.
"hrm_skillrank WHERE objecttype = 'job' AND fk_object = ".((int)
$object->id);
52 $resql = $db->query($sql);
54 $obj = $db->fetch_object($resql);
56 $nbResources = $obj->nb;
59 if ($nbResources > 0) {
60 $head[$h][1] .= (!
getDolGlobalString(
'MAIN_OPTIMIZEFORTEXTBROWSER') ?
'<span class="badge marginleftonlyshort">'.($nbResources).
'</span>' :
'');
62 $head[$h][2] =
'skill_tab';
65 $head[$h][0] = DOL_URL_ROOT.
"/hrm/position.php?id=".
$object->id;
66 $head[$h][1] = $langs->trans(
"PositionsWithThisProfile");
68 $sql =
"SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX.
"hrm_job_user WHERE fk_job = ".((int)
$object->id);
69 $resql = $db->query($sql);
71 $obj = $db->fetch_object($resql);
73 $nbResources = $obj->nb;
76 if ($nbResources > 0) {
77 $head[$h][1] .= (!
getDolGlobalString(
'MAIN_OPTIMIZEFORTEXTBROWSER') ?
'<span class="badge marginleftonlyshort">'.($nbResources).
'</span>' :
'');
79 $head[$h][2] =
'position';
83 if (isset(
$object->fields[
'note_public']) || isset(
$object->fields[
'note_private'])) {
85 if (!empty(
$object->note_private)) {
88 if (!empty(
$object->note_public)) {
92 $head[$h][1] = $langs->trans(
'Notes');
94 $head[$h][1] .= (!
getDolGlobalString(
'MAIN_OPTIMIZEFORTEXTBROWSER') ?
'<span class="badge marginleftonlyshort">'.$nbNote.
'</span>' :
'');
96 $head[$h][2] =
'note';
100 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
101 require_once DOL_DOCUMENT_ROOT.
'/core/class/link.class.php';
103 $nbFiles = count(
dol_dir_list($upload_dir,
'files', 0,
'',
'(\.meta|_preview.*\.png)$'));
106 $head[$h][1] = $langs->trans(
'Documents');
107 if (($nbFiles + $nbLinks) > 0) {
108 $head[$h][1] .=
'<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).
'</span>';
110 $head[$h][2] =
'document';
114 $head[$h][1] = $langs->trans(
"Events");
115 $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_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).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
jobPrepareHead($object)
Prepare array of tabs for Job.