ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Complex.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use Closure;
34 
38 class Complex extends AbstractChildItem implements
39  hasContent,
40  hasTitle,
41  hasSymbol,
44  isChild
45 {
46  use hasSymbolTrait;
48 
50  private ?Component $content = null;
51  private string $title = '';
52  private bool $supports_async_loading = false;
53 
57  public function withContentWrapper(Closure $content_wrapper): hasContent
58  {
59  $clone = clone($this);
60  $clone->content_wrapper = $content_wrapper;
61 
62  return $clone;
63  }
64 
68  public function withContent(Component $ui_component): hasContent
69  {
70  $clone = clone($this);
71  $clone->content = $ui_component;
72 
73  return $clone;
74  }
75 
79  public function getContent(): Component
80  {
81  if ($this->content_wrapper !== null) {
82  $wrapper = $this->content_wrapper;
83 
84  return $wrapper();
85  }
86 
87  return $this->content;
88  }
89 
94  public function withTitle(string $title): hasTitle
95  {
96  $clone = clone($this);
97  $clone->title = $title;
98 
99  return $clone;
100  }
101 
105  public function getTitle(): string
106  {
107  return $this->title;
108  }
109 
114  {
115  $clone = clone($this);
116  $clone->supports_async_loading = $supported;
117 
118  return $clone;
119  }
120 
124  public function supportsAsynchronousLoading(): bool
125  {
127  }
128 }
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
Interface supportsAsynchronousLoading Types, which implement this interface, can load their content a...
trait hasSymbolTrait
Trait hasSymbolTrait.