ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebLinkDraftItemsContainer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
32  protected array $items;
33 
37  public function __construct(array $items = [])
38  {
39  parent::__construct($items);
40  }
41 
42  public function addItem(ilWebLinkDraftItem $item): void
43  {
44  $this->items[] = $item;
45  }
46 
50  public function getItems(): array
51  {
52  return $this->items;
53  }
54 
55  public function getFirstItem(): ?ilWebLinkDraftItem
56  {
57  return $this->items[0] ?? null;
58  }
59 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Base container class for Web Link items.
Container class for drafted Web Link items.
__construct(Container $dic, ilPlugin $plugin)
Draft class for creating and updating a Web Link item.