‪TYPO3CMS  ‪main
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 {
31  public function ‪__invoke(string $_, $value, array $matches)
32  {
33  [, $formElementType, $formEditorIndex] = $matches;
34 
35  if (
36  $value !== 'Inspector-PropertyGridEditor'
37  && $value !== 'Inspector-MultiSelectEditor'
38  && $value !== 'Inspector-CountrySelectEditor'
39  && $value !== 'Inspector-ValidationErrorMessageEditor'
40  && $value !== 'Inspector-RequiredValidatorEditor'
41  ) {
42  return;
43  }
44 
45  if ($value === 'Inspector-RequiredValidatorEditor') {
46  $propertyPath = implode(
47  '.',
48  [
49  'formElementsDefinition',
50  $formElementType,
51  'formEditor',
52  'editors',
53  $formEditorIndex,
54  'configurationOptions',
55  'validationErrorMessage',
56  'propertyPath',
57  ]
58  );
59  } else {
60  $propertyPath = implode(
61  '.',
62  [
63  'formElementsDefinition',
64  $formElementType,
65  'formEditor',
66  'editors',
67  $formEditorIndex,
68  'propertyPath',
69  ]
70  );
71  }
72 
73  $result = $this->extractorDto->getResult();
74 
75  if (‪ArrayUtility::isValidPath($this->extractorDto->getPrototypeConfiguration(), $propertyPath, '.')) {
76  $result['formElements'][$formElementType]['multiValueProperties'][] = ‪ArrayUtility::getValueByPath(
77  $this->extractorDto->getPrototypeConfiguration(),
78  $propertyPath,
79  '.'
80  );
81  }
82 
83  if ($value === 'Inspector-PropertyGridEditor') {
84  $result['formElements'][$formElementType]['multiValueProperties'][] = 'defaultValue';
85  }
86 
87  $this->extractorDto->setResult($result);
88  }
89 }
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\MultiValuePropertiesExtractor
Definition: MultiValuePropertiesExtractor.php:27
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\AbstractExtractor
Definition: AbstractExtractor.php:24
‪TYPO3\CMS\Core\Utility\ArrayUtility\isValidPath
‪static bool isValidPath(array $array, array|string $path, string $delimiter='/')
Definition: ArrayUtility.php:141
‪TYPO3\CMS\Core\Utility\ArrayUtility\getValueByPath
‪static getValueByPath(array $array, array|string $path, string $delimiter='/')
Definition: ArrayUtility.php:176
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement
Definition: IsCreatableFormElementExtractor.php:18
‪TYPO3\CMS\Core\Utility\ArrayUtility
Definition: ArrayUtility.php:26
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\MultiValuePropertiesExtractor\__invoke
‪__invoke(string $_, $value, array $matches)
Definition: MultiValuePropertiesExtractor.php:31