ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
FieldSelection.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 
32 {
34  protected string $button_label = '';
35  protected array $options;
36 
37  public function __construct(
40  SignalGeneratorInterface $signal_generator,
41  array $options
42  ) {
43  parent::__construct($data_factory, $refinery);
44  $this->options =$options;
45  $this->internal_selection_signal = $signal_generator->create();
46  }
47 
48  protected function isClientSideValueOk($value): bool
49  {
50  return is_null($value) || is_array($value);
51  }
52 
53  public function getInternalSignal(): Signal
54  {
56  }
57 
58  public function getOptions(): array
59  {
60  return $this->options;
61  }
62 
63  public function getButtonLabel(): string
64  {
65  return $this->button_label;
66  }
67 
68  public function withButtonLabel(string $button_label): self
69  {
70  $clone = clone $this;
71  $clone->button_label = $button_label;
72  return $clone;
73  }
74 
75  public function withAriaLabel(string $label): self
76  {
77  $clone = clone $this;
78  $clone->label = $label;
79  return $clone;
80  }
81 }
__construct(DataFactory $data_factory, Refinery $refinery, SignalGeneratorInterface $signal_generator, array $options)
This describes a Field Selection View Control.
create(string $class='')
Create a signal, each created signal MUST have a unique ID.
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21