ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NonNegIntFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 
33 {
34  protected Refinery $refinery;
35 
36  public function __construct(
40  Refinery $refinery
41  ) {
42  parent::__construct($ui_factory, $presenter, $constraint_dictionary);
43  $this->refinery = $refinery;
44  }
45 
46  protected function rawInput(
47  ElementInterface $element,
48  ElementInterface $context_element,
49  SlotIdentifier $conditional_slot = SlotIdentifier::NULL
50  ): FormInput {
51  $input = $this->ui_factory
52  ->numeric($this->getInputLabelFromElement($this->presenter, $element, $context_element))
54  $this->refinery->int()->isGreaterThanOrEqual(0)
55  )
57  $this->refinery->byTrying([
58  $this->refinery->kindlyTo()->string(),
59  $this->refinery->kindlyTo()->null()
60  ])
61  );
62  return $this->addConstraintsFromElement(
63  $this->constraint_dictionary,
64  $element,
65  $this->addValueFromElement($element, $input)
66  );
67  }
68 
69  public function getInput(
70  ElementInterface $element,
71  ElementInterface $context_element
72  ): FormInput {
73  return $this->rawInput($element, $context_element);
74  }
75 
76  public function getInputInCondition(
77  ElementInterface $element,
78  ElementInterface $context_element,
79  SlotIdentifier $conditional_slot
80  ): FormInput {
81  return $this->rawInput($element, $context_element);
82  }
83 }
__construct(UIFactory $ui_factory, PresenterInterface $presenter, ConstraintDictionary $constraint_dictionary, Refinery $refinery)
getInputInCondition(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot)
withAdditionalTransformation(Transformation $trafo)
Apply a transformation to the content of the input.
rawInput(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot=SlotIdentifier::NULL)
__construct(Container $dic, ilPlugin $plugin)
getInput(ElementInterface $element, ElementInterface $context_element)
This describes inputs that can be used in forms.
Definition: FormInput.php:32