‪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, $propertyCollectionName, $propertyCollectionIndex, $propertyCollectionEditorIndex] = $matches;
35 
36  $propertyPath = ‪ArrayUtility::getValueByPath(
37  $this->extractorDto->getPrototypeConfiguration(),
38  implode(
39  '.',
40  [
41  'formElementsDefinition',
42  $formElementType,
43  'formEditor',
44  'propertyCollections',
45  $propertyCollectionName,
46  $propertyCollectionIndex,
47  'editors',
48  $propertyCollectionEditorIndex,
49  'propertyPath',
50  ]
51  ),
52  '.'
53  );
54 
55  $propertyCollectionElementIdentifier = ‪ArrayUtility::getValueByPath(
56  $this->extractorDto->getPrototypeConfiguration(),
57  implode(
58  '.',
59  [
60  'formElementsDefinition',
61  $formElementType,
62  'formEditor',
63  'propertyCollections',
64  $propertyCollectionName,
65  $propertyCollectionIndex,
66  'identifier'
67  ]
68  ),
69  '.'
70  );
71 
72  $propertyCollectionName = str_replace('Definition', '', $propertyCollectionName);
73 
74  $result = $this->extractorDto->getResult();
75  $result['collections'][$propertyCollectionName][$propertyCollectionElementIdentifier]['selectOptions'][$propertyPath][] = $value;
76  $this->extractorDto->setResult($result);
77  }
78 }
‪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\PropertyCollectionElement
Definition: IsCreatablePropertyCollectionElementExtractor.php:3
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\PropertyCollectionElement\SelectOptionsExtractor
Definition: SelectOptionsExtractor.php:25
‪TYPO3\CMS\Core\Utility\ArrayUtility
Definition: ArrayUtility.php:23
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\PropertyCollectionElement\SelectOptionsExtractor\__invoke
‪__invoke(string $_, $value, array $matches)
Definition: SelectOptionsExtractor.php:32