ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BaseConditionFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 
32 abstract class BaseConditionFactory
33 {
34  use InputHelper;
35 
40 
41  public function __construct(
42  UIFactory $ui_factory,
43  PresenterInterface $presenter,
44  ConstraintDictionary $constraint_dictionary,
46  ) {
47  $this->ui_factory = $ui_factory;
48  $this->presenter = $presenter;
49  $this->constraint_dictionary = $constraint_dictionary;
50  $this->types = $types;
51  }
52 
53  abstract public function getConditionInput(
54  ElementInterface $element,
55  ElementInterface $context_element,
56  ElementInterface $conditional_element
57  ): FormInput;
58 
59  protected function getInputInCondition(
60  ElementInterface $element,
61  ElementInterface $context_element,
62  SlotIdentifier $conditional_slot
63  ): FormInput {
64  $input_factory = $this->types->factory($element->getDefinition()->dataType());
65  return $input_factory->getInputInCondition(
66  $element,
67  $context_element,
68  $conditional_slot
69  );
70  }
71 }
__construct(UIFactory $ui_factory, PresenterInterface $presenter, ConstraintDictionary $constraint_dictionary, FactoryWithoutConditionTypesService $types)
getInputInCondition(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot)
getConditionInput(ElementInterface $element, ElementInterface $context_element, ElementInterface $conditional_element)
getDefinition()
Defining properties of the metadata element.
This describes inputs that can be used in forms.
Definition: FormInput.php:32