30 protected int $id = 0;
61 $this->db = $DIC->database();
67 $this->skill_service = $DIC->skills();
70 public function setTitle(
string $a_title): void
72 $this->title = $a_title;
82 $this->description = $a_description;
90 public function setType(
string $a_type): void
92 $this->type = $a_type;
100 public function setId(
int $a_id): void
112 $this->self_eval = $a_val;
122 $this->order_nr = $a_val;
132 $this->import_id = $a_val;
142 $this->creation_date = $a_val;
157 $lng = $DIC->language();
160 self::STATUS_DRAFT =>
$lng->txt(
"skmg_status_draft"),
161 self::STATUS_PUBLISH =>
$lng->txt(
"skmg_status_publish"),
162 self::STATUS_OUTDATED =>
$lng->txt(
"skmg_status_outdated")
170 $lng = $DIC->language();
173 case self::STATUS_PUBLISH:
return $lng->txt(
"skmg_status_publish_info");
174 case self::STATUS_DRAFT:
return $lng->txt(
"skmg_status_draft_info");
175 case self::STATUS_OUTDATED:
return $lng->txt(
"skmg_status_outdated_info");
187 if (empty($this->data_record)) {
188 $query =
"SELECT * FROM skl_tree_node WHERE obj_id = " .
189 $ilDB->quote($this->
id,
"integer");
191 $this->data_record =
$ilDB->fetchAssoc($obj_set);
193 $this->data_record[
"order_nr"] = (
int) $this->data_record[
"order_nr"];
194 $this->data_record[
"self_eval"] = (bool) $this->data_record[
"self_eval"];
195 $this->data_record[
"status"] = (
int) $this->data_record[
"status"];
196 $this->
setType($this->data_record[
"type"]);
197 $this->
setTitle($this->data_record[
"title"]);
199 $this->
setOrderNr($this->data_record[
"order_nr"]);
201 $this->
setStatus($this->data_record[
"status"]);
202 $this->
setImportId($this->data_record[
"import_id"] ??
"");
211 $this->data_record = $a_record;
214 protected static function _lookup(
int $a_obj_id,
string $a_field): ?string
218 $ilDB = $DIC->database();
220 $query =
"SELECT $a_field FROM skl_tree_node WHERE obj_id = " .
221 $ilDB->quote($a_obj_id,
"integer");
223 $obj_rec =
$ilDB->fetchAssoc($obj_set);
225 return isset($obj_rec[$a_field]) ? (string) $obj_rec[$a_field] : null;
228 public static function _lookupTitle(
int $a_obj_id,
int $a_tref_id = 0): string
231 return self::_lookup($a_tref_id,
"title");
233 return (
string) self::_lookup($a_obj_id,
"title");
240 $ilDB = $DIC->database();
242 return (
string) self::_lookup($a_obj_id,
"description");
249 $ilDB = $DIC->database();
251 return (
bool) self::_lookup($a_obj_id,
"self_eval");
258 $ilDB = $DIC->database();
260 return (
int) self::_lookup($a_obj_id,
"status");
267 $ilDB = $DIC->database();
269 $query =
"SELECT * FROM skl_tree_node WHERE obj_id = " .
270 $ilDB->quote($a_obj_id,
"integer");
272 $obj_rec =
$ilDB->fetchAssoc($obj_set);
274 return $obj_rec[
"type"] ??
"";
279 $this->status = $a_val;
287 public static function _writeTitle(
int $a_obj_id,
string $a_title): void
291 $ilDB = $DIC->database();
293 $query =
"UPDATE skl_tree_node SET " .
294 " title = " .
$ilDB->quote($a_title,
"text") .
295 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
304 $ilDB = $DIC->database();
306 $query =
"UPDATE skl_tree_node SET " .
307 " description = " .
$ilDB->quote($a_description,
"clob") .
308 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
317 $ilDB = $DIC->database();
319 $query =
"UPDATE skl_tree_node SET " .
320 " order_nr = " .
$ilDB->quote($a_nr,
"integer") .
321 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
333 $id =
$ilDB->nextId(
"skl_tree_node");
334 $query =
"INSERT INTO skl_tree_node (obj_id, title, description, type, create_date, self_eval, order_nr, status, creation_date, import_id) " .
336 $ilDB->quote($id,
"integer") .
"," .
340 $ilDB->now() .
", " .
344 $ilDB->now() .
", " .
358 $query =
"UPDATE skl_tree_node SET " .
365 " WHERE obj_id = " .
$ilDB->quote($this->
getId(),
"integer");
370 public function delete():
void 374 $query =
"DELETE FROM skl_tree_node WHERE obj_id= " .
385 foreach ($a_items as $item) {
390 if (count($types) > 1) {
403 $ilDB = $DIC->database();
406 "SELECT obj_id, title FROM skl_tree_node WHERE " .
407 " self_eval = " .
$ilDB->quote(
true,
"integer") .
" ORDER BY TITLE " 410 while ($rec =
$ilDB->fetchAssoc($set)) {
411 $rec[
"obj_id"] = (
int) $rec[
"obj_id"];
412 $nodes[$rec[
"obj_id"]] = $rec[
"title"];
424 $ilDB = $DIC->database();
427 "SELECT * FROM skl_tree_node " .
428 " WHERE self_eval = " .
$ilDB->quote(1,
"integer")
432 while ($rec =
$ilDB->fetchAssoc($set)) {
433 $rec[
'obj_id'] = (
int) $rec[
'obj_id'];
434 $rec[
'order_nr'] = (
int) $rec[
'order_nr'];
435 $rec[
'status'] = (
int) $rec[
'status'];
436 $rec[
'self_eval'] = (bool) $rec[
'self_eval'];
437 $sel_skills[] = $rec;
443 public static function getIconPath(
int $a_obj_id,
string $a_type,
string $a_size =
"",
int $a_status = 0): string
445 if ($a_status == self::STATUS_DRAFT && $a_type ==
"sctp") {
448 if ($a_status == self::STATUS_DRAFT && $a_type ==
"sktp") {
452 $off = ($a_status == self::STATUS_DRAFT)
456 $a_name =
"icon_" . $a_type . $a_size . $off .
".svg";
457 if ($a_type ==
"sktr") {
460 if ($type ==
"sctp") {
461 $a_name =
"icon_sctr" . $a_size . $off .
".svg";
464 $vers =
"vers=" . str_replace(array(
".",
" "),
"-",
ILIAS_VERSION);
474 foreach ($a_node_ids as $id) {
475 if (in_array(self::_lookupType($id), array(
"skll",
"scat",
"sktr"))) {
482 $cskill_ids[] = array(
"skill_id" => $skill_id,
"tref_id" => $tref_id);
486 $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 getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
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)
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 getIconPath(int $a_obj_id, string $a_type, string $a_size="", int $a_status=0)
static _writeDescription(int $a_obj_id, string $a_description)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)