45 public static function exists(
int $a_media_pool_id,
string $a_title): void
58 public function getUsages(
bool $a_incl_hist =
true): array
60 return self::lookupUsages($this->
getId(), $a_incl_hist);
69 bool $a_incl_hist =
true 73 $ilDB = $DIC->database();
76 $q =
"SELECT * FROM page_pc_usage WHERE pc_id = " .
77 $ilDB->quote($a_id,
"integer") .
78 " AND pc_type = " .
$ilDB->quote(
"incl",
"text");
81 $q .=
" AND usage_hist_nr = " .
$ilDB->quote(0,
"integer");
87 while ($us_rec =
$ilDB->fetchAssoc($us_set)) {
89 if (is_int(strpos($us_rec[
"usage_type"],
":"))) {
90 $us_arr = explode(
":", $us_rec[
"usage_type"]);
102 $ret[] = array(
"type" => $us_rec[
"usage_type"],
103 "id" => $us_rec[
"usage_id"],
104 "hist_nr" => $us_rec[
"usage_hist_nr"],
105 "lang" => $us_rec[
"usage_lang"]);
110 $q =
"SELECT DISTINCT mep_id FROM mep_tree JOIN mep_item ON (child = obj_id) WHERE mep_item.obj_id = " .
111 $ilDB->quote($a_id,
"integer") .
" AND mep_item.type = " .
$ilDB->quote(
"pg",
"text");
113 while ($us_rec =
$ilDB->fetchAssoc($us_set)) {
116 "id" => (
int) $us_rec[
"mep_id"]
139 switch ($a_element) {
143 $paths = $this->lom_services->paths();
144 $title = $this->lom_services->read(
145 $this->pool->getId(),
149 )->firstData($paths->title())->value();
152 $item->setTitle($title);
169 $this->lom_services->derive()
170 ->fromBasicProperties(
171 self::lookupTitle($this->
getId()),
173 $ilUser->getPref(
'language')
181 $paths = $this->lom_services->paths();
183 ->prepareCreateOrUpdate($paths->title(), self::lookupTitle($this->
getId()))
static exists(int $a_media_pool_id, string $a_title)
Checks whether a page with given title exists.
static lookupTitle(int $a_page_id)
static lookupUsages(int $a_id, bool $a_incl_hist=true)
Lookup usages of media object.
MDUpdateListener(string $a_element)
Meta data update listener.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deleteAllPagesOfMediaPool(int $a_media_pool_id)
getUsages(bool $a_incl_hist=true)
get all usages of current media object
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
createMetaData(int $pool_id)
create meta data entry
setPool(ilObjMediaPool $pool)