‪TYPO3CMS  ‪main
BeforeFlexFormConfigurationOverrideEvent.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 
28 {
29  public function ‪__construct(
30  protected readonly array $frameworkConfiguration,
31  protected readonly array $originalFlexFormConfiguration,
32  protected array $flexFormConfiguration
33  ) {}
34 
35  public function ‪getFrameworkConfiguration(): array
36  {
37  return $this->frameworkConfiguration;
38  }
39 
40  public function ‪getOriginalFlexFormConfiguration(): array
41  {
42  return $this->originalFlexFormConfiguration;
43  }
44 
45  public function ‪getFlexFormConfiguration(): array
46  {
47  return $this->flexFormConfiguration;
48  }
49 
50  public function ‪setFlexFormConfiguration(array $flexFormConfiguration): void
51  {
52  $this->flexFormConfiguration = $flexFormConfiguration;
53  }
54 }
‪TYPO3\CMS\Extbase\Event\Configuration\BeforeFlexFormConfigurationOverrideEvent\getFrameworkConfiguration
‪getFrameworkConfiguration()
Definition: BeforeFlexFormConfigurationOverrideEvent.php:35
‪TYPO3\CMS\Extbase\Event\Configuration\BeforeFlexFormConfigurationOverrideEvent\__construct
‪__construct(protected readonly array $frameworkConfiguration, protected readonly array $originalFlexFormConfiguration, protected array $flexFormConfiguration)
Definition: BeforeFlexFormConfigurationOverrideEvent.php:29
‪TYPO3\CMS\Extbase\Event\Configuration\BeforeFlexFormConfigurationOverrideEvent\setFlexFormConfiguration
‪setFlexFormConfiguration(array $flexFormConfiguration)
Definition: BeforeFlexFormConfigurationOverrideEvent.php:50
‪TYPO3\CMS\Extbase\Event\Configuration
Definition: BeforeFlexFormConfigurationOverrideEvent.php:18
‪TYPO3\CMS\Extbase\Event\Configuration\BeforeFlexFormConfigurationOverrideEvent\getOriginalFlexFormConfiguration
‪getOriginalFlexFormConfiguration()
Definition: BeforeFlexFormConfigurationOverrideEvent.php:40
‪TYPO3\CMS\Extbase\Event\Configuration\BeforeFlexFormConfigurationOverrideEvent
Definition: BeforeFlexFormConfigurationOverrideEvent.php:28
‪TYPO3\CMS\Extbase\Event\Configuration\BeforeFlexFormConfigurationOverrideEvent\getFlexFormConfiguration
‪getFlexFormConfiguration()
Definition: BeforeFlexFormConfigurationOverrideEvent.php:45