ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclGenericMultiInputGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public const HOOK_IS_LINE_REMOVABLE = "hook_is_line_removable";
24  public const HOOK_IS_INPUT_DISABLED = "hook_is_disabled";
25  public const HOOK_BEFORE_INPUT_RENDER = "hook_before_render";
26  protected \ILIAS\UI\Factory $ui_factory;
27  protected \ILIAS\UI\Renderer $renderer;
28 
29  protected array $cust_attr = [];
30  protected array $value = [];
31  protected array $inputs = [];
32  protected array $input_options = [];
33  protected array $hooks = [];
34  protected ?array $line_values = [];
35  protected string $template_dir = '';
36  protected array $post_var_cache = [];
37  protected bool $show_label = false;
38  protected int $limit = 999999;
39  protected bool $allow_empty_fields = false;
40 
41  public function __construct(string $a_title = "", string $a_postvar = "")
42  {
43  global $DIC;
44 
45  $this->ui_factory = $DIC->ui()->factory();
46  $this->renderer = $DIC->ui()->renderer();
47 
48  parent::__construct($a_title, $a_postvar);
49 
50  $this->setType("line_select");
51  $this->setMulti(true);
52  }
53 
54  public function getLimit(): int
55  {
56  return $this->limit;
57  }
58 
59  public function setLimit(int $limit): void
60  {
61  $this->limit = $limit;
62  }
63 
64  public function isAllowEmptyFields(): bool
65  {
67  }
68 
69  public function setAllowEmptyFields(bool $allow_empty_fields): void
70  {
71  $this->allow_empty_fields = $allow_empty_fields;
72  }
73 
77  public function getHook(string $key)
78  {
79  if (isset($this->hooks[$key])) {
80  return $this->hooks[$key];
81  }
82 
83  return false;
84  }
85 
86  public function addHook(string $key, array $options)
87  {
88  $this->hooks[$key] = $options;
89  }
90 
91  public function removeHook(string $key): bool
92  {
93  if (isset($this->hooks[$key])) {
94  unset($this->hooks[$key]);
95 
96  return true;
97  }
98 
99  return false;
100  }
101 
102  public function addInput(ilFormPropertyGUI $input, array $options = [])
103  {
104  $input->setRequired(!$this->allow_empty_fields);
105  $this->inputs[$input->getPostVar()] = $input;
106  $this->input_options[$input->getPostVar()] = $options;
107  }
108 
109  public function isShowLabel(): bool
110  {
111  return $this->show_label;
112  }
113 
114  public function setShowLabel(bool $show_label): void
115  {
116  $this->show_label = $show_label;
117  }
118 
123  public function getInputs(): array
124  {
125  return $this->inputs;
126  }
127 
128  public function setMulti(
129  bool $a_multi,
130  bool $a_sortable = false,
131  bool $a_addremove = true
132  ): void {
133  $this->multi = $a_multi;
134  $this->multi_sortable = $a_sortable;
135  }
136 
140  public function setValue(array $value): void
141  {
142  $this->value = $value;
143 
144  foreach ($this->inputs as $key => $item) {
145  if (array_key_exists($key, $value)) {
146  if ($item instanceof ilCheckboxInputGUI) {
147  $item->setChecked((bool) $value[$key]);
148  } else {
149  if ($item instanceof ilDateTimeInputGUI) {
150  if (ilCalendarUtil::parseIncomingDate($value[$key])) {
151  $item->setDate(new ilDate($value[$key], IL_CAL_DATE));
152  } else {
153  $item->setDate();
154  }
155  } else {
156  $item->setValue($value[$key]);
157  }
158  }
159  }
160  }
161  }
162 
166  public function getValue(): array
167  {
168  $out = [];
169  foreach ($this->inputs as $key => $item) {
170  $out[$key] = $item->getValue();
171  }
172 
173  return $out;
174  }
175 
179  public function setValueByArray(array $a_values): void
180  {
181  $data = $a_values[$this->getPostVar()] ?? [];
182  if ($this->getMulti()) {
183  $this->line_values = $data;
184  } else {
185  $this->setValue($data);
186  }
187  }
188 
192  public function checkInput(): bool
193  {
194  global $lng;
195 
196  $valid = true;
197 
198  $value = $this->arrayArray($this->getPostVar());
199  // escape data
200  $out_array = [];
201  foreach ($value as $item_num => $item) {
202  foreach ($this->inputs as $input_key => $input) {
203  if (isset($item[$input_key])) {
204  if ($input instanceof ilDateTimeInputGUI) {
205  $out = (is_string($item[$input_key])) ? ilUtil::stripSlashes($item[$input_key]) : $item[$input_key];
207  $out_array[$item_num][$input_key] = $out;
208  } else {
209  $valid = false;
210  $this->setAlert($this->lng->txt("form_msg_wrong_date"));
211  $out_array[$item_num][$input_key] = null;
212  }
213  }
214  }
215  }
216  }
217 
218  $this->setValue($out_array);
219 
220  if ($this->getRequired() && !trim(implode("", $this->getValue()))) {
221  $this->setAlert($lng->txt("msg_input_is_required"));
222  $valid = false;
223  }
224 
225  return $valid;
226  }
227 
228  public function addCustomAttribute(string $key, string $value, bool $override = false): void
229  {
230  if (isset($this->cust_attr[$key]) && !$override) {
231  $this->cust_attr[$key] .= ' ' . $value;
232  } else {
233  $this->cust_attr[$key] = $value;
234  }
235  }
236 
237  public function getCustomAttributes(): array
238  {
239  return $this->cust_attr;
240  }
241 
242  protected function createInputPostVar(string $iterator_id, ilFormPropertyGUI $input): string
243  {
244  if ($this->getMulti()) {
245  return $this->getPostVar() . '[' . $iterator_id . '][' . $input->getPostVar() . ']';
246  } else {
247  return $this->getPostVar() . '[' . $input->getPostVar() . ']';
248  }
249  }
250 
255  public function render(string $iterator_id = "0", bool $clean_render = false): string
256  {
257  $tpl = new ilTemplate("tpl.prop_generic_multi_line.html", true, true, 'components/ILIAS/DataCollection');
258 
259  $class = 'multi_input_line';
260 
261  $this->addCustomAttribute('class', $class, true);
262  foreach ($this->getCustomAttributes() as $key => $value) {
263  $tpl->setCurrentBlock('cust_attr');
264  $tpl->setVariable('CUSTOM_ATTR_KEY', $key);
265  $tpl->setVariable('CUSTOM_ATTR_VALUE', $value);
266  $tpl->parseCurrentBlock();
267  }
268 
269  $inputs = $this->inputs;
270 
271  foreach ($inputs as $key => $input) {
272  $input = clone $input;
273  if (!method_exists($input, 'render')) {
274  throw new ilException(
275  "Method " . get_class($input)
276  . "::render() does not exists! You cannot use this input-type in ilMultiLineInputGUI"
277  );
278  }
279 
280  $is_disabled_hook = $this->getHook(self::HOOK_IS_INPUT_DISABLED);
281  if ($is_disabled_hook !== false && !$clean_render) {
282  $input->setDisabled($is_disabled_hook($this->getValue()));
283  }
284 
285  if ($this->getDisabled()) {
286  $input->setDisabled(true);
287  }
288 
289  if ($iterator_id == 0 && !isset($this->post_var_cache[$key])) {
290  $this->post_var_cache[$key] = $input->getPostVar();
291  } else {
292  // Reset post var
293  $input->setPostVar($this->post_var_cache[$key]);
294  }
295 
296  $post_var = $this->createInputPostVar($iterator_id, $input);
297  $input->setPostVar($post_var);
298 
299  $before_render_hook = $this->getHook(self::HOOK_BEFORE_INPUT_RENDER);
300  if ($before_render_hook !== false && !$clean_render) {
301  $input = $before_render_hook($this->getValue(), $key, $input);
302  }
303 
304  //var_dump($input);
305 
306  if ($this->isShowLabel()) {
307  $tpl->setCurrentBlock('input_label');
308  $tpl->setVariable('LABEL', $input->getTitle());
309  } else {
310  $tpl->setCurrentBlock('input');
311  }
312  $tpl->setVariable('CONTENT', $input->render());
313  $tpl->parseCurrentBlock();
314  }
315 
316  if ($this->getMulti() && !$this->getDisabled()) {
317  $show_remove = true;
318  $is_removeable_hook = $this->getHook(self::HOOK_IS_LINE_REMOVABLE);
319  if ($is_removeable_hook !== false && !$clean_render) {
320  $show_remove = $is_removeable_hook($this->getValue());
321  }
322  $tpl->setCurrentBlock('multi_icons');
323  $tpl->setVariable('IMAGE_PLUS', $this->renderer->render($this->ui_factory->symbol()->glyph()->add()));
324  if ($show_remove) {
325  $tpl->setVariable('IMAGE_MINUS', $this->renderer->render($this->ui_factory->symbol()->glyph()->remove()));
326  } else {
327  $tpl->setVariable('IMAGE_MINUS', '<span class="glyphicon glyphicon-minus hide"></span>');
328  }
329  if ($this->multi_sortable) {
330  $tpl->setVariable('IMAGE_UP', $this->renderer->render($this->ui_factory->symbol()->glyph()->up()));
331  $tpl->setVariable('IMAGE_DOWN', $this->renderer->render($this->ui_factory->symbol()->glyph()->down()));
332  }
333  $tpl->parseCurrentBlock();
334  }
335 
336  return $tpl->get();
337  }
338 
342  public function insert(ilTemplate $a_tpl): void
343  {
344  $output = $this->render("0", true);
345 
346  if ($this->getMulti() && is_array($this->line_values) && count($this->line_values) > 0) {
347  $counter = 0;
348  foreach ($this->line_values as $i => $data) {
349  $object = $this;
350  $object->setValue($data);
351  $output .= $object->render((string) $i);
352  $counter++;
353  }
354  } else {
355  $output .= $this->render("1", true);
356  }
357 
358  if ($this->getMulti()) {
359  $output = '<div id="' . $this->getFieldId() . '" class="multi_line_input">' . $output . '</div>';
360  $this->global_tpl->addJavaScript('assets/js/generic_multi_line_input.js');
361  $id = $this->getFieldId();
362  $element_config = json_encode($this->input_options);
363  $options = json_encode(['limit' => $this->limit,
364  'sortable' => $this->multi_sortable,
365  'locale' => $this->lng->getLangKey()]);
366  $this->global_tpl->addOnLoadCode("il.DataCollection.genericMultiLineInit('$id',$element_config,$options);");
367  }
368 
369  $a_tpl->setCurrentBlock("prop_generic");
370  $a_tpl->setVariable("PROP_GENERIC", $output);
371  $a_tpl->parseCurrentBlock();
372  }
373 
377  public function getTableFilterHTML(): string
378  {
379  return $this->render();
380  }
381 
385  public function getToolbarHTML(): string
386  {
387  return $this->render("toolbar");
388  }
389 
390  public function getSubItems(): array
391  {
392  return [];
393  }
394 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
addHook(string $key, array $options)
checkInput()
Check input, strip slashes etc.
static parseIncomingDate($value, bool $add_time=false)
Try to parse incoming value to date object.
render(string $iterator_id="0", bool $clean_render=false)
Render item.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
$valid
renderer()
setAllowEmptyFields(bool $allow_empty_fields)
This class represents a date/time property in a property form.
insert(ilTemplate $a_tpl)
Insert property html.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
__construct(string $a_title="", string $a_postvar="")
addCustomAttribute(string $key, string $value, bool $override=false)
$out
Definition: buildRTE.php:24
global $DIC
Definition: shib_login.php:22
addInput(ilFormPropertyGUI $input, array $options=[])
setRequired(bool $a_required)
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
getTableFilterHTML()
Get HTML for table filter.
setMulti(bool $a_multi, bool $a_sortable=false, bool $a_addremove=true)
const IL_CAL_DATE
setValueByArray(array $a_values)
Set value by array.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
createInputPostVar(string $iterator_id, ilFormPropertyGUI $input)