‪TYPO3CMS  10.4
SelectOptionsExtractor.php
Go to the documentation of this file.
1 <?php
2 
3 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 
19 
22 
27 {
28 
34  public function ‪__invoke(string $_, $value, array $matches)
35  {
36  [, $formElementType, $formEditorIndex] = $matches;
37 
38  $templateName = ‪ArrayUtility::getValueByPath(
39  $this->extractorDto->getPrototypeConfiguration(),
40  implode(
41  '.',
42  [
43  'formElementsDefinition',
44  $formElementType,
45  'formEditor',
46  'editors',
47  $formEditorIndex,
48  'templateName',
49  ]
50  ),
51  '.'
52  );
53 
54  if ($templateName === 'Inspector-FinishersEditor') {
55  $propertyPath = '_finishers';
56  } elseif ($templateName === 'Inspector-ValidatorsEditor') {
57  $propertyPath = '_validators';
58  } else {
59  if ($templateName === 'Inspector-RequiredValidatorEditor') {
60  $propertyPath = implode(
61  '.',
62  [
63  'formElementsDefinition',
64  $formElementType,
65  'formEditor',
66  'editors',
67  $formEditorIndex,
68  'configurationOptions',
69  'validationErrorMessage',
70  'propertyPath',
71  ]
72  );
73  } else {
74  $propertyPath = implode(
75  '.',
76  [
77  'formElementsDefinition',
78  $formElementType,
79  'formEditor',
80  'editors',
81  $formEditorIndex,
82  'propertyPath',
83  ]
84  );
85  }
86 
87  $propertyPath = ‪ArrayUtility::getValueByPath(
88  $this->extractorDto->getPrototypeConfiguration(),
89  $propertyPath,
90  '.'
91  );
92  }
93 
94  $result = $this->extractorDto->getResult();
95  $result['formElements'][$formElementType]['selectOptions'][$propertyPath][] = $value;
96  $this->extractorDto->setResult($result);
97  }
98 }
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\SelectOptionsExtractor\__invoke
‪__invoke(string $_, $value, array $matches)
Definition: SelectOptionsExtractor.php:34
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\AbstractExtractor
Definition: AbstractExtractor.php:24
‪TYPO3\CMS\Core\Utility\ArrayUtility\getValueByPath
‪static mixed getValueByPath(array $array, $path, $delimiter='/')
Definition: ArrayUtility.php:180
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement
Definition: IsCreatableFormElementExtractor.php:18
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\SelectOptionsExtractor
Definition: SelectOptionsExtractor.php:27
‪TYPO3\CMS\Core\Utility\ArrayUtility
Definition: ArrayUtility.php:24