19 declare(strict_types=1);
25 protected \ilDBInterface
$db;
38 foreach ($a_ids as
$id) {
41 $id = explode(
"/", $id);
43 if (($id[1] ??
"") ==
"") {
46 $id2 = explode(
"#", ($id[2] ??
""));
50 if (($id2[1] ??
"") ==
"") {
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)
73 string $a_screen_sub_id,
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)
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")
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" 113 $screen_ids = array();
114 while ($rec = $this->db->fetchAssoc($set)) {
115 if ($rec[
"screen_id"] ==
"-") {
116 $rec[
"screen_id"] =
"";
118 if ($rec[
"screen_sub_id"] ==
"-") {
119 $rec[
"screen_sub_id"] =
"";
121 $id = $rec[
"component"] .
"/" . $rec[
"screen_id"] .
"/" . $rec[
"screen_sub_id"];
122 if ($rec[
"perm"] !=
"" && $rec[
"perm"] !=
"-") {
123 $id .=
"#" . $rec[
"perm"];
125 $screen_ids[] = $rec[
"full_id"];
134 $sc_id = explode(
"/", $a_screen_id);
136 foreach ($module_ids as $module_id) {
137 if ($sc_id[0] !=
"") {
138 if ($sc_id[1] ==
"") {
141 if ($sc_id[2] ==
"") {
144 $set = $this->db->query(
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" 152 while ($rec = $this->db->fetchAssoc($set)) {
162 $this->db->manipulate(
"DELETE FROM help_map WHERE " .
163 " module_id = " . $this->db->quote($a_id,
"integer"));
getScreenIdsOfChapter(int $a_chap, int $a_module_id=0)
saveScreenIdsForChapter(int $a_chap, array $a_ids)
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
getChaptersForScreenId(string $a_screen_id, array $module_ids)
removeScreenIdsOfChapter(int $a_chap, int $a_module_id=0)
deleteEntriesOfModule(int $a_id)
__construct(\ilDBInterface $db)