ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Presentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 use Closure;
30 
31 class Presentation extends Table implements T\Presentation
32 {
33  use ComponentHelper;
34  use HasViewControls;
36 
40  private array $environment = [];
41 
42  private array $records = [];
44 
45  public function __construct(
46  string $title,
47  array $view_controls,
48  protected Closure $row_mapping,
49  protected SignalGeneratorInterface $signal_generator
50  ) {
51  parent::__construct($title);
52  $this->view_controls = $view_controls;
53  $this->signal_toggle_all = $signal_generator->create();
54  }
55 
57  {
58  return $this->signal_generator;
59  }
60 
64  public function withRowMapping(Closure $row_mapping): T\Presentation
65  {
66  $clone = clone $this;
67  $clone->row_mapping = $row_mapping;
68  return $clone;
69  }
70 
74  public function getRowMapping(): Closure
75  {
76  return $this->row_mapping;
77  }
78 
82  public function withEnvironment(array $environment): T\Presentation
83  {
84  $clone = clone $this;
85  $clone->environment = $environment;
86  return $clone;
87  }
88 
92  public function getEnvironment(): array
93  {
94  return $this->environment;
95  }
96 
100  public function withData(array $records): T\Presentation
101  {
102  $clone = clone $this;
103  $clone->records = $records;
104  return $clone;
105  }
106 
110  public function getData(): array
111  {
112  return $this->records;
113  }
114 
115  public function getExpandCollapseAllSignal(): ?Signal
116  {
118  }
119 
120  public function getExpandAllSignal(): Signal
121  {
122  $option = clone $this->signal_toggle_all;
123  $option->addOption('expand', true);
124  return $option;
125  }
126 
127  public function getCollapseAllSignal(): Signal
128  {
129  $option = clone $this->signal_toggle_all;
130  $option->addOption('expand', false);
131  return $option;
132  }
133 }
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
__construct(string $title, array $view_controls, protected Closure $row_mapping, protected SignalGeneratorInterface $signal_generator)
trait HasViewControls
Trait for panels supporting view controls.
withRowMapping(Closure $row_mapping)
Get a table like this with the closure $row_mapping.This closure is called by the renderer upon build...
withData(array $records)
Fill a recordset into the table.All elements in $records MUST be processable by the mapping-closure...
getData()
Get the recordset of this table.All elements in $records MUST be processable by the mapping-closure...
create(string $class='')
Create a signal, each created signal MUST have a unique ID.
__construct(Container $dic, ilPlugin $plugin)
withEnvironment(array $environment)
Add a list of additional things the mapping-closure needs for processing.These can be virtually anyth...
getEnvironment()
Get an array of additionally needed elements to build a data-entry.array<string,mixed> ...
getRowMapping()
Get the closure to construct row-entries with.