ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HasDynamicInputsBase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
32 use LogicException;
34 
38 abstract class HasDynamicInputsBase extends FormInput implements HasDynamicInputs
39 {
40  // ==========================================
41  // BEGIN IMPLEMENTATION OF DynamicInputsAware
42  // ==========================================
43 
47  protected array $dynamic_inputs = [];
49  protected Language $language;
50 
51  public function __construct(
52  Language $language,
53  DataFactory $data_factory,
55  string $label,
56  FormInputInterface $template,
57  ?string $byline
58  ) {
59  parent::__construct($data_factory, $refinery, $label, $byline);
60  $this->dynamic_input_template = $template;
61  $this->language = $language;
62  }
63 
69  {
71  }
72 
78  public function getDynamicInputs(): array
79  {
80  return $this->dynamic_inputs;
81  }
82 
83  // ==========================================
84  // END IMPLEMENTATION OF DynamicInputsAware
85  // ==========================================
86 
87  // ==========================================
88  // BEGIN OVERWRITTEN METHODS OF Input
89  // ==========================================
90 
94  public function withValue($value): self
95  {
96  if (!$this->isDynamicInputsValueOk($value)) {
97  throw new InvalidArgumentException("Display value does not match input(-template) type.");
98  }
99 
100  $clone = clone $this;
101 
102  foreach ($value as $input_name => $input_value) {
103  $clone->dynamic_inputs[$input_name] = $clone->dynamic_input_template->withValue($input_value);
104  }
105 
106  return $clone;
107  }
108 
109  public function withDisabled(bool $is_disabled): self
110  {
111  $clone = parent::withDisabled($is_disabled);
112  $clone->dynamic_input_template = $clone->dynamic_input_template->withDisabled($is_disabled);
113 
114  foreach ($clone->dynamic_inputs as $key => $input) {
115  $clone->dynamic_inputs[$key] = $input->withDisabled($is_disabled);
116  }
117 
118  return $clone;
119  }
120 
121  public function withNameFrom(NameSource $source, ?string $parent_name = null): self
122  {
123  $clone = parent::withNameFrom($source, $parent_name);
124 
125  $clone->dynamic_input_template = $clone->dynamic_input_template->withNameFrom(
126  new DynamicInputsNameSource($clone->getName())
127  );
128 
129  foreach ($clone->dynamic_inputs as $key => $input) {
130  $clone->dynamic_inputs[$key] = $input->withNameFrom(
131  new DynamicInputsNameSource($clone->getName())
132  );
133  }
134 
135  return $clone;
136  }
137 
138  public function withInput(InputData $post_data): self
139  {
140  if (null === $this->getName()) {
141  throw new LogicException(static::class . '::withNameFrom must be called first.');
142  }
143 
144  $clone = clone $this;
145  $contains_error = false;
146  $contents = [];
147 
148  foreach ((new DynamicInputDataIterator($post_data, $clone->getName())) as $index => $input_data) {
149  $clone->dynamic_inputs[$index] = $this->dynamic_input_template->withInput($input_data);
150  if ($clone->dynamic_inputs[$index]->getContent()->isOk()) {
151  $contents[] = $clone->dynamic_inputs[$index]->getContent()->value();
152  } else {
153  $contains_error = true;
154  }
155  }
156 
157  if ($contains_error) {
158  $clone->content = $clone->data_factory->error($this->language->txt("ui_error_in_group"));
159  } else {
160  $clone->content = $clone->applyOperationsTo($contents);
161  }
162 
163  if ($clone->content->isError()) {
164  $clone = $clone->withError((string) $clone->content->error());
165  }
166 
167  return $clone;
168  }
169 
170  public function getValue(): array
171  {
172  if (null === $this->getTemplateForDynamicInputs()) {
173  return parent::getValue();
174  }
175 
176  $values = [];
177  foreach ($this->getDynamicInputs() as $key => $input) {
178  $values[$key] = $input->getValue();
179  }
180 
181  return $values;
182  }
183 
184  // ==========================================
185  // END OVERWRITTEN METHODS OF Input
186  // ==========================================
187 
191  protected function isDynamicInputsValueOk($value): bool
192  {
193  if (!is_array($value)) {
194  return $this->dynamic_input_template->isClientSideValueOk($value);
195  }
196 
197  if (empty($value)) {
198  return false;
199  }
200 
201  foreach ($value as $input_value) {
202  if (!$this->dynamic_input_template->isClientSideValueOk($input_value)) {
203  return false;
204  }
205  }
206 
207  return true;
208  }
209 }
getTemplateForDynamicInputs()
Returns the instance of Field which should be used to generate dynamic inputs on clientside.
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:29
getValue()
Get the value that is displayed in the input client side.
Definition: Group.php:49
getValue()
Get the value that is displayed in the input client side.
__construct(Language $language, DataFactory $data_factory, Refinery $refinery, string $label, FormInputInterface $template, ?string $byline)
withDisabled(bool $is_disabled)
Get an input like this, but set it to a disabled state.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withInput(InputData $post_data)
Get an input like this with input from post data.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
Other than the FormInputNameSource this name source is for inputs that can be dynamically added multi...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDynamicInputs()
Returns serverside generated dynamic Inputs, which happens when providing this InputInterface::withVa...
withNameFrom(NameSource $source, ?string $parent_name=null)
__construct(Container $dic, ilPlugin $plugin)
This describes inputs that can be used in forms.
Definition: FormInput.php:32
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
Describes a source for input names.
Definition: NameSource.php:26