ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTestSkillLevelThresholdImportFails.php
Go to the documentation of this file.
1 <?php
2 
26 {
30  protected $settings;
31 
35  protected $parentObjId;
36 
41  public function __construct($parentObjId)
42  {
43  $this->parentObjId = $parentObjId;
44  }
45 
49  protected function getSettings(): ilSetting
50  {
51  if ($this->settings === null) {
52  require_once 'Modules/TestQuestionPool/classes/questions/class.ilAssQuestionAssignedSkillList.php';
53 
54  $this->settings = new ilSetting('assimportfails');
55  }
56 
57  return $this->settings;
58  }
59 
63  protected function getParentObjId(): int
64  {
65  return $this->parentObjId;
66  }
67 
71  protected function buildSettingsKey(): string
72  {
73  return 'failed_imp_slt_parentobj_' . $this->getParentObjId();
74  }
75 
80  {
81  $value = $this->getSettings()->get($this->buildSettingsKey(), null);
82 
83  if ($value !== null) {
84  return unserialize($value);
85  }
86 
87  return null;
88  }
89 
94  {
95  $this->getSettings()->set($this->buildSettingsKey(), serialize($skillList));
96  }
97 
100  public function deleteRegisteredImportFails()
101  {
102  $this->getSettings()->delete($this->buildSettingsKey());
103  }
104 
108  public function failedImportsRegistered(): bool
109  {
110  return $this->getFailedImports() !== null;
111  }
112 
117  public function getFailedImportsMessage(ilLanguage $lng): string
118  {
119  $msg = $lng->txt('tst_failed_imp_skl_thresholds');
120 
121  $msg .= '<ul>';
122  foreach ($this->getFailedImports() as $skillKey) {
123  list($skillBaseId, $skillTrefId) = explode(':', $skillKey);
124  $skillTitle = ilBasicSkill::_lookupTitle($skillBaseId, $skillTrefId);
125 
126  $msg .= '<li>' . $skillTitle . '</li>';
127  }
128  $msg .= '</ul>';
129 
130  return $msg;
131  }
132 }
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
$lng
registerFailedImports(ilAssQuestionAssignedSkillList $skillList)
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
__construct($parentObjId)
ilTestSkillLevelThresholdImportFails constructor.