66 protected \ILIAS\Container\InternalDomainService
$domain;
87 public function __construct(
int $a_id = 0,
bool $a_reference =
true)
92 $this->db = $DIC->database();
93 $this->log = $DIC[
"ilLog"];
94 $this->
access = $DIC->access();
95 $this->error = $DIC[
"ilErr"];
96 $this->rbacsystem = $DIC->rbac()->system();
97 $this->tree = $DIC->repositoryTree();
98 $this->
user = $DIC->user();
99 $this->obj_definition = $DIC[
"objDefinition"];
100 $this->news = $DIC->news();
103 $this->setting = $DIC[
"ilSetting"];
106 if ($this->
getId() > 0) {
110 $this->content_style_domain = $DIC->contentStyle()->domain();
111 $this->domain = $DIC->container()->internal()->domain();
121 self::TILE_SMALL =>
$lng->
txt(
"cont_tile_size_1"),
122 self::TILE_NORMAL =>
$lng->
txt(
"cont_tile_size_0"),
123 self::TILE_LARGE =>
$lng->
txt(
"cont_tile_size_2"),
124 self::TILE_EXTRA_LARGE =>
$lng->
txt(
"cont_tile_size_3"),
125 self::TILE_FULL =>
$lng->
txt(
"cont_tile_size_4")
143 $cont_dir = $webspace_dir .
"/container_data";
144 if (!is_dir($cont_dir)) {
147 $obj_dir = $cont_dir .
"/obj_" . $this->
getId();
148 if (!is_dir($obj_dir)) {
155 return self::_getContainerDirectory($this->
getId());
166 $this->hiddenfilesfound = $a_hiddenfilesfound;
181 $this->style_id = $a_style_id;
186 $this->news_timeline = $a_val;
196 $this->news_timeline_auto_entries = $a_val;
206 $this->news_timeline_landing_page = $a_val;
216 if (!$this->news->isGloballyActivated()) {
236 $this->news_block_activated = $a_val;
246 $this->use_news = $a_val;
257 ?
string $a_default_value =
null 261 $ilDB = $DIC->database();
263 $q =
"SELECT value FROM container_settings WHERE " .
264 " id = " .
$ilDB->quote($a_id,
'integer') .
" AND " .
265 " keyword = " .
$ilDB->quote($a_keyword,
'text');
269 if (isset($rec[
'value'])) {
270 return $rec[
"value"];
273 return $a_default_value ??
'';
282 $ilDB = $DIC->database();
284 $q =
"SELECT value FROM container_settings WHERE " .
285 " id = " .
$ilDB->quote($a_id,
'integer') .
" AND " .
286 " keyword = " .
$ilDB->quote($a_keyword,
'text');
300 $ilDB = $DIC->database();
302 $query =
"DELETE FROM container_settings WHERE " .
303 "id = " .
$ilDB->quote($a_id,
'integer') .
" " .
304 "AND keyword = " .
$ilDB->quote($a_keyword,
'text');
305 $ilDB->manipulate($query);
308 $log->
debug(
"Write container setting, id: " . $a_id .
", keyword: " . $a_keyword .
", value: " . $a_value);
310 $query =
"INSERT INTO container_settings (id, keyword, value) VALUES (" .
311 $ilDB->quote($a_id,
'integer') .
", " .
312 $ilDB->quote($a_keyword,
'text') .
", " .
313 $ilDB->quote($a_value,
'text') .
316 $ilDB->manipulate($query);
327 $ilDB = $DIC->database();
331 $sql =
"SELECT keyword, value FROM container_settings WHERE " .
332 " id = " .
$ilDB->quote($a_id,
'integer');
333 $set =
$ilDB->query($sql);
334 while ($row =
$ilDB->fetchAssoc($set)) {
335 $res[$row[
"keyword"]] = $row[
"value"];
343 string $a_keyword =
"",
344 bool $a_keyword_like =
false 348 $ilDB = $DIC->database();
354 $sql =
"DELETE FROM container_settings WHERE " .
355 " id = " .
$ilDB->quote($a_id,
'integer');
356 if ($a_keyword !==
"") {
357 if (!$a_keyword_like) {
358 $sql .=
" AND keyword = " .
$ilDB->quote($a_keyword,
"text");
360 $sql .=
" AND " .
$ilDB->like(
"keyword",
"text", $a_keyword);
363 $ilDB->manipulate($sql);
371 $settings = self::_getContainerSettings($a_obj_id);
372 if (count($settings)) {
375 foreach ($settings as $keyword => $value) {
378 stripos($keyword,
"icon") !==
false 379 && $keyword !==
'hide_header_icon_and_title' 391 $a_xml->
xmlData((
string) $value);
407 public function cloneObject(
int $target_id,
int $copy_id = 0,
bool $omit_tree =
false): ?
ilObject 410 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
416 $ot->setDefaultTitle($new_obj->getTitle());
417 $ot->copy($new_obj->getId());
420 $new_obj->setObjectTranslation($ot2);
421 if ($ot2->getDefaultDescription() !==
"") {
422 $new_obj->setDescription($ot2->getDefaultDescription());
424 $log->
debug(
"**1**" . count($new_obj->getObjectTranslation()->getLanguages()));
425 $log->
debug(
"ilContainer: cloning translations from " . $this->
getId() .
" to " .
428 #18624 - copy all sorting settings 437 $orig_page->copy($new_obj->getId(),
"cont", $new_obj->getId());
441 $this->content_style_domain->styleForRefId($this->
getRefId())->cloneTo($new_obj->getId());
449 $orig_page->copy($new_obj->getId(),
"cstr", $new_obj->getId());
453 foreach (self::_getContainerSettings($this->
getId()) as $keyword => $value) {
454 self::_writeContainerSetting($new_obj->getId(), (string) $keyword, (
string) $value);
464 $mom_noti->cloneSettings($new_obj->getRefId());
481 parent::cloneDependencies($target_id, $copy_id);
486 self::fixInternalLinksAfterCopy($target_id, $copy_id, $this->
getRefId());
492 $collection = $olp->getCollectionInstance();
494 $collection->cloneCollection($target_id, $copy_id);
518 bool $soap_call =
false,
527 $wizard_options->saveOwner($ilUser->getId());
528 $wizard_options->saveRoot($clone_source);
531 $wizard_options->initContainer($clone_source, $ref_id);
533 foreach ($options as $source_id => $option) {
534 $wizard_options->addEntry($source_id, $option);
536 $wizard_options->read();
537 $wizard_options->storeTree($clone_source);
542 $wizard_options->read();
543 $wizard_options->dropFirstNode();
544 $wizard_options->appendMapping($clone_source, $ref_id);
553 $soap_client->setResponseTimeout($soap_client->getResponseTimeout());
554 $soap_client->enableWSDL(
true);
556 $ilLog->write(__METHOD__ .
': Trying to call Soap client...');
557 if ($soap_client->init()) {
559 $res = $soap_client->call(
'ilClone', [$new_session_id .
'::' . $client_id, $copy_id]);
562 $wizard_options->disableSOAP();
563 $wizard_options->read();
567 'copy_id' => $copy_id,
577 public function delete():
bool 580 if (!parent::delete()) {
584 $this->obj_trans->delete();
591 return self::VIEW_BY_TYPE;
596 return $this->order_type ?: self::SORT_TITLE;
601 $this->order_type = $a_value;
609 $id = get_class($class_provider);
648 bool $a_admin_panel_enabled =
false,
649 bool $a_include_side_block =
false,
650 int $a_get_single = 0,
657 isset($this->items[(
int) $a_admin_panel_enabled][(
int) $a_include_side_block]) &&
658 is_array($this->items[(
int) $a_admin_panel_enabled][(
int) $a_include_side_block]) &&
661 return $this->items[(
int) $a_admin_panel_enabled][(
int) $a_include_side_block];
666 $objects = self::getCompleteDescriptions($objects);
671 $id = get_class($class_provider);
674 $class_provider->setSelection($current);
675 $filtered = $class_provider->getFilteredObjects();
676 $objects = array_filter($objects,
static function (array $i) use ($filtered):
bool {
677 return (is_array($filtered) && in_array($i[
"obj_id"], $filtered));
686 if (!self::$data_preloaded) {
696 foreach ($objects as $key => $object) {
698 if (!self::$data_preloaded) {
699 if ($object[
"type"] ===
"sess") {
701 foreach ($ev_items as $ev_item) {
702 $preloader->addItem((
int) $ev_item[
"obj_id"], $ev_item[
"type"], $ev_item[
"ref_id"]);
706 if ($a_get_single > 0 && $object[
"child"] != $a_get_single) {
711 if ($object[
"type"] ===
"adm" || $object[
"type"] ===
"rolf" || $objDefinition->getDevMode($object[
"type"])) {
716 if ($objDefinition->isInactivePlugin($object[
"type"])) {
722 [
'file',
'fold',
'cat'],
726 if (!$a_admin_panel_enabled) {
732 if (!self::$data_preloaded) {
733 $preloader->addItem((
int) $object[
"obj_id"], $object[
"type"], $object[
"child"]);
737 if (!$a_include_side_block && $objDefinition->isSideBlock($object[
'type'])) {
741 $all_ref_ids[] = (
int) $object[
"child"];
745 if (!self::$data_preloaded) {
746 $preloader->preload();
749 self::$data_preloaded =
true;
752 foreach ($objects as $key => $object) {
754 if (!in_array($object[
"child"], $all_ref_ids)) {
759 $type = $objDefinition->getGroupOfObj($object[
"type"]);
761 $type = $object[
"type"];
767 $this->items[
$type][$key] = $object;
769 $this->items[
"_all"][$key] = $object;
770 if ($object[
"type"] !==
"sess") {
771 $this->items[
"_non_sess"][$key] = $object;
774 $this->items[(
int) $a_admin_panel_enabled][(
int) $a_include_side_block]
775 = $sort->sortItems($this->items);
777 return $this->items[(
int) $a_admin_panel_enabled][(
int) $a_include_side_block];
785 if (isset($this->items[
"_all"]) && is_array($this->items[
"_all"]) && count($this->items[
"_all"]) > 0) {
804 if (empty($this->type_grps)) {
805 $this->type_grps = $objDefinition::getGroupedRepositoryObjectTypes($this->
getType());
815 if (
$ilSetting->get(
"enable_cat_page_edit")) {
825 $lng = $DIC->language();
827 $ret = parent::create();
847 self::_writeContainerSetting($this->
getId(),
"news_timeline", (
string) ((
int) $this->
getNewsTimeline()));
858 parent::putInTree($parent_ref_id);
861 if (self::_lookupContainerSetting(
ilObject::_lookupObjId($parent_ref_id),
"hide_header_icon_and_title")) {
862 self::_writeContainerSetting($this->
getId(),
"hide_header_icon_and_title",
'1');
865 self::_writeContainerSetting($this->
getId(),
"hide_top_actions",
'1');
871 $ret = parent::update();
877 $trans->setDefaultTitle($this->
getTitle());
882 $log->
debug(
":::::::::::::::::::::::::::");
890 self::_writeContainerSetting($this->
getId(),
"news_timeline", (
string) ((
int) $this->
getNewsTimeline()));
919 $this->setting->get(
'block_activated_news',
'1')
922 $this->news->isGloballyActivated());
935 $ilObjDataCache = $DIC[
"ilObjDataCache"];
938 $short_desc =
$ilSetting->get(
"rep_shorten_description");
939 $short_desc_max_length =
$ilSetting->get(
"rep_shorten_description_length");
943 foreach ($objects as $key => $object) {
945 $object[
"description"],
946 (
int) $short_desc_max_length,
954 foreach ($objects as $key => $object) {
955 $obj_ids[] = $object[
"obj_id"];
957 if (count($obj_ids)) {
959 foreach ($objects as $key => $object) {
961 if ($ilObjDataCache->isTranslatedDescription((
int) $object[
"obj_id"])) {
962 $long_desc[$object[
"obj_id"]] = $object[
"description"];
964 if ($short_desc && $short_desc_max_length) {
967 (
int) $short_desc_max_length,
971 $objects[$key][
"description"] =
$long_desc[$object[
"obj_id"]] ??
'';
979 protected static function fixInternalLinksAfterCopy(
987 $obj_definition = $DIC[
"objDefinition"];
991 $mapping = $cwo->getMappings();
995 $pg->handleRepositoryLinksOnCopy($mapping, $a_source_ref_id);
996 $pg->update(
true,
true);
999 foreach ($mapping as $old_ref_id => $new_ref_id) {
1000 if (!is_numeric($old_ref_id) || !is_numeric($new_ref_id)) {
1007 $file = $loc .
'/class.' . $class .
'.php';
1009 if (is_file($file)) {
1011 $coll =
new $class();
1016 $page->handleRepositoryLinksOnCopy($mapping, $a_source_ref_id);
1017 $page->update(
true,
true);
1027 $this->obj_trans->delete();
1032 $this->obj_trans->removeLanguage($a_lang);
1033 $this->obj_trans->save();
1040 string $a_lang_default
1042 if (empty($a_title)) {
1043 $a_title =
"NO TITLE";
1046 $this->obj_trans->addLanguage($a_lang, $a_title, $a_desc, (
bool) $a_lang_default,
true);
1047 $this->obj_trans->save();
1054 $filter = $this->domain->content()->filter(
1056 $container_user_filter,
1057 !self::_lookupContainerSetting($this->
getId(),
"filter_show_empty",
false)
1059 return $filter->apply();
setStyleSheetId(int $a_style_id)
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static _duplicate(string $a_session_id)
Duplicate session.
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
const SORT_NEW_ITEMS_POSITION_TOP
static getLogger(string $a_component_id)
Get component logger.
ILIAS Container InternalDomainService $domain
setHiddenFilesFound(bool $a_hiddenfilesfound)
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...
isNewsTimelineEffective()
applyContainerUserFilter(array $objects, ?ilContainerUserFilter $container_user_filter=null)
ilObjectTranslation $obj_trans
logStack(?int $level=null, string $message='', array $context=[])
static getItemsByEvent(int $event_id)
Get session material / event items.
addTranslation(string $a_title, string $a_desc, string $a_lang, string $a_lang_default)
static ilClone(string $sid, int $copy_identifier)
getSubItems(bool $a_admin_panel_enabled=false, bool $a_include_side_block=false, int $a_get_single=0, ?ilContainerUserFilter $container_user_filter=null)
getDefaultLanguage()
Return default language.
Container start objects page object.
xmlData(string $data, bool $encode=true, bool $escape=true)
Writes data.
getChilds(int $a_node_id, string $a_order="", string $a_direction="ASC")
get child nodes of given node
getNewsTimelineLandingPage()
filteredSubtree()
Note grp/crs currently allow to filter in their whole subtrees Catetories only their direct childs...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
putInTree(int $parent_ref_id)
static _isFileHidden(string $a_file_name)
Returns true, if a file with the specified name, is usually hidden from the user. ...
ilObjectDefinition $obj_definition
setNewsBlockActivated(bool $a_val)
setOrderType(int $a_value)
getNewsTimelineAutoEntries()
addAdditionalSubItemInformation(array &$object)
Add additional information to sub item, e.g.
static _lookupObjId(int $ref_id)
xmlEndTag(string $tag)
Writes an endtag.
cloneDependencies(int $target_id, int $copy_id)
Clone object dependencies (container sorting)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setNewsTimelineLandingPage(bool $a_val)
Preloader for object list GUIs.
static _lookupSortMode(int $a_obj_id)
static getLongDescriptions(array $obj_ids)
const SORT_NEW_ITEMS_POSITION_BOTTOM
isNewsTimelineLandingPageEffective()
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
const SORT_NEW_ITEMS_ORDER_CREATION
static getInstance(int $obj_id)
getClassName(string $obj_name)
static _hasContainerSetting(int $a_id, string $a_keyword)
deleteTranslation(string $a_lang)
static _allocateCopyId()
Allocate a copy for further entries.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bool $news_timeline_landing_page
static _getContainerDirectory(int $a_id)
static cloneSettingsOfBlock(string $block_type, int $block_id, int $new_block_id)
static _exportContainerSettings(ilXmlWriter $a_xml, int $a_obj_id)
setNewsTimeline(bool $a_val)
static fixContainerItemGroupRefsAfterCloning(ilContainer $a_source_container, int $a_copy_id)
static _writeContainerSetting(int $a_id, string $a_keyword, string $a_value)
cloneAllObject(string $session_id, string $client_id, string $new_type, int $ref_id, int $clone_source, array $options, bool $soap_call=false, int $a_submode=1)
const SORT_NEW_ITEMS_ORDER_ACTIVATION
bool $news_timeline_auto_entries
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
const SORT_DIRECTION_DESC
ilRecommendedContentManager $recommended_content_manager
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
static _getInstance(int $a_obj_id)
static _cloneSettings(int $a_old_id, int $a_new_id)
getLongDescription()
get object long description (stored in object_description)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
isClassificationFilterActive()
setNewsTimelineAutoEntries(bool $a_val)
static _getInstance(int $a_copy_id)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
getLocation(string $obj_name)
setObjectTranslation(?ilObjectTranslation $obj_trans)
debug(string $message, array $context=[])
ILIAS Style Content DomainService $content_style_domain
createContainerDirectory()
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
bool $news_block_activated
static _lookupType(int $id, bool $reference=false)
static getValidProviders(int $a_parent_ref_id, int $a_parent_obj_id, string $a_parent_obj_type)
Get all valid providers (for parent container)
const SORT_NEW_ITEMS_ORDER_TITLE
static getInstance(int $obj_id)
Membership notification settings.
static getCompleteDescriptions(array $objects)
overwrites description fields to long or short description in an assoc array keys needed (obj_id and ...
static _getContainerSettings(int $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const SUBMODE_CONTENT_ONLY
static getInstance(string $a_parent_type, int $a_id=0, int $a_old_nr=0, string $a_lang="-")
Get page object instance.
static _deleteContainerSettings(int $a_id, string $a_keyword="", bool $a_keyword_like=false)
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static bool $data_preloaded