diff --git a/main/inc/lib/skill.lib.php b/main/inc/lib/skill.lib.php
index 78585c68f1..b63e15e19d 100755
--- a/main/inc/lib/skill.lib.php
+++ b/main/inc/lib/skill.lib.php
@@ -32,7 +32,7 @@ class SkillProfile extends Model
$sql = "SELECT * FROM $this->table p
INNER JOIN $this->table_rel_profile sp
ON(p.id = sp.profile_id) ";
- $result = Database::query($sql);
+ $result = Database::query($sql);
$profiles = Database::store_result($result, 'ASSOC');
return $profiles;
@@ -47,7 +47,11 @@ class SkillProfile extends Model
*/
public function updateProfileInfo($profileId, $name, $description)
{
- $profileId = intval($profileId);
+ $profileId = (int) $profileId;
+
+ if (empty($profileId)) {
+ return false;
+ }
$name = Database::escape_string($name);
$description = Database::escape_string($description);
@@ -720,16 +724,21 @@ class Skill extends Model
/**
* @param $skills
- * @param string $imageSize
+ * @param string $imageSize mini|small|big
* @param string $style
+ * @param bool $showBadge
+ * @param bool $showTitle
+ *
* @return string
*/
- public function processSkillListSimple($skills, $imageSize = '', $style = '')
+ public function processSkillListSimple($skills, $imageSize = '', $style = '', $showBadge = true, $showTitle = true)
{
if (empty($skills)) {
return '';
}
+ $isHierarchicalTable = api_get_configuration_value('table_of_hierarchical_skill_presentation');
+
if (empty($imageSize)) {
$imageSize = 'img_small';
} else {
@@ -737,30 +746,36 @@ class Skill extends Model
}
$html = '';
- $html .= '
';
foreach ($skills as $skill) {
if (isset($skill['data'])) {
$skill = $skill['data'];
}
- $item = $skill[$imageSize];
- $name = ''.$skill['name'].'
';
+ $item = '';
+ if ($showBadge) {
+ $item = $skill[$imageSize];
+ }
+
+ $name = $skill['name'];
if (!empty($skill['short_code'])) {
$name = $skill['short_code'];
}
- $item .= $name;
+
+ if (!$isHierarchicalTable) {
+ //$item .= '
';
+ }
+
+ if ($showTitle) {
+ $item .= $name;
+ }
+
if (isset($skill['url'])) {
- $html .= '- ';
$html .= Display::url($item, $skill['url'], ['target' => '_blank', 'style' => $style]);
- $html .= '
';
} else {
- $html .= '- ';
$html .= Display::url($item, '#', ['target' => '_blank', 'style' => $style]);
- $html .= '
';
}
}
- $html .= '';
-
+
return $html;
}
@@ -1198,13 +1213,19 @@ class Skill extends Model
/**
* @param Vertex $vertex
+ * @param array $skills
+ * @param int $level
+ *
* @return string
*/
- public function processVertex(Vertex $vertex, $skills = [])
+ public function processVertex(Vertex $vertex, $skills = [], $level = 0)
{
+ $isHierarchicalTable = api_get_configuration_value('table_of_hierarchical_skill_presentation');
$subTable = '';
if ($vertex->getVerticesEdgeTo()->count() > 0) {
- $subTable .= '';
+ if ($isHierarchicalTable) {
+ $subTable .= '';
+ }
foreach ($vertex->getVerticesEdgeTo() as $subVertex) {
$data = $subVertex->getAttribute('graphviz.data');
$passed = in_array($data['id'], array_keys($skills));
@@ -1213,21 +1234,40 @@ class Skill extends Model
// @todo use css class
$transparency = 'opacity: 0.4; filter: alpha(opacity=40);';
}
- $label = $this->processSkillListSimple([$data], 'mini', $transparency);
- /*$subTable .= '';
- $subTable .= '
';
- $subTable .= $label;
- $subTable .= '
';*/
+ if ($isHierarchicalTable) {
+ $label = $this->processSkillListSimple([$data], 'mini', $transparency);
+ $subTable .= '
- '.$label;
+ $subTable .= $this->processVertex($subVertex, $skills, $level + 1);
+ $subTable .= '
';
+ } else {
+ $imageSize = 'mini';
+ if ($level == 2) {
+ $imageSize = 'small';
+ }
+ $showTitle = true;
+ if ($level > 2) {
+ $showTitle = false;
+ }
- $subTable .= '
- '.$label;
+ $label = $this->processSkillListSimple([$data], $imageSize, $transparency, true, $showTitle);
+ $subTable .= '
';
+ $subTable .= '
';
- $subTable .= $this->processVertex($subVertex, $skills);
+ $subTable .= '
';
+ $subTable .= $label;
+ $subTable .= '
';
- $subTable .= '';
+
+ $subTable .= '
';
+ $subTable .= $this->processVertex($subVertex, $skills, $level + 1);
+ $subTable .= '
';
+ }
}
- $subTable .= '';
+ if ($isHierarchicalTable) {
+ $subTable .= '';
+ }
}
return $subTable;
@@ -1284,12 +1324,19 @@ class Skill extends Model
}
$tableRows[] = $tableRow;
}
+
+ $isHierarchicalTable = api_get_configuration_value('table_of_hierarchical_skill_presentation');
$allowLevels = api_get_configuration_value('skill_levels_names');
- $tableResult = '';
+ if ($isHierarchicalTable) {
+ $tableResult = '
';
+ } else {
+ $tableResult = '
';
+ }
+
if ($addTitle) {
$tableResult .= '
-
+
'.get_lang('AchievedSkills').' |
@@ -1331,32 +1378,64 @@ class Skill extends Model
}
}
- $table = '';
- // Getting "root" vertex
- $root = $graph->getVertex(1);
- $table .= '';
- /** @var Vertex $vertex */
- foreach ($root->getVerticesEdgeTo() as $vertex) {
- $data = $vertex->getAttribute('graphviz.data');
-
- $passed = in_array($data['id'], array_keys($skills));
- $transparency = '';
- if ($passed === false) {
- // @todo use a css class
- $transparency = 'opacity: 0.4; filter: alpha(opacity=40);';
+ if ($isHierarchicalTable) {
+ $table = '';
+ // Getting "root" vertex
+ $root = $graph->getVertex(1);
+ $table .= '';
+ /** @var Vertex $vertex */
+ foreach ($root->getVerticesEdgeTo() as $vertex) {
+ $data = $vertex->getAttribute('graphviz.data');
+
+ $passed = in_array($data['id'], array_keys($skills));
+ $transparency = '';
+ if ($passed === false) {
+ // @todo use a css class
+ $transparency = 'opacity: 0.4; filter: alpha(opacity=40);';
+ }
+
+ $label = $this->processSkillListSimple([$data], 'mini', $transparency);
+ $table .= '';
+
+ $table .= ' - '.$label;
+ $table .= $this->processVertex($vertex, $skills);
+ $table .= '
';
+ $table .= ' | ';
}
+ $table .= '
';
+ } else {
+ // Getting "root" vertex
+ $root = $graph->getVertex(1);
+ $table = '';
+ /** @var Vertex $vertex */
+ foreach ($root->getVerticesEdgeTo() as $vertex) {
+ $data = $vertex->getAttribute('graphviz.data');
+
+ $passed = in_array($data['id'], array_keys($skills));
+ $transparency = '';
+ if ($passed === false) {
+ // @todo use a css class
+ $transparency = 'opacity: 0.4; filter: alpha(opacity=40);';
+ }
- $label = $this->processSkillListSimple([$data], 'mini', $transparency);
+ $label = $this->processSkillListSimple([$data], 'mini', $transparency, false);
- $table .= '';
+ $skillTable = $this->processVertex($vertex, $skills, 2);
+ $table .= "$label";
- //$table .= '';
- $table .= ' - '.$label;
- $table .= $this->processVertex($vertex, $skills);
- $table .= '
';
- $table .= ' | ';
+ if (!empty($skillTable)) {
+ $table .= '';
+ $table .= '';
+ $table .= '';
+ $table .= ' ';
+ $table .= $skillTable;
+ $table .= ' ';
+ $table .= ' | ';
+ $table .= '
';
+ }
+ }
}
- $table .= '
';
+
$tableResult .= $table;
}
} else {
@@ -1372,7 +1451,6 @@ class Skill extends Model
}
$tableResult .= '';
-
return [
'skills' => $tableRows,
'table' => $tableResult,