‪TYPO3CMS  10.4
MultiValuePropertiesExtractor.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, $propertyCollectionName, $propertyCollectionIndex, $propertyCollectionEditorIndex] = $matches;
37 
38  if (
39  $value !== 'Inspector-PropertyGridEditor'
40  && $value !== 'Inspector-MultiSelectEditor'
41  && $value !== 'Inspector-ValidationErrorMessageEditor'
42  ) {
43  return;
44  }
45 
46  $propertyPath = implode(
47  '.',
48  [
49  'formElementsDefinition',
50  $formElementType,
51  'formEditor',
52  'propertyCollections',
53  $propertyCollectionName,
54  $propertyCollectionIndex,
55  'editors',
56  $propertyCollectionEditorIndex,
57  'propertyPath',
58  ]
59  );
60  $propertyValue = ‪ArrayUtility::getValueByPath($this->extractorDto->getPrototypeConfiguration(), $propertyPath, '.');
61 
62  $result = $this->extractorDto->getResult();
63 
64  if (
65  $value === 'Inspector-PropertyGridEditor'
66  || $value === 'Inspector-MultiSelectEditor'
67  ) {
68  $identifierPath = implode(
69  '.',
70  [
71  'formElementsDefinition',
72  $formElementType,
73  'formEditor',
74  'propertyCollections',
75  $propertyCollectionName,
76  $propertyCollectionIndex,
77  'identifier',
78  ]
79  );
80  $identifier = ‪ArrayUtility::getValueByPath($this->extractorDto->getPrototypeConfiguration(), $identifierPath, '.');
81 
82  $result['formElements'][$formElementType]['collections'][$propertyCollectionName][$identifier]['multiValueProperties'][] = $propertyValue;
83  if ($value === 'Inspector-PropertyGridEditor') {
84  $result['formElements'][$formElementType]['collections'][$propertyCollectionName][$identifier]['multiValueProperties'][] = 'defaultValue';
85  }
86  } else {
87  $result['formElements'][$formElementType]['multiValueProperties'][] = $propertyValue;
88  }
89 
90  $this->extractorDto->setResult($result);
91  }
92 }
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\PropertyCollectionElement\MultiValuePropertiesExtractor
Definition: MultiValuePropertiesExtractor.php:27
‪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\PropertyCollectionElement
Definition: IsCreatablePropertyCollectionElementExtractor.php:18
‪TYPO3\CMS\Core\Utility\ArrayUtility
Definition: ArrayUtility.php:24
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\PropertyCollectionElement\MultiValuePropertiesExtractor\__invoke
‪__invoke(string $_, $value, array $matches)
Definition: MultiValuePropertiesExtractor.php:34