‪TYPO3CMS  9.5
SelectOptionsExtractor.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
20 
25 {
26 
32  public function ‪__invoke(string $_, $value, array $matches)
33  {
34  [, $formElementType, $formEditorIndex] = $matches;
35 
36  $templateName = ‪ArrayUtility::getValueByPath(
37  $this->extractorDto->getPrototypeConfiguration(),
38  implode(
39  '.',
40  [
41  'formElementsDefinition',
42  $formElementType,
43  'formEditor',
44  'editors',
45  $formEditorIndex,
46  'templateName',
47  ]
48  ),
49  '.'
50  );
51 
52  if ($templateName === 'Inspector-FinishersEditor') {
53  $propertyPath = '_finishers';
54  } elseif ($templateName === 'Inspector-ValidatorsEditor') {
55  $propertyPath = '_validators';
56  } else {
57  if ($templateName === 'Inspector-RequiredValidatorEditor') {
58  $propertyPath = implode(
59  '.',
60  [
61  'formElementsDefinition',
62  $formElementType,
63  'formEditor',
64  'editors',
65  $formEditorIndex,
66  'configurationOptions',
67  'validationErrorMessage',
68  'propertyPath',
69  ]
70  );
71  } else {
72  $propertyPath = implode(
73  '.',
74  [
75  'formElementsDefinition',
76  $formElementType,
77  'formEditor',
78  'editors',
79  $formEditorIndex,
80  'propertyPath',
81  ]
82  );
83  }
84 
85  $propertyPath = ‪ArrayUtility::getValueByPath(
86  $this->extractorDto->getPrototypeConfiguration(),
87  $propertyPath,
88  '.'
89  );
90  }
91 
92  $result = $this->extractorDto->getResult();
93  $result['formElements'][$formElementType]['selectOptions'][$propertyPath][] = $value;
94  $this->extractorDto->setResult($result);
95  }
96 }
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\SelectOptionsExtractor\__invoke
‪__invoke(string $_, $value, array $matches)
Definition: SelectOptionsExtractor.php:32
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\AbstractExtractor
Definition: AbstractExtractor.php:22
‪TYPO3\CMS\Core\Utility\ArrayUtility\getValueByPath
‪static mixed getValueByPath(array $array, $path, $delimiter='/')
Definition: ArrayUtility.php:179
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement
Definition: IsCreatableFormElementExtractor.php:3
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\SelectOptionsExtractor
Definition: SelectOptionsExtractor.php:25
‪TYPO3\CMS\Core\Utility\ArrayUtility
Definition: ArrayUtility.php:23