ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMItemStorage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
31 {
37  public static function register(isItem $item): ilMMItemStorage
38  {
39  if ($item instanceof Lost) {
40  return new self();
41  }
42 
43  $mm_item = ilMMItemStorage::find($item->getProviderIdentification()->serialize());
44  if ($mm_item === null) {
45  $mm_item = new ilMMItemStorage();
46  $mm_item->setPosition($item->getPosition());
47  $mm_item->setIdentification($item->getProviderIdentification()->serialize());
48  $mm_item->setActive(true);
49  if ($item instanceof isChild) {
50  $mm_item->setParentIdentification($item->getParent()->serialize());
51  }
52  $mm_item->create();
53  }
54 
55  return $mm_item;
56  }
57 
58 
59 
60 
61  #[\Override]
62  public function create(): void
63  {
64  if (self::find($this->getIdentification()) !== null) {
65  $this->update();
66  } else {
67  parent::create();
68  }
69  }
70 
71 
79  protected ?string $identification = null;
85  protected bool $active = true;
91  protected int $position = 0;
97  protected ?string $parent_identification = '';
103  protected ?string $icon_id = '';
107  protected string $connector_container_name = "il_mm_items";
108 
109 
113  public function getIdentification(): string
114  {
115  return $this->identification;
116  }
117 
118 
122  public function setIdentification(string $identification): void
123  {
124  $this->identification = $identification;
125  }
126 
127 
131  public function isActive(): bool
132  {
133  return $this->active;
134  }
135 
136 
140  public function setActive(bool $active): void
141  {
142  $this->active = $active;
143  }
144 
145 
149  public function getPosition(): int
150  {
151  return $this->position;
152  }
153 
154 
158  public function setPosition(int $position): void
159  {
160  $this->position = $position;
161  }
162 
163 
167  public function getParentIdentification(): string
168  {
170  }
171 
172 
176  public function setParentIdentification(string $parent_identification): void
177  {
178  $this->parent_identification = $parent_identification;
179  }
180 
181 
185  public function getIconId(): ?string
186  {
187  return $this->icon_id === '' ? null : $this->icon_id;
188  }
189 
190 
196  public function setIconId(string $icon_id): ilMMItemStorage
197  {
198  $this->icon_id = $icon_id;
199 
200  return $this;
201  }
202 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $parent_identification
true text 256
int $position
true integer 4
string $icon_id
true text 256
string $identification
true true true text 64
setParentIdentification(string $parent_identification)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setPosition(int $position)
setIdentification(string $identification)
setIconId(string $icon_id)
bool $active
true integer 1