ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MapDBRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Help\Map;
22 
24 {
25  protected \ilDBInterface $db;
26 
27  public function __construct(
28  \ilDBInterface $db
29  ) {
30  $this->db = $db;
31  }
32 
33  public function saveScreenIdsForChapter(
34  int $a_chap,
35  array $a_ids
36  ): void {
37  $this->removeScreenIdsOfChapter($a_chap);
38  foreach ($a_ids as $id) {
39  $full_id = $id;
40  $id = trim($id);
41  $id = explode("/", $id);
42  if ($id[0] != "") {
43  if (($id[1] ?? "") == "") {
44  $id[1] = "-";
45  }
46  $id2 = explode("#", ($id[2] ?? ""));
47  if ($id2[0] == "") {
48  $id2[0] = "-";
49  }
50  if (($id2[1] ?? "") == "") {
51  $id2[1] = "-";
52  }
53  $this->db->replace(
54  "help_map",
55  array("chap" => array("integer", $a_chap),
56  "component" => array("text", $id[0]),
57  "screen_id" => array("text", $id[1]),
58  "screen_sub_id" => array("text", $id2[0]),
59  "perm" => array("text", $id2[1]),
60  "full_id" => array("text", trim($full_id)),
61  "module_id" => array("integer", 0)
62  ),
63  array()
64  );
65  }
66  }
67  }
68 
69  public function saveMappingEntry(
70  int $a_chap,
71  string $a_comp,
72  string $a_screen_id,
73  string $a_screen_sub_id,
74  string $a_perm,
75  int $a_module_id = 0,
76  string $full_id = ""
77  ): void {
78  $this->db->replace(
79  "help_map",
80  array("chap" => array("integer", $a_chap),
81  "component" => array("text", $a_comp),
82  "screen_id" => array("text", $a_screen_id),
83  "screen_sub_id" => array("text", $a_screen_sub_id),
84  "perm" => array("text", $a_perm),
85  "module_id" => array("integer", $a_module_id),
86  "full_id" => array("text", $full_id)
87  ),
88  array()
89  );
90  }
91 
92  public function removeScreenIdsOfChapter(
93  int $a_chap,
94  int $a_module_id = 0
95  ): void {
96  $this->db->manipulate(
97  "DELETE FROM help_map WHERE " .
98  " chap = " . $this->db->quote($a_chap, "integer") .
99  " AND module_id = " . $this->db->quote($a_module_id, "integer")
100  );
101  }
102 
103  public function getScreenIdsOfChapter(
104  int $a_chap,
105  int $a_module_id = 0
106  ): array {
107  $set = $this->db->query(
108  "SELECT * FROM help_map " .
109  " WHERE chap = " . $this->db->quote($a_chap, "integer") .
110  " AND module_id = " . $this->db->quote($a_module_id, "integer") .
111  " ORDER BY component, screen_id, screen_sub_id"
112  );
113  $screen_ids = array();
114  while ($rec = $this->db->fetchAssoc($set)) {
115  if ($rec["screen_id"] == "-") {
116  $rec["screen_id"] = "";
117  }
118  if ($rec["screen_sub_id"] == "-") {
119  $rec["screen_sub_id"] = "";
120  }
121  $id = $rec["component"] . "/" . $rec["screen_id"] . "/" . $rec["screen_sub_id"];
122  if ($rec["perm"] != "" && $rec["perm"] != "-") {
123  $id .= "#" . $rec["perm"];
124  }
125  $screen_ids[] = $rec["full_id"];
126  }
127  return $screen_ids;
128  }
129 
130  public function getChaptersForScreenId(
131  string $a_screen_id,
132  array $module_ids
133  ): \Generator {
134  $sc_id = explode("/", $a_screen_id);
135  $chaps = array();
136  foreach ($module_ids as $module_id) {
137  if ($sc_id[0] != "") {
138  if ($sc_id[1] == "") {
139  $sc_id[1] = "-";
140  }
141  if ($sc_id[2] == "") {
142  $sc_id[2] = "-";
143  }
144  $set = $this->db->query(
145  $q =
146  "SELECT chap, perm FROM help_map JOIN lm_tree" .
147  " ON (help_map.chap = lm_tree.child) " .
148  " WHERE full_id = " . $this->db->quote($a_screen_id, "text") .
149  " AND module_id = " . $this->db->quote($module_id, "integer") .
150  " ORDER BY lm_tree.lft"
151  );
152  while ($rec = $this->db->fetchAssoc($set)) {
153  yield $rec;
154  }
155  }
156  }
157  }
158 
159  public function deleteEntriesOfModule(
160  int $a_id
161  ): void {
162  $this->db->manipulate("DELETE FROM help_map WHERE " .
163  " module_id = " . $this->db->quote($a_id, "integer"));
164  }
165 
166 }
saveMappingEntry(int $a_chap, string $a_comp, string $a_screen_id, string $a_screen_sub_id, string $a_perm, int $a_module_id=0, string $full_id="")
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$q
Definition: shib_logout.php:21