ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SurveySkillDBRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
28  protected \ilDBInterface $db;
29 
30  public function __construct(
31  ?\ilDBInterface $db = null
32  ) {
33  global $DIC;
34 
35  $this->db = ($db) ?: $DIC->database();
36  }
37 
38  public function removeForSkill(int $skill_node_id, bool $is_reference): void
39  {
40  if (!$is_reference) {
41  $this->db->manipulate("DELETE FROM svy_quest_skill " .
42  " WHERE base_skill_id = " . $this->db->quote($skill_node_id, "integer"));
43  $this->db->manipulate("DELETE FROM svy_skill_threshold " .
44  " WHERE base_skill_id = " . $this->db->quote($skill_node_id, "integer"));
45  } else {
46  $this->db->manipulate("DELETE FROM svy_quest_skill " .
47  " WHERE tref_id = " . $this->db->quote($skill_node_id, "integer"));
48  $this->db->manipulate("DELETE FROM svy_skill_threshold " .
49  " WHERE tref_id = " . $this->db->quote($skill_node_id, "integer"));
50  }
51  }
52 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
removeForSkill(int $skill_node_id, bool $is_reference)