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