Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Configuration
The folder EXT:
may contain
configuration of different types.
Some of the sub directories in here have reserved names with special meanings.
All files in this directory and in the sub directories TCA
and :
file:Backend
are automatically included during the TYPO3 bootstrap.
The following files and folders are commonly found in the Configuration
folder:
$ tree public/typo3conf/ext/my_extension/Configuration/
├── Backend
│ ├── AjaxRoutes.php
│ └── Routes.php
├── Extbase
│ └── Persistence
│ └── Classes.php
├── FlexForms
│ ├── MyFlexForm1.xml
│ ├── ...
│ └── MyFlexFormN.xml
├── RTE
│ └── MyRteConfig.yaml
├── TCA
│ ├── Overrides
│ │ ├── pages.php
│ │ ├── sys_template.php
│ │ ├── tt_content.php
│ │ ├── ...
│ │ └── tx_otherextension_sometable.php
│ ├── tx_myextension_domain_model_something.php
│ ├── ...
│ └── tx_myextension_sometable.php
├── TsConfig
│ ├── Page
│ └── User
├── TypoScript
│ ├── Subfolder1
│ ├── ...
│ ├── constants.typoscript
│ └── setup.typoscript
├── Yaml
│ ├── MySpecialConfig.yaml
│ └── MyFormSetup.yaml
├── Icons.php
├── page.tsconfig
├── RequestMiddlewares.php
└── Services.yaml
Sub folders of Configuration
Files directly under Configuration