ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractBaseItem.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 use Closure;
30 
34 abstract class AbstractBaseItem implements isItem, isDecorateable
35 {
38 
39  protected int $position = 0;
41  protected bool $is_always_available = false;
44 
49  public function __construct(protected IdentificationInterface $provider_identification)
50  {
51  }
52 
57  {
58  return $this->provider_identification;
59  }
60 
61  public function withNonAvailableReason(Content $element): isItem
62  {
63  $clone = clone $this;
64  $clone->non_available_reason = $element;
65 
66  return $clone;
67  }
68 
72  public function getNonAvailableReason(): Content
73  {
74  global $DIC;
75 
76  return $this->non_available_reason instanceof Legacy ? $this->non_available_reason : $DIC->ui()->factory()->legacy()->content("");
77  }
78 
82  public function isAlwaysAvailable(): bool
83  {
85  }
86 
90  public function withAlwaysAvailable(bool $always_active): isItem
91  {
92  $clone = clone($this);
93  $clone->is_always_available = $always_active;
94 
95  return $clone;
96  }
97 
101  public function getPosition(): int
102  {
103  return $this->position;
104  }
105 
109  public function withPosition(int $position): isItem
110  {
111  $clone = clone($this);
112  $clone->position = $position;
113 
114  return $clone;
115  }
116 
120  public function setTypeInformation(TypeInformation $information): isItem
121  {
122  $this->type_information = $information;
123 
124  return $this;
125  }
126 
131  {
133  }
134 
135  public function isTop(): bool
136  {
137  if ($this instanceof isInterchangeableItem) {
138  $changed = $this->hasChanged();
139  if ($this instanceof isChild) {
140  return $changed;
141  }
142  if ($this instanceof isTopItem) {
143  return !$changed;
144  }
145  }
146 
147  return $this instanceof isTopItem;
148  }
149 }
withNonAvailableReason(Content $element)
If your provider or the service which provides the Item does not allow to activate the item (...
__construct(protected IdentificationInterface $provider_identification)
AbstractBaseItem constructor.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22