ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ViewControl.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
37 use ILIAS\UI\Component as C;
39 
40 abstract class ViewControl extends Container implements I\ViewControl
41 {
43 
47 
51  public function __construct(
52  SignalGeneratorInterface $signal_generator,
54  C\Input\ViewControl\Factory $view_control_factory,
55  array $controls
56  ) {
57  parent::__construct($name_source);
58  $this->setInputGroup($view_control_factory->group($controls)->withDedicatedName('view_control'));
59  $this->submit_signal = $signal_generator->create();
60  $this->stored_input = new Input\ArrayInputData([]);
61  }
62 
63  public function getSubmissionSignal(): Signal
64  {
65  return $this->submit_signal;
66  }
67 
71  public function withRequest(ServerRequestInterface $request): Container
72  {
73  $clone = parent::withRequest($request);
74  $clone->request = $request;
75  return $clone;
76  }
77 
78  public function getRequest(): ?ServerRequestInterface
79  {
80  return $this->request;
81  }
82 
83  public function withStoredInput(Input\ArrayInputData $input): self
84  {
85  $clone = clone $this;
86  $clone->stored_input = $input;
87  return $clone;
88  }
89 
93  protected function extractRequestData(ServerRequestInterface $request): InputData
94  {
95  $internal_input_data = new Input\ArrayInputData($this->getComponentInternalValues());
96 
97  return new StackedInputData(
98  new QueryParamsFromServerRequest($request),
99  $this->stored_input,
100  $internal_input_data,
101  );
102  }
103 
107  public function getComponentInternalValues(
108  ?C\Input\Group $component = null,
109  array $input_values = []
110  ): array {
111  if (is_null($component)) {
112  $component = $this->getInputGroup();
113  }
114  foreach ($component->getInputs() as $input) {
115  if ($input instanceof C\Input\Group) {
116  $input_values = $this->getComponentInternalValues($input, $input_values);
117  }
118  if ($input instanceof HasInputGroup) {
119  $input_values = $this->getComponentInternalValues($input->getInputGroup(), $input_values);
120  }
121  if ($name = $input->getName()) {
122  $input_values[$input->getName()] = $input->getValue();
123  }
124  }
125 
126  return $input_values;
127  }
128 }
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:29
This implements commonalities between all forms.
Definition: Container.php:34
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setInputGroup(C\Input\Group $input_group)
This setter should be used in the constructor only, to initialize the group input property...
Definition: Container.php:142
Implements interaction of input element with get data from psr-7 server request.
getComponentInternalValues(?C\Input\Group $component=null, array $input_values=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Implements interaction of input element with get data from psr-7 server request.
Builds data types.
Definition: Factory.php:35
__construct(SignalGeneratorInterface $signal_generator, Input\NameSource $name_source, C\Input\ViewControl\Factory $view_control_factory, array $controls)
Definition: ViewControl.php:51
create(string $class='')
Create a signal, each created signal MUST have a unique ID.
__construct(Container $dic, ilPlugin $plugin)
This describes commonalities between all inputs.
Definition: Input.php:46
Describes a source for input names.
Definition: NameSource.php:26
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...