ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ItemPresentationManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Container\Content;
22 
26 
34 {
35  protected ?string $lang = null;
36  protected bool $include_empty_blocks;
38  protected ?bool $can_order = null;
39  protected ClipboardManager $repo_clipboard;
40  protected ?bool $can_manage = null;
43  protected ?array $type_grps = null;
45  protected \ilContainer $container;
48 
49  public function __construct(
50  InternalDomainService $domain,
51  \ilContainer $container,
52  ?\ilContainerUserFilter $container_user_filter,
53  ClipboardManager $repo_clipboard,
54  bool $include_empty_blocks = true,
55  ?string $lang = null
56  ) {
57  $this->container = $container;
58  $this->domain = $domain;
59  $this->container_user_filter = $container_user_filter;
60  $this->repo_clipboard = $repo_clipboard;
61  $this->mode_manager = $domain->content()->mode($container);
62  $this->include_empty_blocks = $include_empty_blocks;
63  $this->lang = $lang;
64 
65  // sequence from view manager
66  }
67 
68  public function canManageItems(): bool
69  {
70  if (!is_null($this->can_manage)) {
71  return $this->can_manage;
72  }
73  $user = $this->domain->user();
74  $rbacsystem = $this->domain->rbac()->system();
75  if ($user->getId() === ANONYMOUS_USER_ID || !is_object($this->container)) {
76  return false;
77  }
78 
79  if ($rbacsystem->checkAccess("write", $this->container->getRefId()) ||
80  $this->container->getHiddenFilesFound() ||
81  $this->repo_clipboard->hasEntries()) {
82  $this->can_manage = true;
83  return true;
84  }
85  $this->init();
86  $this->can_manage = false;
87  /* this is time consuming and probably not necessary
88  foreach ($this->item_set->getAllRefIds() as $ref_id) {
89  if ($this->can_manage === true) {
90  break;
91  }
92  if ($rbacsystem->checkAccess("delete", $ref_id)) {
93  $this->can_manage = true;
94  }
95  }*/
96  return $this->can_manage;
97  }
98 
102  public function canOrderItems(): bool
103  {
104  $user = $this->domain->user();
105  $rbacsystem = $this->domain->rbac()->system();
106 
107  if (is_null($this->can_order)) {
108  $this->can_order = false;
109  if ($user->getId() !== ANONYMOUS_USER_ID &&
110  is_object($this->container) &&
111  $rbacsystem->checkAccess("write", $this->container->getRefId())) {
112  $this->can_order = (\ilContainerSortingSettings::_lookupSortMode($this->container->getId()) === \ilContainer::SORT_MANUAL);
113  }
114  }
115  return $this->can_order;
116  }
117 
121  public function isActiveItemOrdering(): bool
122  {
123  if ($this->mode_manager->isActiveItemOrdering()) {
124  return true;
125  }
126  return false;
127  }
128 
129 
134  protected function isClassificationFilterActive(): bool
135  {
136  $ref_id = $this->container->getRefId();
137  // apply container classification filters
138  $classification = $this->domain->classification($ref_id);
140  $this->container->getRefId(),
141  $this->container->getId(),
142  $this->container->getType()
143  ) as $class_provider) {
144  $id = get_class($class_provider);
145  $current = $classification->getSelectionOfProvider($id);
146  if ($current) {
147  return true;
148  }
149  }
150  return false;
151  }
152 
156  public function filteredSubtree(): bool
157  {
158  return $this->isClassificationFilterActive() && in_array(
159  $this->container->getType(),
160  ["grp", "crs"]
161  );
162  }
163 
164  protected function init(): void
165  {
166  // already initialised?
167  if (!is_null($this->item_set)) {
168  return;
169  }
170 
171  // get item set
172  $ref_id = $this->container->getRefId();
173  if ($this->filteredSubtree()) {
174  $this->item_set = $this->domain->content()->itemSetTree($ref_id, $this->container_user_filter);
175  } else {
176  $this->item_set = $this->domain->content()->itemSetFlat($ref_id, $this->container_user_filter);
177  }
178 
179  // get view
180  $view = $this->domain->content()->view($this->container);
181  // get item block sequence generator
182  $this->sequence_generator = $this->domain->content()->itemBlockSequenceGenerator(
183  $this->container,
184  $view->getBlockSequence(),
188  );
189  }
190 
191  public function hasItems(): bool
192  {
193  $this->init();
194  return $this->item_set->hasItems();
195  }
196 
197  public function getItemBlockSequence(): ItemBlockSequence
198  {
199  $this->init();
200  return $this->sequence_generator->getSequence();
201  }
202 
203  public function getPageEmbeddedBlockIds(): array
204  {
205  $this->init();
206  return $this->sequence_generator->getPageEmbeddedBlockIds();
207  }
208 
209  public function getRawDataByRefId(int $ref_id): ?array
210  {
211  $this->init();
212  return $this->item_set->getRawDataByRefId($ref_id);
213  }
214 
215  public function getAllRefIds(): ?array
216  {
217  $this->init();
218  return $this->item_set->getAllRefIds();
219  }
220 
221  public function getRefIdsOfType(string $type): array
222  {
223  $this->init();
224  return $this->item_set->getRefIdsOfType($type);
225  }
226 }
const ANONYMOUS_USER_ID
Definition: constants.php:27
__construct(InternalDomainService $domain, \ilContainer $container, ?\ilContainerUserFilter $container_user_filter, ClipboardManager $repo_clipboard, bool $include_empty_blocks=true, ?string $lang=null)
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
$ref_id
Definition: ltiauth.php:65
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$classification
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
isActiveItemOrdering()
Are we currently in ordering view and the items can be ordered?
static getValidProviders(int $a_parent_ref_id, int $a_parent_obj_id, string $a_parent_obj_type)
Get all valid providers (for parent container)