ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LangFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 
32 class LangFactory extends BaseFactory
33 {
35 
36  public function __construct(
40  DataHelperInterface $data_helper
41  ) {
42  parent::__construct($ui_factory, $presenter, $constraint_dictionary);
43  $this->data_helper = $data_helper;
44  }
45 
46  protected function rawInput(
47  ElementInterface $element,
48  ElementInterface $context_element,
49  SlotIdentifier $conditional_slot = SlotIdentifier::NULL
50  ): FormInput {
51  $langs = [];
52  foreach ($this->data_helper->getAllLanguages() as $key) {
53  $langs[$key] = $this->presenter->data()->language($key);
54  }
55  $input = $this->ui_factory->select(
56  $this->getInputLabelFromElement($this->presenter, $element, $context_element),
57  $langs
58  );
59 
60  return $this->addConstraintsFromElement(
61  $this->constraint_dictionary,
62  $element,
63  $this->addValueFromElement($element, $input)
64  );
65  }
66 
67  public function getInput(
68  ElementInterface $element,
69  ElementInterface $context_element
70  ): FormInput {
71  return $this->rawInput($element, $context_element);
72  }
73 
74  public function getInputInCondition(
75  ElementInterface $element,
76  ElementInterface $context_element,
77  SlotIdentifier $conditional_slot
78  ): FormInput {
79  return $this->rawInput($element, $context_element);
80  }
81 }
__construct(UIFactory $ui_factory, PresenterInterface $presenter, ConstraintDictionary $constraint_dictionary, DataHelperInterface $data_helper)
Definition: LangFactory.php:36
rawInput(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot=SlotIdentifier::NULL)
Definition: LangFactory.php:46
getInput(ElementInterface $element, ElementInterface $context_element)
Definition: LangFactory.php:67
getInputInCondition(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot)
Definition: LangFactory.php:74
__construct(Container $dic, ilPlugin $plugin)
This describes inputs that can be used in forms.
Definition: FormInput.php:32