ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSurveyDataSet.php
Go to the documentation of this file.
1 <?php
2 
32 {
33  public function getSupportedVersions(): array
34  {
35  return array("5.1.0");
36  }
37 
38  protected function getXmlNamespace(string $a_entity, string $a_schema_version): string
39  {
40  return "https://www.ilias.de/xml/Modules/Survey/" . $a_entity;
41  }
42 
46  protected function getTypes(string $a_entity, string $a_version): array
47  {
48  if ($a_entity === "svy_quest_skill") {
49  switch ($a_version) {
50  case "5.1.0":
51  return array(
52  "QId" => "integer",
53  "SurveyId" => "integer",
54  "BaseSkillId" => "integer",
55  "TrefId" => "integer"
56  );
57  }
58  }
59  if ($a_entity === "svy_skill_threshold") {
60  switch ($a_version) {
61  case "5.1.0":
62  return array(
63  "SurveyId" => "integer",
64  "BaseSkillId" => "integer",
65  "TrefId" => "integer",
66  "LevelId" => "integer",
67  "Treshold" => "integer"
68  );
69  }
70  }
71  return array();
72  }
73 
74  public function readData(string $a_entity, string $a_version, array $a_ids): void
75  {
76  $ilDB = $this->db;
77 
78  $this->data = array();
79 
80  if ($a_entity === "svy_quest_skill") {
81  switch ($a_version) {
82  case "5.1.0":
83  $this->getDirectDataFromQuery("SELECT * " .
84  " FROM svy_quest_skill WHERE " .
85  $ilDB->in("survey_id", $a_ids, false, "integer"));
86  break;
87 
88  }
89  }
90 
91  if ($a_entity === "svy_skill_threshold") {
92  switch ($a_version) {
93  case "5.1.0":
94  $this->getDirectDataFromQuery("SELECT * " .
95  " FROM svy_skill_threshold WHERE " .
96  $ilDB->in("survey_id", $a_ids, false, "integer"));
97  break;
98 
99  }
100  }
101  }
102 
106  protected function getDependencies(
107  string $a_entity,
108  string $a_version,
109  ?array $a_rec = null,
110  ?array $a_ids = null
111  ): array {
112  $ilDB = $this->db;
113 
114  /*switch ($a_entity)
115  {
116  case "svy_quest_skill":
117  $deps["svy_skill_treshold"]["ids"][] = $a_ids;
118  return $deps;
119  }*/
120 
121  return [];
122  }
123 
124  public function importRecord(
125  string $a_entity,
126  array $a_types,
127  array $a_rec,
128  ilImportMapping $a_mapping,
129  string $a_schema_version
130  ): void {
131  $a_rec = $this->stripTags($a_rec);
132  switch ($a_entity) {
133  case "svy_quest_skill":
134  $skill_data = ilBasicSkill::getCommonSkillIdForImportId($this->getCurrentInstallationId(), $a_rec["BaseSkillId"], $a_rec["TrefId"]);
135  $q_id = $a_mapping->getMapping("Modules/Survey", "svy_q", $a_rec["QId"]);
136  if ($q_id > 0 && count($skill_data) > 0) {
137  $skill_survey = new ilSurveySkill($this->getImport()->getSurvey());
138  $skill_survey->addQuestionSkillAssignment($q_id, $skill_data[0]["skill_id"], $skill_data[0]["tref_id"]);
139  }
140  break;
141 
142  case "svy_skill_threshold":
143  $l = ilBasicSkill::getLevelIdForImportIdMatchSkill($this->getCurrentInstallationId(), $a_rec["LevelId"], $a_rec["BaseSkillId"], $a_rec["TrefId"]);
144  if (count($l) > 0) {
145  $skill_thres = new ilSurveySkillThresholds($this->getImport()->getSurvey());
146  $skill_thres->writeThreshold($l[0]["skill_id"], $l[0]["tref_id"], $l[0]["level_id"], $a_rec["Threshold"]);
147  }
148  break;
149  }
150  }
151 }
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readData(string $a_entity, string $a_version, array $a_ids)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
Determine the dependent sets of data.
static getCommonSkillIdForImportId(int $a_source_inst_id, int $a_skill_import_id, int $a_tref_import_id=0)
getXmlNamespace(string $a_entity, string $a_schema_version)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMapping(string $a_comp, string $a_entity, string $a_old_id)
ilDBInterface $db
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCurrentInstallationId()
getTypes(string $a_entity, string $a_version)
Get field types for entity.
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
static getLevelIdForImportIdMatchSkill(int $a_source_inst_id, int $a_level_import_id, int $a_skill_import_id, int $a_tref_import_id=0)
stripTags(array $rec, array $omit_keys=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...