‪TYPO3CMS  11.5
IsCreatableFormElementExtractor.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 {
33  public function ‪__invoke(string $_, $value, array $matches)
34  {
35  [, $formElementType] = $matches;
36 
37  $formElementGroup = $value;
38 
39  $result = $this->extractorDto->getResult();
40 
42  $this->extractorDto->getPrototypeConfiguration(),
43  'formElementsDefinition.' . $formElementType . '.formEditor.groupSorting',
44  '.'
45  )) {
46  $result['formElements'][$formElementType]['creatable'] = false;
47  $this->extractorDto->setResult($result);
48  return;
49  }
50 
51  $formElementGroups = array_keys(
52  ‪ArrayUtility::getValueByPath($this->extractorDto->getPrototypeConfiguration(), 'formEditor.formElementGroups', '.')
53  );
54 
55  $result['formElements'][$formElementType]['creatable'] = in_array(
56  $formElementGroup,
57  $formElementGroups,
58  true
59  );
60 
61  $this->extractorDto->setResult($result);
62  }
63 }
‪TYPO3\CMS\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\IsCreatableFormElementExtractor\__invoke
‪__invoke(string $_, $value, array $matches)
Definition: IsCreatableFormElementExtractor.php:33
‪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\Form\Domain\Configuration\FrameworkConfiguration\Extractors\FormElement\IsCreatableFormElementExtractor
Definition: IsCreatableFormElementExtractor.php:27
‪TYPO3\CMS\Core\Utility\ArrayUtility
Definition: ArrayUtility.php:24