ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilContainer.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\News\Service as News;
20 
28 class ilContainer extends ilObject
29 {
30  protected News $news;
31  protected \ILIAS\Style\Content\DomainService $content_style_domain;
32  // container view constants
33  public const VIEW_SESSIONS = 0;
34  public const VIEW_OBJECTIVE = 1;
35  public const VIEW_TIMING = 2;
36  public const VIEW_ARCHIVE = 3;
37  public const VIEW_SIMPLE = 4;
38  public const VIEW_BY_TYPE = 5;
39  public const VIEW_INHERIT = 6;
40 
41  public const VIEW_DEFAULT = self::VIEW_BY_TYPE;
42 
43  public const SORT_TITLE = 0;
44  public const SORT_MANUAL = 1;
45  public const SORT_ACTIVATION = 2;
46  public const SORT_INHERIT = 3;
47  public const SORT_CREATION = 4;
48 
49  public const SORT_DIRECTION_ASC = 0;
50  public const SORT_DIRECTION_DESC = 1;
51 
52  public const SORT_NEW_ITEMS_POSITION_TOP = 0;
54 
55  public const SORT_NEW_ITEMS_ORDER_TITLE = 0;
58 
59  public const TILE_NORMAL = 0;
60  public const TILE_SMALL = 1;
61  public const TILE_LARGE = 2;
62  public const TILE_EXTRA_LARGE = 3;
63  public const TILE_FULL = 4;
64 
65  public static bool $data_preloaded = false;
66  protected \ILIAS\Container\InternalDomainService $domain;
67 
70  protected ilObjUser $user;
71  public array $items = [];
73  protected int $order_type = 0;
74  protected bool $hiddenfilesfound = false;
75  protected bool $news_timeline = false;
76  protected bool $news_timeline_auto_entries = false;
77  protected ilSetting $setting;
79  protected int $style_id = 0;
80  protected bool $news_timeline_landing_page = false;
81  protected bool $news_block_activated = false;
82  protected bool $use_news = false;
84 
85  protected ?array $type_grps = null;
86 
87  public function __construct(int $a_id = 0, bool $a_reference = true)
88  {
90  global $DIC;
91 
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();
101 
102 
103  $this->setting = $DIC["ilSetting"];
104  parent::__construct($a_id, $a_reference);
105 
106  if ($this->getId() > 0) {
107  $this->obj_trans = ilObjectTranslation::getInstance($this->getId());
108  }
109  $this->recommended_content_manager = new ilRecommendedContentManager();
110  $this->content_style_domain = $DIC->contentStyle()->domain();
111  $this->domain = $DIC->container()->internal()->domain();
112  }
113 
117  public function getTileSizes(): array
118  {
119  $lng = $this->lng;
120  return [
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")
126  ];
127  }
128 
130  {
131  return $this->obj_trans;
132  }
133 
134  public function setObjectTranslation(?ilObjectTranslation $obj_trans): void
135  {
136  $this->obj_trans = $obj_trans;
137  }
138 
139  // <webspace_dir>/container_data.
140  public function createContainerDirectory(): void
141  {
142  $webspace_dir = ilFileUtils::getWebspaceDir();
143  $cont_dir = $webspace_dir . "/container_data";
144  if (!is_dir($cont_dir)) {
145  ilFileUtils::makeDir($cont_dir);
146  }
147  $obj_dir = $cont_dir . "/obj_" . $this->getId();
148  if (!is_dir($obj_dir)) {
149  ilFileUtils::makeDir($obj_dir);
150  }
151  }
152 
153  public function getContainerDirectory(): string
154  {
155  return self::_getContainerDirectory($this->getId());
156  }
157 
158  public static function _getContainerDirectory(int $a_id): string
159  {
160  return ilFileUtils::getWebspaceDir() . "/container_data/obj_" . $a_id;
161  }
162 
163  // Set Found hidden files (set by getSubItems).
164  public function setHiddenFilesFound(bool $a_hiddenfilesfound): void
165  {
166  $this->hiddenfilesfound = $a_hiddenfilesfound;
167  }
168 
169  public function getHiddenFilesFound(): bool
170  {
172  }
173 
174  public function getStyleSheetId(): int
175  {
176  return $this->style_id;
177  }
178 
179  public function setStyleSheetId(int $a_style_id): void
180  {
181  $this->style_id = $a_style_id;
182  }
183 
184  public function setNewsTimeline(bool $a_val): void
185  {
186  $this->news_timeline = $a_val;
187  }
188 
189  public function getNewsTimeline(): bool
190  {
191  return $this->news_timeline;
192  }
193 
194  public function setNewsTimelineAutoEntries(bool $a_val): void
195  {
196  $this->news_timeline_auto_entries = $a_val;
197  }
198 
199  public function getNewsTimelineAutoEntries(): bool
200  {
202  }
203 
204  public function setNewsTimelineLandingPage(bool $a_val): void
205  {
206  $this->news_timeline_landing_page = $a_val;
207  }
208 
209  public function getNewsTimelineLandingPage(): bool
210  {
212  }
213 
214  public function isNewsTimelineEffective(): bool
215  {
216  if (!$this->news->isGloballyActivated()) {
217  return false;
218  }
219  if ($this->getUseNews() && $this->getNewsTimeline()) {
220  return true;
221  }
222  return false;
223  }
224 
225  public function isNewsTimelineLandingPageEffective(): bool
226  {
227  if ($this->getUseNews() && $this->getNewsTimeline() && $this->getNewsTimelineLandingPage()) {
228  return true;
229  }
230  return false;
231  }
232 
233 
234  public function setNewsBlockActivated(bool $a_val): void
235  {
236  $this->news_block_activated = $a_val;
237  }
238 
239  public function getNewsBlockActivated(): bool
240  {
242  }
243 
244  public function setUseNews(bool $a_val): void
245  {
246  $this->use_news = $a_val;
247  }
248 
249  public function getUseNews(): bool
250  {
251  return $this->use_news;
252  }
253 
254  public static function _lookupContainerSetting(
255  int $a_id,
256  string $a_keyword,
257  ?string $a_default_value = null
258  ): string {
259  global $DIC;
260 
261  $ilDB = $DIC->database();
262 
263  $q = "SELECT value FROM container_settings WHERE " .
264  " id = " . $ilDB->quote($a_id, 'integer') . " AND " .
265  " keyword = " . $ilDB->quote($a_keyword, 'text');
266  $set = $ilDB->query($q);
267  $rec = $set->fetchRow(ilDBConstants::FETCHMODE_ASSOC);
268 
269  if (isset($rec['value'])) {
270  return $rec["value"];
271  }
272 
273  return $a_default_value ?? '';
274  }
275 
276  public static function _hasContainerSetting(
277  int $a_id,
278  string $a_keyword
279  ): string {
280  global $DIC;
281 
282  $ilDB = $DIC->database();
283 
284  $q = "SELECT value FROM container_settings WHERE " .
285  " id = " . $ilDB->quote($a_id, 'integer') . " AND " .
286  " keyword = " . $ilDB->quote($a_keyword, 'text');
287  $set = $ilDB->query($q);
288  $rec = $set->fetchRow(ilDBConstants::FETCHMODE_ASSOC);
289 
290  return (bool) $rec;
291  }
292 
293  public static function _writeContainerSetting(
294  int $a_id,
295  string $a_keyword,
296  string $a_value
297  ): void {
298  global $DIC;
299 
300  $ilDB = $DIC->database();
301 
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);
306 
308  $log->debug("Write container setting, id: " . $a_id . ", keyword: " . $a_keyword . ", value: " . $a_value);
309 
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') .
314  ")";
315 
316  $ilDB->manipulate($query);
317  }
318 
323  public static function _getContainerSettings(int $a_id): array
324  {
325  global $DIC;
326 
327  $ilDB = $DIC->database();
328 
329  $res = [];
330 
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"];
336  }
337 
338  return $res;
339  }
340 
341  public static function _deleteContainerSettings(
342  int $a_id,
343  string $a_keyword = "",
344  bool $a_keyword_like = false
345  ): void {
346  global $DIC;
347 
348  $ilDB = $DIC->database();
349 
350  if (!$a_id) {
351  return;
352  }
353 
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");
359  } else {
360  $sql .= " AND " . $ilDB->like("keyword", "text", $a_keyword);
361  }
362  }
363  $ilDB->manipulate($sql);
364  }
365 
366  public static function _exportContainerSettings(
367  ilXmlWriter $a_xml,
368  int $a_obj_id
369  ): void {
370  // container settings
371  $settings = self::_getContainerSettings($a_obj_id);
372  if (count($settings)) {
373  $a_xml->xmlStartTag("ContainerSettings");
374 
375  foreach ($settings as $keyword => $value) {
376  // :TODO: proper custom icon export/import
377  if (
378  stripos($keyword, "icon") !== false
379  && $keyword !== 'hide_header_icon_and_title'
380  ) {
381  continue;
382  }
383 
384  $a_xml->xmlStartTag(
385  'ContainerSetting',
386  [
387  'id' => $keyword,
388  ]
389  );
390 
391  $a_xml->xmlData((string) $value);
392  $a_xml->xmlEndTag("ContainerSetting");
393  }
394 
395  $a_xml->xmlEndTag("ContainerSettings");
396  }
397  }
398 
407  public function cloneObject(int $target_id, int $copy_id = 0, bool $omit_tree = false): ?ilObject
408  {
410  $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
411 
413 
414  // translations
415  $ot = ilObjectTranslation::getInstance($this->getId());
416  $ot->setDefaultTitle($new_obj->getTitle()); // get possible "- COPY" extension
417  $ot->copy($new_obj->getId());
418  $ot2 = ilObjectTranslation::getInstance($new_obj->getId());
419  $ot2->read();
420  $new_obj->setObjectTranslation($ot2);
421  if ($ot2->getDefaultDescription() !== "") {
422  $new_obj->setDescription($ot2->getDefaultDescription());
423  }
424  $log->debug("**1**" . count($new_obj->getObjectTranslation()->getLanguages()));
425  $log->debug("ilContainer: cloning translations from " . $this->getId() . " to " .
426  $new_obj->getId());
427 
428  #18624 - copy all sorting settings
429  ilContainerSortingSettings::_cloneSettings($this->getId(), $new_obj->getId());
430 
431  // copy content page
433  "cont",
434  $this->getId()
435  )) {
436  $orig_page = new ilContainerPage($this->getId());
437  $orig_page->copy($new_obj->getId(), "cont", $new_obj->getId());
438  }
439 
440  // #20614 - copy style
441  $this->content_style_domain->styleForRefId($this->getRefId())->cloneTo($new_obj->getId());
442 
443  // #10271 - copy start objects page
445  "cstr",
446  $this->getId()
447  )) {
448  $orig_page = new ilContainerStartObjectsPage($this->getId());
449  $orig_page->copy($new_obj->getId(), "cstr", $new_obj->getId());
450  }
451 
452  // #10271
453  foreach (self::_getContainerSettings($this->getId()) as $keyword => $value) {
454  self::_writeContainerSetting($new_obj->getId(), (string) $keyword, (string) $value);
455  }
456 
457  $new_obj->setNewsTimeline($this->getNewsTimeline());
458  $new_obj->setNewsBlockActivated($this->getNewsBlockActivated());
459  $new_obj->setUseNews($this->getUseNews());
460  $new_obj->setNewsTimelineAutoEntries($this->getNewsTimelineAutoEntries());
461  $new_obj->setNewsTimelineLandingPage($this->getNewsTimelineLandingPage());
462  ilBlockSetting::cloneSettingsOfBlock("news", $this->getId(), $new_obj->getId());
463  $mom_noti = new ilMembershipNotifications($this->getRefId());
464  $mom_noti->cloneSettings($new_obj->getRefId());
465 
466  return $new_obj;
467  }
468 
477  public function cloneDependencies(int $target_id, int $copy_id): bool
478  {
479  $ilLog = $this->log;
480 
481  parent::cloneDependencies($target_id, $copy_id);
482 
483  ilContainerSorting::_getInstance($this->getId())->cloneSorting($target_id, $copy_id);
484 
485  // fix internal links to other objects
486  self::fixInternalLinksAfterCopy($target_id, $copy_id, $this->getRefId());
487 
488  // fix item group references in page content
490 
491  $olp = ilObjectLP::getInstance($this->getId());
492  $collection = $olp->getCollectionInstance();
493  if ($collection) {
494  $collection->cloneCollection($target_id, $copy_id);
495  }
496 
497  return true;
498  }
499 
511  public function cloneAllObject(
512  string $session_id,
513  string $client_id,
514  string $new_type,
515  int $ref_id,
516  int $clone_source,
517  array $options,
518  bool $soap_call = false,
519  int $a_submode = 1
520  ): array {
521  $ilLog = $this->log;
522  $ilUser = $this->user;
523 
524  // Save wizard options
526  $wizard_options = ilCopyWizardOptions::_getInstance($copy_id);
527  $wizard_options->saveOwner($ilUser->getId());
528  $wizard_options->saveRoot($clone_source);
529 
530  // add entry for source container
531  $wizard_options->initContainer($clone_source, $ref_id);
532 
533  foreach ($options as $source_id => $option) {
534  $wizard_options->addEntry($source_id, $option);
535  }
536  $wizard_options->read();
537  $wizard_options->storeTree($clone_source);
538 
539  if ($a_submode === ilObjectCopyGUI::SUBMODE_CONTENT_ONLY) {
540  ilLoggerFactory::getLogger('obj')->info('Copy content only...');
541  ilLoggerFactory::getLogger('obj')->debug('Added mapping, source ID: ' . $clone_source . ', target ID: ' . $ref_id);
542  $wizard_options->read();
543  $wizard_options->dropFirstNode();
544  $wizard_options->appendMapping($clone_source, $ref_id);
545  }
546 
547 
548  #print_r($options);
549  // Duplicate session to avoid logout problems with backgrounded SOAP calls
550  $new_session_id = ilSession::_duplicate($session_id);
551  // Start cloning process using soap call
552  $soap_client = new ilSoapClient();
553  $soap_client->setResponseTimeout($soap_client->getResponseTimeout());
554  $soap_client->enableWSDL(true);
555 
556  $ilLog->write(__METHOD__ . ': Trying to call Soap client...');
557  if ($soap_client->init()) {
558  ilLoggerFactory::getLogger('obj')->info('Calling soap clone method');
559  $res = $soap_client->call('ilClone', [$new_session_id . '::' . $client_id, $copy_id]);
560  } else {
561  ilLoggerFactory::getLogger('obj')->warning('SOAP clone call failed. Calling clone method manually');
562  $wizard_options->disableSOAP();
563  $wizard_options->read();
564  $res = ilSoapFunctions::ilClone($new_session_id . '::' . $client_id, $copy_id);
565  }
566  return [
567  'copy_id' => $copy_id,
568  'ref_id' => (int) $res
569  ];
570  }
571 
577  public function delete(): bool
578  {
579  // always call parent delete function first!!
580  if (!parent::delete()) {
581  return false;
582  }
583  // delete translations
584  $this->obj_trans->delete();
585 
586  return true;
587  }
588 
589  public function getViewMode(): int
590  {
591  return self::VIEW_BY_TYPE;
592  }
593 
594  public function getOrderType(): int
595  {
596  return $this->order_type ?: self::SORT_TITLE;
597  }
598 
599  public function setOrderType(int $a_value): void
600  {
601  $this->order_type = $a_value;
602  }
603 
604  public function isClassificationFilterActive(): bool
605  {
606  // apply container classification filters
607  $classification = $this->domain->classification($this->getRefId());
608  foreach (ilClassificationProvider::getValidProviders($this->getRefId(), $this->getId(), $this->getType()) as $class_provider) {
609  $id = get_class($class_provider);
610  $current = $classification->getSelectionOfProvider($id);
611  if ($current) {
612  return true;
613  }
614  }
615  return false;
616  }
617 
622  public function filteredSubtree(): bool
623  {
624  if ($this->isClassificationFilterActive() && in_array($this->getType(), ["grp", "crs"])) {
625  return true;
626  }
627  return false;
628  }
629 
633  protected function getInitialSubitems(): array
634  {
635  $tree = $this->tree;
636  if ($this->filteredSubtree()) {
637  $objects = $tree->getSubTree($tree->getNodeData($this->getRefId()));
638  } else {
639  $objects = $tree->getChilds($this->getRefId(), "title");
640  }
641  return $objects;
642  }
643 
647  public function getSubItems(
648  bool $a_admin_panel_enabled = false,
649  bool $a_include_side_block = false,
650  int $a_get_single = 0,
651  ?ilContainerUserFilter $container_user_filter = null
652  ): array {
653  $objDefinition = $this->obj_definition;
654 
655  // Caching
656  if (
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]) &&
659  !$a_get_single
660  ) {
661  return $this->items[(int) $a_admin_panel_enabled][(int) $a_include_side_block];
662  }
663 
664  $objects = $this->getInitialSubitems();
665  $objects = $this->applyContainerUserFilter($objects, $container_user_filter);
666  $objects = self::getCompleteDescriptions($objects);
667 
668  // apply container classification filters
669  $classification = $this->domain->classification($this->getRefId());
670  foreach (ilClassificationProvider::getValidProviders($this->getRefId(), $this->getId(), $this->getType()) as $class_provider) {
671  $id = get_class($class_provider);
672  $current = $classification->getSelectionOfProvider($id);
673  if ($current) {
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));
678  });
679  }
680  }
681 
682  $found = false;
683  $all_ref_ids = [];
684 
685  $preloader = null;
686  if (!self::$data_preloaded) {
688  }
689 
690  $sort = ilContainerSorting::_getInstance($this->getId());
691 
692  // TODO: check this
693  // get items attached to a session
694 
695  $classification_filter_active = $this->isClassificationFilterActive();
696  foreach ($objects as $key => $object) {
697  // see #41377, this ensures session materials to be preloaded
698  if (!self::$data_preloaded) {
699  if ($object["type"] === "sess") {
700  $ev_items = ilObjectActivation::getItemsByEvent((int) $object["obj_id"]);
701  foreach ($ev_items as $ev_item) {
702  $preloader->addItem((int) $ev_item["obj_id"], $ev_item["type"], $ev_item["ref_id"]);
703  }
704  }
705  }
706  if ($a_get_single > 0 && $object["child"] != $a_get_single) {
707  continue;
708  }
709 
710  // hide object types in devmode
711  if ($object["type"] === "adm" || $object["type"] === "rolf" || $objDefinition->getDevMode($object["type"])) {
712  continue;
713  }
714 
715  // remove inactive plugins
716  if ($objDefinition->isInactivePlugin($object["type"])) {
717  continue;
718  }
719  // BEGIN WebDAV: Don't display hidden Files, Folders and Categories
720  if (in_array(
721  $object['type'],
722  ['file', 'fold', 'cat'],
723  true
724  ) && ilObjFileAccess::_isFileHidden((string) $object['title'])) {
725  $this->setHiddenFilesFound(true);
726  if (!$a_admin_panel_enabled) {
727  continue;
728  }
729  }
730  // END WebDAV: Don't display hidden Files, Folders and Categories
731 
732  if (!self::$data_preloaded) {
733  $preloader->addItem((int) $object["obj_id"], $object["type"], $object["child"]);
734  }
735 
736  // filter side block items
737  if (!$a_include_side_block && $objDefinition->isSideBlock($object['type'])) {
738  continue;
739  }
740 
741  $all_ref_ids[] = (int) $object["child"];
742  }
743 
744  // data preloader
745  if (!self::$data_preloaded) {
746  $preloader->preload();
747  unset($preloader);
748 
749  self::$data_preloaded = true;
750  }
751 
752  foreach ($objects as $key => $object) {
753  // see above, objects were filtered
754  if (!in_array($object["child"], $all_ref_ids)) {
755  continue;
756  }
757 
758  // group object type groups together (e.g. learning resources)
759  $type = $objDefinition->getGroupOfObj($object["type"]);
760  if ($type == "") {
761  $type = $object["type"];
762  }
763 
764  // this will add activation properties
765  $this->addAdditionalSubItemInformation($object);
766 
767  $this->items[$type][$key] = $object;
768 
769  $this->items["_all"][$key] = $object;
770  if ($object["type"] !== "sess") {
771  $this->items["_non_sess"][$key] = $object;
772  }
773  }
774  $this->items[(int) $a_admin_panel_enabled][(int) $a_include_side_block]
775  = $sort->sortItems($this->items);
776 
777  return $this->items[(int) $a_admin_panel_enabled][(int) $a_include_side_block];
778  }
779 
783  public function gotItems(): bool
784  {
785  if (isset($this->items["_all"]) && is_array($this->items["_all"]) && count($this->items["_all"]) > 0) {
786  return true;
787  }
788  return false;
789  }
790 
795  public function addAdditionalSubItemInformation(array &$object): void
796  {
797  }
798 
799  // Get grouped repository object types.
800  public function getGroupedObjTypes(): array
801  {
802  $objDefinition = $this->obj_definition;
803 
804  if (empty($this->type_grps)) {
805  $this->type_grps = $objDefinition::getGroupedRepositoryObjectTypes($this->getType());
806  }
807  return $this->type_grps;
808  }
809 
810  public function enablePageEditing(): bool
811  {
813 
814  // @todo: this will need a more general approach
815  if ($ilSetting->get("enable_cat_page_edit")) {
816  return true;
817  }
818  return false;
819  }
820 
821  public function create(): int
822  {
823  global $DIC;
824 
825  $lng = $DIC->language();
826 
827  $ret = parent::create();
828 
829  // set translation object, since we have an object id now
830  $this->obj_trans = ilObjectTranslation::getInstance($this->getId());
831 
832  // add default translation
833  $this->addTranslation(
834  $this->getTitle(),
835  $this->getDescription(),
837  '1'
838  );
839 
840  if (($this->getStyleSheetId()) > 0) {
841  //ilObjStyleSheet::writeStyleUsage($this->getId(), $this->getStyleSheetId());
842  }
843 
845  $log->debug("Create Container, id: " . $this->getId());
846 
847  self::_writeContainerSetting($this->getId(), "news_timeline", (string) ((int) $this->getNewsTimeline()));
848  self::_writeContainerSetting($this->getId(), "news_timeline_incl_auto", (string) ((int) $this->getNewsTimelineAutoEntries()));
849  self::_writeContainerSetting($this->getId(), "news_timeline_landing_page", (string) ((int) $this->getNewsTimelineLandingPage()));
850  self::_writeContainerSetting($this->getId(), ilObjectServiceSettingsGUI::NEWS_VISIBILITY, (string) ((int) $this->getNewsBlockActivated()));
851  self::_writeContainerSetting($this->getId(), ilObjectServiceSettingsGUI::USE_NEWS, (string) ((int) $this->getUseNews()));
852 
853  return $ret;
854  }
855 
856  public function putInTree(int $parent_ref_id): void
857  {
858  parent::putInTree($parent_ref_id);
859 
860  // copy title, icon actions visibilities
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');
863  }
864  if (self::_lookupContainerSetting(ilObject::_lookupObjId($parent_ref_id), "hide_top_actions")) {
865  self::_writeContainerSetting($this->getId(), "hide_top_actions", '1');
866  }
867  }
868 
869  public function update(): bool
870  {
871  $ret = parent::update();
872 
874  $log->debug("**5**" . count($this->getObjectTranslation()->getLanguages()));
875 
876  $trans = $this->getObjectTranslation();
877  $trans->setDefaultTitle($this->getTitle());
878  $trans->setDefaultDescription($this->getLongDescription());
879  $trans->save();
880 
882  $log->debug(":::::::::::::::::::::::::::");
883  $log->logStack(10);
884 
885  //ilObjStyleSheet::writeStyleUsage($this->getId(), $this->getStyleSheetId());
886 
888  $log->debug("Update Container, id: " . $this->getId());
889 
890  self::_writeContainerSetting($this->getId(), "news_timeline", (string) ((int) $this->getNewsTimeline()));
891  self::_writeContainerSetting($this->getId(), "news_timeline_incl_auto", (string) (int) $this->getNewsTimelineAutoEntries());
892  self::_writeContainerSetting($this->getId(), "news_timeline_landing_page", (string) ((int) ($this->getNewsTimelineLandingPage())));
893  self::_writeContainerSetting($this->getId(), ilObjectServiceSettingsGUI::NEWS_VISIBILITY, (string) ((int) $this->getNewsBlockActivated()));
894  self::_writeContainerSetting($this->getId(), ilObjectServiceSettingsGUI::USE_NEWS, (string) ((int) $this->getUseNews()));
895 
896  return $ret;
897  }
898 
899  public function read(): void
900  {
901  parent::read();
902 
904 
905  //$this->setStyleSheetId(ilObjStyleSheet::lookupObjectStyle($this->getId()));
906 
907  $this->readContainerSettings();
908  $this->obj_trans = ilObjectTranslation::getInstance($this->getId());
909  }
910 
911  public function readContainerSettings(): void
912  {
913  $this->setNewsTimeline((bool) self::_lookupContainerSetting($this->getId(), "news_timeline"));
914  $this->setNewsTimelineAutoEntries((bool) self::_lookupContainerSetting($this->getId(), "news_timeline_incl_auto"));
915  $this->setNewsTimelineLandingPage((bool) self::_lookupContainerSetting($this->getId(), "news_timeline_landing_page"));
916  $this->setNewsBlockActivated((bool) self::_lookupContainerSetting(
917  $this->getId(),
919  $this->setting->get('block_activated_news', '1')
920  ));
921  $this->setUseNews((bool) self::_lookupContainerSetting($this->getId(), ilObjectServiceSettingsGUI::USE_NEWS, '1') &&
922  $this->news->isGloballyActivated());
923  }
924 
925 
930  public static function getCompleteDescriptions(array $objects): array
931  {
932  global $DIC;
933 
934  $ilSetting = $DIC->settings();
935  $ilObjDataCache = $DIC["ilObjDataCache"];
936 
937  // using long descriptions?
938  $short_desc = $ilSetting->get("rep_shorten_description");
939  $short_desc_max_length = $ilSetting->get("rep_shorten_description_length");
940  if (!$short_desc || (int) $short_desc_max_length !== ilObject::DESC_LENGTH) {
941  // using (part of) shortened description
942  if ($short_desc && $short_desc_max_length && $short_desc_max_length < ilObject::DESC_LENGTH) {
943  foreach ($objects as $key => $object) {
944  $objects[$key]["description"] = ilStr::shortenTextExtended(
945  $object["description"],
946  (int) $short_desc_max_length,
947  true
948  );
949  }
950  }
951  // using (part of) long description
952  else {
953  $obj_ids = [];
954  foreach ($objects as $key => $object) {
955  $obj_ids[] = $object["obj_id"];
956  }
957  if (count($obj_ids)) {
959  foreach ($objects as $key => $object) {
960  // #12166 - keep translation, ignore long description
961  if ($ilObjDataCache->isTranslatedDescription((int) $object["obj_id"])) {
962  $long_desc[$object["obj_id"]] = $object["description"];
963  }
964  if ($short_desc && $short_desc_max_length) {
965  $long_desc[$object["obj_id"]] = ilStr::shortenTextExtended(
966  $long_desc[$object["obj_id"]] ?? '',
967  (int) $short_desc_max_length,
968  true
969  );
970  }
971  $objects[$key]["description"] = $long_desc[$object["obj_id"]] ?? '';
972  }
973  }
974  }
975  }
976  return $objects;
977  }
978 
979  protected static function fixInternalLinksAfterCopy(
980  int $a_target_id,
981  int $a_copy_id,
982  int $a_source_ref_id
983  ): void {
984  global $DIC;
985 
987  $obj_definition = $DIC["objDefinition"];
988 
989  $obj_id = ilObject::_lookupObjId($a_target_id);
990  $cwo = ilCopyWizardOptions::_getInstance($a_copy_id);
991  $mapping = $cwo->getMappings();
992 
993  if (ilContainerPage::_exists("cont", $obj_id)) {
994  $pg = new ilContainerPage($obj_id);
995  $pg->handleRepositoryLinksOnCopy($mapping, $a_source_ref_id);
996  $pg->update(true, true);
997  }
998 
999  foreach ($mapping as $old_ref_id => $new_ref_id) {
1000  if (!is_numeric($old_ref_id) || !is_numeric($new_ref_id)) {
1001  continue;
1002  }
1003 
1004  $type = ilObject::_lookupType($new_ref_id, true);
1005  $class = 'il' . $obj_definition->getClassName($type) . 'PageCollector';
1006  $loc = $obj_definition->getLocation($type);
1007  $file = $loc . '/class.' . $class . '.php';
1008 
1009  if (is_file($file)) {
1011  $coll = new $class();
1012  foreach ($coll->getAllPageIds(ilObject::_lookupObjId($new_ref_id)) as $page_id) {
1013  if (ilPageObject::_exists($page_id['parent_type'], $page_id['id'], $page_id['lang'])) {
1015  $page = ilPageObjectFactory::getInstance($page_id['parent_type'], $page_id['id'], 0, $page_id['lang']);
1016  $page->handleRepositoryLinksOnCopy($mapping, $a_source_ref_id);
1017  $page->update(true, true);
1018  }
1019  }
1020  }
1021  }
1022  }
1023 
1024  // Remove all translations of container
1025  public function removeTranslations(): void
1026  {
1027  $this->obj_trans->delete();
1028  }
1029 
1030  public function deleteTranslation(string $a_lang): void
1031  {
1032  $this->obj_trans->removeLanguage($a_lang);
1033  $this->obj_trans->save();
1034  }
1035 
1036  public function addTranslation(
1037  string $a_title,
1038  string $a_desc,
1039  string $a_lang,
1040  string $a_lang_default
1041  ): void {
1042  if (empty($a_title)) {
1043  $a_title = "NO TITLE";
1044  }
1045 
1046  $this->obj_trans->addLanguage($a_lang, $a_title, $a_desc, (bool) $a_lang_default, true);
1047  $this->obj_trans->save();
1048  }
1049 
1050  protected function applyContainerUserFilter(
1051  array $objects,
1052  ?ilContainerUserFilter $container_user_filter = null
1053  ): array {
1054  $filter = $this->domain->content()->filter(
1055  $objects,
1056  $container_user_filter,
1057  !self::_lookupContainerSetting($this->getId(), "filter_show_empty", false)
1058  );
1059  return $filter->apply();
1060  }
1061 }
setStyleSheetId(int $a_style_id)
static getWebspaceDir(string $mode="filesystem")
get webspace directory
$res
Definition: ltiservices.php:66
static _duplicate(string $a_session_id)
Duplicate session.
string $type
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...
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)
ilAccessHandler $access
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
const DESC_LENGTH
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...
ilTree $tree
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)
addAdditionalSubItemInformation(array &$object)
Add additional information to sub item, e.g.
static _lookupObjId(int $ref_id)
ilRbacSystem $rbacsystem
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 getLongDescriptions(array $obj_ids)
const SORT_NEW_ITEMS_POSITION_BOTTOM
Container page object.
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
ilLanguage $lng
static getInstance(int $obj_id)
global $DIC
Definition: shib_login.php:22
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
string $long_desc
$classification
bool $news_timeline_auto_entries
setUseNews(bool $a_val)
global $ilSetting
Definition: privfeed.php:31
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__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)
$q
Definition: shib_logout.php:21
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.
$client_id
Definition: ltiauth.php:66
ilLogger $log
setNewsTimelineAutoEntries(bool $a_val)
static _getInstance(int $a_copy_id)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
const SORT_DIRECTION_ASC
setObjectTranslation(?ilObjectTranslation $obj_trans)
debug(string $message, array $context=[])
ILIAS Style Content DomainService $content_style_domain
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 ...
ilSetting $setting
static _getContainerSettings(int $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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