36 global $db, $langs, $conf;
44 $head[$h][1] = $langs->trans(
"EvaluationCard");
45 $head[$h][2] =
'card';
48 if (isset(
$object->fields[
'note_public']) || isset(
$object->fields[
'note_private'])) {
50 if (!empty(
$object->note_private)) {
53 if (!empty(
$object->note_public)) {
57 $head[$h][1] = $langs->trans(
'Notes');
59 $head[$h][1] .= (!
getDolGlobalString(
'MAIN_OPTIMIZEFORTEXTBROWSER') ?
'<span class="badge marginleftonlyshort">'.$nbNote.
'</span>' :
'');
61 $head[$h][2] =
'note';
65 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
66 require_once DOL_DOCUMENT_ROOT.
'/core/class/link.class.php';
68 $nbFiles = count(
dol_dir_list($upload_dir,
'files', 0,
'',
'(\.meta|_preview.*\.png)$'));
71 $head[$h][1] = $langs->trans(
'Documents');
72 if (($nbFiles + $nbLinks) > 0) {
73 $head[$h][1] .=
'<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).
'</span>';
75 $head[$h][2] =
'document';
79 $head[$h][1] = $langs->trans(
"Events");
80 $head[$h][2] =
'agenda';
104 $legendSkills =
'<div style="font-style:italic;">
105 ' . $langs->trans(
'legend') .
'
106 <table class="border" width="100%">
108 <td><span style="vertical-align:middle" class="toohappy diffnote little"></span>
109 ' . $langs->trans(
'CompetenceAcquiredByOneOrMore') .
'</td>
112 <td><span style="vertical-align:middle" class="veryhappy diffnote little"></span>
113 ' . $langs->trans(
'MaxlevelGreaterThan') .
'</td>
116 <td><span style="vertical-align:middle" class="happy diffnote little"></span>
117 ' . $langs->trans(
'MaxLevelEqualTo') .
'</td>
120 <td><span style="vertical-align:middle" class="sad diffnote little"></span>
121 ' . $langs->trans(
'MaxLevelLowerThan') .
'</td>
124 <td><span style="vertical-align:middle" class="toosad diffnote little"></span>
125 ' . $langs->trans(
'SkillNotAcquired') .
'</td>
129 return $legendSkills;
142 'title' => $langs->trans(
'MaxlevelGreaterThanShort'),
143 'style' =>
'background-color: #c3e6cb; border:5px solid #3097D1; color: #555; font-weight: 700;'
146 'title' => $langs->trans(
'MaxLevelEqualToShort'),
147 'style' =>
'background-color: #c3e6cb; color: #555; font-weight: 700;'
150 'title' => $langs->trans(
'MaxLevelLowerThanShort'),
151 'style' =>
'background-color: #bd4147; color: #FFFFFF; font-weight: 700;'
155 if ($obj->rankorder > $obj->required_rank) {
157 } elseif ($obj->rankorder == $obj->required_rank) {
159 } elseif ($obj->rankorder < $obj->required_rank) {
162 return '<span title="'.dol_escape_htmltag($obj->label).
': ' .$results[$key][
'title'].
'" class="radio_js_bloc_number TNote_1" style="' .
dol_escape_htmltag($results[$key][
'style']) .
'">' .
dol_trunc($obj->label, 4).
'</span>';
173 if (count($objects) < 0 || !is_array($objects)) {
178 foreach ($objects as
$object) {
180 if (!isset($grouped[$ref])) {
186 foreach ($grouped as $refs => $objects) {
187 if (count($objects) > 1) {
188 $newArray[$refs] = $objects;
192 foreach ($grouped as $refs => $objects) {
193 if (count($objects) == 1) {
194 $combinedArray[] = $objects[0];
197 $resultArray = array_merge($combinedArray, array_values($newArray));
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.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
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.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
evaluationPrepareHead($object)
Prepare array of tabs for Evaluation.
getRankOrderResults($obj)
getGroupedEval($objects)
Grouped rows with same ref in array.