Attention
TYPO3 v12 has reached end-of-life as of April 30th 2026 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 v12 here: TYPO3 ELTS.
options
Various options for the page affecting the Core at various points.
Properties
backendLayout.exclude
backendLayout.exclude
-
- Type
- list of identifiers / uids
Exclude a list of backend layouts from being selectable when assigning a backend layout to a page record.
Use the uid/identifier of the record in the default data provider.
Example: Exclude two backend layouts from drop down selector
Before: Two backend layout records shown in list module
# Exclude two backend layouts from drop down selector
options.backendLayout.exclude = 1,2
After: Drop down without backend layouts
defaultUploadFolder
New in version 12.3
defaultUploadFolder
-
- Type
- string
Identical to the user TSconfig setting options.defaultUploadFolder, this allows the setting of a default upload folder per page.
If specified and the given folder exists, this setting will override the value defined in user TSconfig.
The syntax is "storage_uid:file_path".
Example: Set default upload
# Set default upload folder to "fileadmin/page_upload" on PID 1
[traverse(page, "uid") == 1]
options.defaultUploadFolder = 1:/page_upload/
[END]