33 bool $a_call_by_reference =
true 37 $this->db = $DIC->database();
38 $this->
lng = $DIC->language();
49 $this->default_width = $a_val;
62 $this->default_height = $a_val;
75 $this->for_translation = $a_val;
83 public function read(): void
90 "SELECT * FROM mep_data " .
91 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer")
93 if ($rec =
$ilDB->fetchAssoc($set)) {
98 $this->mep_tree = self::_getPoolTree($this->
getId());
116 return self::_getPoolTree($this->
getId());
123 $id = parent::create();
127 $ilDB->manipulate(
"INSERT INTO mep_data " .
128 "(id, default_width, default_height, for_translation) VALUES (" .
129 $ilDB->quote($this->getId(),
"integer") .
", " .
130 $ilDB->quote($this->getDefaultWidth(),
"integer") .
", " .
131 $ilDB->quote($this->getDefaultHeight(),
"integer") .
", " .
132 $ilDB->quote($this->getForTranslation(),
"integer") .
143 $this->mep_tree->setTreeTablePK(
"mep_id");
144 $this->mep_tree->setTableNames(
'mep_tree',
'mep_item');
145 $this->mep_tree->addTree($this->
getId(), 1);
157 if (!parent::update()) {
165 "UPDATE mep_data SET " .
166 " default_width = " .
$ilDB->quote($this->getDefaultWidth(),
"integer") .
"," .
167 " default_height = " .
$ilDB->quote($this->getDefaultHeight(),
"integer") .
"," .
168 " for_translation = " .
$ilDB->quote($this->getForTranslation(),
"integer") .
" " .
169 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer")
176 public function delete():
bool 179 if (!parent::delete()) {
186 $childs = $this->mep_tree->getSubTree($this->mep_tree->getNodeData($this->mep_tree->readRootId()));
189 $this->mep_tree->removeTree($this->mep_tree->getTreeId());
192 foreach ($childs as $child) {
194 switch ($child[
"type"]) {
218 $obj_id = $this->mep_tree->getRootId();
221 if ($a_type ===
"fold" || $a_type ===
"") {
222 $objs = $this->mep_tree->getChildsByType($obj_id,
"fold");
224 if ($a_type ===
"mob" || $a_type ===
"") {
225 $mobs = $this->mep_tree->getChildsByType($obj_id,
"mob");
227 foreach ($mobs as $key => $mob) {
230 if ($a_type ===
"pg" || $a_type ===
"") {
231 $pgs = $this->mep_tree->getChildsByType($obj_id,
"pg");
233 foreach ($pgs as $key => $pg) {
244 $obj_id = $this->mep_tree->getRootId();
247 return $this->mep_tree->getFilteredChilds(array(
"fold",
"dummy"), $obj_id);
258 $ilDB = $DIC->database();
260 $query =
"SELECT foreign_id as id FROM " .
261 " mep_tree JOIN mep_item ON (mep_tree.child = mep_item.obj_id) " .
262 " JOIN object_data ON (mep_item.foreign_id = object_data.obj_id) " .
263 " WHERE mep_tree.mep_id = " .
$ilDB->quote($a_id,
"integer") .
264 " AND mep_item.type = " .
$ilDB->quote(
"mob",
"text") .
265 " AND object_data.type = " .
$ilDB->quote(
"mob",
"text");
266 $set =
$ilDB->query($query);
268 while ($rec =
$ilDB->fetchAssoc($set)) {
269 $ids[] = (
int) $rec[
"id"];
282 $query =
"SELECT DISTINCT media_item.format f FROM mep_tree " .
283 " JOIN mep_item ON (mep_item.obj_id = mep_tree.child) " .
284 " JOIN object_data ON (mep_item.foreign_id = object_data.obj_id) " .
285 " JOIN media_item ON (media_item.mob_id = object_data.obj_id) " .
286 " WHERE mep_tree.mep_id = " .
$ilDB->quote($this->
getId(),
"integer") .
287 " AND object_data.type = " .
$ilDB->quote(
"mob",
"text") .
290 $set =
$ilDB->query($query);
291 while ($rec =
$ilDB->fetchAssoc($set)) {
292 if ($rec[
"f"] !=
"") {
293 $formats[$rec[
"f"]] = $rec[
"f"];
295 $formats[
"unknown"] =
$lng->
txt(
"mep_unknown");
307 if ($obj_id === $this->mep_tree->getRootId()) {
311 return (
int) $this->mep_tree->getParentId($obj_id);
319 ?
int $a_parent =
null 321 if (!$this->mep_tree->isInTree($a_obj_id)) {
322 $parent = (is_null($a_parent))
323 ? $this->mep_tree->getRootId()
325 $this->mep_tree->insertNode($a_obj_id, $parent);
338 $node_data = $this->mep_tree->getNodeData($obj_id);
339 $subtree = $this->mep_tree->getSubTree($node_data);
342 if ($this->mep_tree->isInTree($obj_id)) {
343 $this->mep_tree->deleteTree($node_data);
347 foreach ($subtree as $node) {
378 $ilDB = $DIC->database();
381 "SELECT * FROM mep_tree JOIN mep_item ON (child = obj_id) WHERE " .
382 " foreign_id = " .
$ilDB->quote($a_foreign_id,
"integer") .
383 " AND mep_id = " .
$ilDB->quote($a_pool_id,
"integer")
385 if ($rec =
$ilDB->fetchAssoc($set)) {
400 $ilDB = $DIC->database();
402 $set =
$ilDB->query(
"SELECT * FROM mep_tree WHERE child = " .
403 $ilDB->quote($a_item_id,
"integer") .
404 " AND mep_id = " .
$ilDB->quote($a_pool_id,
"integer"));
405 if ($rec =
$ilDB->fetchAssoc($set)) {
417 $mep_item->setTitle($a_title);
418 $mep_item->setType(
"fold");
420 if ($mep_item->getId() > 0) {
422 $parent = $a_parent > 0
426 return $mep_item->getId();
437 public function cloneObject(
int $target_id,
int $copy_id = 0,
bool $omit_tree =
false): ?
ilObject 440 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
442 $new_obj->setTitle($this->
getTitle());
451 $new_obj->getTree()->readRootId(),
462 int $a_target_parent,
466 $nodes = $this->
getTree()->getChilds($a_source_parent);
467 foreach ($nodes as $node) {
469 $item->setType($node[
"type"]);
470 switch ($node[
"type"]) {
474 $new_mob = $mob->duplicate();
475 $item->setForeignId($new_mob->getId());
476 $item->setTitle($new_mob->getTitle());
481 $item->setTitle($node[
"title"]);
485 $new_page->setParentId($a_new_obj->
getId());
486 $new_page->setId($item->getId());
487 $new_page->create(
false);
490 $page->copy($new_page->getId(), $new_page->getParentType(), $new_page->getParentId(),
true);
494 $item->setTitle($node[
"title"]);
500 $a_new_obj->
insertInTree($item->getId(), $a_target_parent);
512 if (in_array($a_mode, array(
"master",
"masternomedia"))) {
514 $conf = $exp->getConfig(
"components/ILIAS/MediaPool");
515 $conf->setMasterLanguageOnly(
true, ($a_mode ===
"master"));
516 $exp->exportObject($this->
getType(), $this->
getId(),
"4.4.0");
523 $snippets = $repo->getItems((
int) $a_obj_id);
524 foreach ($snippets as $snippet) {
525 if ((
int) $snippet[
'obj_id'] === (
int) $a_sub_id) {
526 return $snippet[
'title'];
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...
setTreeTablePK(string $a_column_name)
set column containing primary key in tree table
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setTableNames(string $a_table_tree, string $a_table_obj_data, string $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be 'obj_id' You may use...
cloneMetaData(ilObject $target_obj)
Copy meta data.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
static _lookupType(int $id, bool $reference=false)