19 declare(strict_types=1);
31 protected int $id = 0;
62 $this->db = $DIC->database();
68 $this->skill_service = $DIC->skills();
71 public function setTitle(
string $a_title): void
73 $this->title = $a_title;
83 $this->description = $a_description;
91 public function setType(
string $a_type): void
93 $this->type = $a_type;
101 public function setId(
int $a_id): void
113 $this->self_eval = $a_val;
123 $this->order_nr = $a_val;
133 $this->import_id = $a_val;
143 $this->creation_date = $a_val;
158 $lng = $DIC->language();
161 self::STATUS_DRAFT =>
$lng->txt(
"skmg_status_draft"),
162 self::STATUS_PUBLISH =>
$lng->txt(
"skmg_status_publish"),
163 self::STATUS_OUTDATED =>
$lng->txt(
"skmg_status_outdated")
171 $lng = $DIC->language();
174 case self::STATUS_PUBLISH:
return $lng->txt(
"skmg_status_publish_info");
175 case self::STATUS_DRAFT:
return $lng->txt(
"skmg_status_draft_info");
176 case self::STATUS_OUTDATED:
return $lng->txt(
"skmg_status_outdated_info");
188 if (empty($this->data_record)) {
189 $query =
"SELECT * FROM skl_tree_node WHERE obj_id = " .
190 $ilDB->quote($this->
id,
"integer");
191 $obj_set =
$ilDB->query($query);
192 $this->data_record =
$ilDB->fetchAssoc($obj_set);
194 $this->data_record[
"order_nr"] = (
int) $this->data_record[
"order_nr"];
195 $this->data_record[
"self_eval"] = (bool) $this->data_record[
"self_eval"];
196 $this->data_record[
"status"] = (
int) $this->data_record[
"status"];
197 $this->
setType($this->data_record[
"type"]);
198 $this->
setTitle($this->data_record[
"title"]);
200 $this->
setOrderNr($this->data_record[
"order_nr"]);
202 $this->
setStatus($this->data_record[
"status"]);
203 $this->
setImportId($this->data_record[
"import_id"] ??
"");
212 $this->data_record = $a_record;
215 protected static function _lookup(
int $a_obj_id,
string $a_field): ?string
219 $ilDB = $DIC->database();
221 $query =
"SELECT $a_field FROM skl_tree_node WHERE obj_id = " .
222 $ilDB->quote($a_obj_id,
"integer");
223 $obj_set =
$ilDB->query($query);
224 $obj_rec =
$ilDB->fetchAssoc($obj_set);
226 return isset($obj_rec[$a_field]) ? (string) $obj_rec[$a_field] :
null;
229 public static function _lookupTitle(
int $a_obj_id,
int $a_tref_id = 0): string
232 return self::_lookup($a_tref_id,
"title");
234 return (
string) self::_lookup($a_obj_id,
"title");
241 $ilDB = $DIC->database();
243 return (
string) self::_lookup($a_obj_id,
"description");
250 $ilDB = $DIC->database();
252 return (
bool) self::_lookup($a_obj_id,
"self_eval");
259 $ilDB = $DIC->database();
261 return (
int) self::_lookup($a_obj_id,
"status");
268 $ilDB = $DIC->database();
270 $query =
"SELECT * FROM skl_tree_node WHERE obj_id = " .
271 $ilDB->quote($a_obj_id,
"integer");
272 $obj_set =
$ilDB->query($query);
273 $obj_rec =
$ilDB->fetchAssoc($obj_set);
275 return $obj_rec[
"type"] ??
"";
280 $this->status = $a_val;
288 public static function _writeTitle(
int $a_obj_id,
string $a_title): void
292 $ilDB = $DIC->database();
294 $query =
"UPDATE skl_tree_node SET " .
295 " title = " .
$ilDB->quote($a_title,
"text") .
296 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
298 $ilDB->manipulate($query);
305 $ilDB = $DIC->database();
307 $query =
"UPDATE skl_tree_node SET " .
308 " description = " .
$ilDB->quote($a_description,
"clob") .
309 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
311 $ilDB->manipulate($query);
318 $ilDB = $DIC->database();
320 $query =
"UPDATE skl_tree_node SET " .
321 " order_nr = " .
$ilDB->quote($a_nr,
"integer") .
322 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
323 $ilDB->manipulate($query);
334 $id =
$ilDB->nextId(
"skl_tree_node");
335 $query =
"INSERT INTO skl_tree_node (obj_id, title, description, type, create_date, self_eval, order_nr, status, creation_date, import_id) " .
337 $ilDB->quote($id,
"integer") .
"," .
341 $ilDB->now() .
", " .
345 $ilDB->now() .
", " .
348 $ilDB->manipulate($query);
359 $query =
"UPDATE skl_tree_node SET " .
366 " WHERE obj_id = " .
$ilDB->quote($this->
getId(),
"integer");
368 $ilDB->manipulate($query);
371 public function delete():
void 375 $query =
"DELETE FROM skl_tree_node WHERE obj_id= " .
377 $ilDB->manipulate($query);
386 foreach ($a_items as $item) {
391 if (count($types) > 1) {
404 $ilDB = $DIC->database();
407 "SELECT obj_id, title FROM skl_tree_node WHERE " .
408 " self_eval = " .
$ilDB->quote(
true,
"integer") .
" ORDER BY TITLE " 411 while ($rec =
$ilDB->fetchAssoc($set)) {
412 $rec[
"obj_id"] = (
int) $rec[
"obj_id"];
413 $nodes[$rec[
"obj_id"]] = $rec[
"title"];
425 $ilDB = $DIC->database();
428 "SELECT * FROM skl_tree_node " .
429 " WHERE self_eval = " .
$ilDB->quote(1,
"integer")
433 while ($rec =
$ilDB->fetchAssoc($set)) {
434 $rec[
'obj_id'] = (
int) $rec[
'obj_id'];
435 $rec[
'order_nr'] = (
int) $rec[
'order_nr'];
436 $rec[
'status'] = (
int) $rec[
'status'];
437 $rec[
'self_eval'] = (bool) $rec[
'self_eval'];
438 $sel_skills[] = $rec;
444 public static function getIconPath(
int $a_obj_id,
string $a_type,
string $a_size =
"",
int $a_status = 0): string
446 if ($a_status == self::STATUS_DRAFT && $a_type ==
"sctp") {
449 if ($a_status == self::STATUS_DRAFT && $a_type ==
"sktp") {
453 $off = ($a_status == self::STATUS_DRAFT)
457 $a_name =
"standard/icon_" . $a_type . $a_size . $off .
".svg";
458 if ($a_type ==
"sktr") {
461 if ($type ==
"sctp") {
462 $a_name =
"standard/icon_sctr" . $a_size . $off .
".svg";
465 $vers =
"vers=" . str_replace(array(
".",
" "),
"-",
ILIAS_VERSION);
475 foreach ($a_node_ids as $id) {
476 if (in_array(self::_lookupType($id), array(
"skll",
"scat",
"sktr"))) {
483 $cskill_ids[] = array(
"skill_id" => $skill_id,
"tref_id" => $tref_id);
487 $cskill_ids[] = array(
"skill_id" => $id,
"tref_id" => $tref_id);
static getAllCSkillIdsForNodeIds(array $a_node_ids)
Get all possible common skill IDs for node IDs.
static _lookupTemplateId(int $a_obj_id)
static _writeOrderNr(int $a_obj_id, int $a_nr)
static _lookupStatus(int $a_obj_id)
static getAllStatus()
Get all status as array, key is value, value is lang text.
static getAllSelfEvaluationNodes()
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
static getSelectableSkills()
setImportId(string $a_val)
static _lookupType(int $a_obj_id)
static _lookupDescription(int $a_obj_id)
setSelfEvaluation(bool $a_val)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setTitle(string $a_title)
static _lookupTrefIdsForTemplateId(int $a_tid)
setDescription(string $a_description)
setDataRecord(array $a_record)
this method should only be called by class ilSCORM2004NodeFactory
setCreationDate(string $a_val)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getIconPath(int $a_obj_id, string $a_type, string $a_size="", int $a_status=0)
static _writeDescription(int $a_obj_id, string $a_description)
A node in the skill tree.
ILIAS Skill Service SkillService $skill_service
static uniqueTypesCheck(array $a_items)
Check for unique types.
static _lookup(int $a_obj_id, string $a_field)
static _lookupSelfEvaluation(int $a_obj_id)
static _writeTitle(int $a_obj_id, string $a_title)
static getStatusInfo(int $a_status)