35 global $db, $langs, $conf;
42 $head[$h][0] =
dol_buildpath(
"/hrm/evaluation_card.php", 1).
'?id='.$object->id;
43 $head[$h][1] = $langs->trans(
"EvaluationCard");
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/evaluation_note.php', 1).
'?id='.$object->id;
56 $head[$h][1] = $langs->trans(
'Notes');
58 $head[$h][1] .= (!
getDolGlobalString(
'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/evaluation_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/evaluation_agenda.php", 1).
'?id='.$object->id;
78 $head[$h][1] = $langs->trans(
"Events");
79 $head[$h][2] =
'agenda';
103 $legendSkills =
'<div style="font-style:italic;">
104 ' . $langs->trans(
'legend') .
'
105 <table class="border" width="100%">
107 <td><span style="vertical-align:middle" class="toohappy diffnote little"></span>
108 ' . $langs->trans(
'CompetenceAcquiredByOneOrMore') .
'</td>
111 <td><span style="vertical-align:middle" class="veryhappy diffnote little"></span>
112 ' . $langs->trans(
'MaxlevelGreaterThan') .
'</td>
115 <td><span style="vertical-align:middle" class="happy diffnote little"></span>
116 ' . $langs->trans(
'MaxLevelEqualTo') .
'</td>
119 <td><span style="vertical-align:middle" class="sad diffnote little"></span>
120 ' . $langs->trans(
'MaxLevelLowerThan') .
'</td>
123 <td><span style="vertical-align:middle" class="toosad diffnote little"></span>
124 ' . $langs->trans(
'SkillNotAcquired') .
'</td>
128 return $legendSkills;
140 'title' => $langs->trans(
'MaxlevelGreaterThanShort'),
141 'style' =>
'background-color: #c3e6cb; border:5px solid #3097D1; color: #555; font-weight: 700;'
144 'title' => $langs->trans(
'MaxLevelEqualToShort'),
145 'style' =>
'background-color: #c3e6cb; color: #555; font-weight: 700;'
148 'title' => $langs->trans(
'MaxLevelLowerThanShort'),
149 'style' =>
'background-color: #bd4147; color: #FFFFFF; font-weight: 700;'
153 if ($obj->rankorder > $obj->required_rank) {
155 } elseif ($obj->rankorder == $obj->required_rank) {
157 } elseif ($obj->rankorder < $obj->required_rank) {
160 return '<span title="'.strtoupper($obj->label).
': ' .$results[$key][
'title'].
'" class="radio_js_bloc_number TNote_1" style="' . htmlspecialchars($results[$key][
'style'], ENT_QUOTES) .
'">' . strtoupper(substr($obj->label, 0, 3)) .(strlen($obj->label) > 3 ?
'..' :
'').
'</span>';
170 if (count($objects) < 0 || !is_array($objects)) {
175 foreach ($objects as $object) {
177 if (!isset($grouped[$ref])) {
180 $grouped[$ref][] = $object;
183 foreach ($grouped as $refs => $objects) {
184 if (count($objects) > 1) {
185 $newArray[$refs] = $objects;
189 foreach ($grouped as $refs => $objects) {
190 if (count($objects) == 1) {
191 $combinedArray[] = $objects[0];
194 $resultArray = array_merge($combinedArray, array_values($newArray));
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).
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
evaluationPrepareHead($object)
Prepare array of tabs for Evaluation.
getRankOrderResults($obj)
getGroupedEval($objects)
Grouped rows with same ref in array.