39 $ilDB = $DIC->database();
42 $this->link_type =
"extern";
43 $this->link_ref_id =
null;
48 $this->lm_id = $a_obj_id;
58 $this->entry_id = $a_id;
68 $this->link_type = $a_link_type;
76 public function setTitle(
string $a_title): void
78 $this->title = $a_title;
88 $this->target = $a_target;
98 $this->link_ref_id = $a_link_ref_id;
108 $this->active = $a_val;
122 $q =
"INSERT INTO lm_menu (id, lm_id,link_type,title,target,link_ref_id, active) " .
125 $ilDB->quote(
$id,
"integer") .
"," .
134 $this->entry_id =
$id;
138 bool $a_only_active =
false 146 if ($a_only_active ===
true) {
147 $and =
" AND active = " .
$ilDB->quote(
"y",
"text");
150 $q =
"SELECT * FROM lm_menu " .
151 "WHERE lm_id = " .
$ilDB->quote($this->lm_id,
"integer") .
156 while ($row =
$ilDB->fetchObject(
$r)) {
157 $entries[] = array(
'id' => $row->id,
158 'title' => $row->title,
159 'link' => $row->target,
160 'type' => $row->link_type,
161 'ref_id' => $row->link_ref_id,
162 'active' => $row->active
169 public function delete(
int $a_id):
void 173 $q =
"DELETE FROM lm_menu WHERE id = " .
174 $ilDB->quote($a_id,
"integer");
182 $q =
"UPDATE lm_menu SET " .
184 " title = " .
$ilDB->quote($this->
getTitle(),
"text") .
"," .
199 $q =
"SELECT * FROM lm_menu WHERE id = " .
200 $ilDB->quote($a_id,
"integer");
221 $q =
"UPDATE lm_menu SET " .
223 "WHEN " .
$ilDB->in(
"id", $a_entries,
false,
"integer") .
" " .
224 "THEN " .
$ilDB->quote(
"y",
"text") .
" " .
225 "ELSE " .
$ilDB->quote(
"n",
"text") .
" " .
227 "WHERE lm_id = " .
$ilDB->quote($this->lm_id,
"integer");
238 $db = $DIC->database();
241 "SELECT * FROM lm_menu " .
242 " WHERE lm_id = %s ",
248 if ($rec[
"link_type"] ==
"intern") {
249 $link = explode(
"_", $rec[
"link_ref_id"]);
251 $new_ref_id = $ref_mapping[
$ref_id] ?? 0;
253 if ($new_ref_id > 0) {
254 $new_target = str_replace((
string)
$ref_id, (
string) $new_ref_id, $rec[
"target"]);
255 $db->
update(
"lm_menu", array(
256 "link_ref_id" => array(
"integer", $new_ref_id),
257 "target" => array(
"text", $new_target)
259 "id" => array(
"integer", $rec[
"id"])
263 "DELETE FROM lm_menu WHERE " .
279 $db = $DIC->database();
281 $db->
update(
"lm_menu", array(
282 "active" => array(
"text", ($active ?
"y" :
"n"))
284 "id" => array(
"", $entry_id)
manipulateF(string $query, array $types, array $values)
fetchAssoc(ilDBStatement $statement)
update(string $table_name, array $values, array $where)
$where MUST contain existing columns only.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
queryF(string $query, array $types, array $values)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins