Site settings editor
Use the editor to review and override defined settings for each site.
The editor changes only the site's override layer in
config/. It does not modify the definition,
the reusable defaults or settings. files provided by sets. This
allows an extension to update its defaults while each site retains only the
values that were intentionally customized.
On this page
Edit site settings
Open Sites > Setup > Settings to see all sites with editable site settings:
Click the cog button "Edit site settings" to edit the settings
The settings editor displays the settings of all site sets included in the current site, including their dependencies. The site sets can define categories and subcategories to order the settings.
The site in the examples includes the "My Sitepackage" and "Blog Example" sets. "My Sitepackage" depends on "Fluid Styled Content"
The editor displays only settings defined by an active set, for example in
EXT:my_sitepackage/Configuration/Sets/MySitepackage/settings.definitions.yaml.
See Site settings definitions.
Settings that have been made directly in the settings. file without a
corresponding entry in a settings. are not displayed in
the editor as they have neither a type nor a label. These values are, however,
retained for backward compatibility when the editor writes to the
settings. file. They are not part of the supported configuration
contract described in Site settings.
Configuring the site settings editor
The editor has no separate field configuration. TYPO3 generates it entirely from site setting definitions: categories and labels organize the form, the type selects the field and validates the submitted value, and the default supplies the value when no override exists.
The following annotated editor view shows how each part of a definition appears:
Markers 1 to 7 show how the definition controls the editor
- Main category: The
labelof a top-level category becomes a heading in the editor and an entry in its navigation. - Subcategory: The
parentproperty places one category below another. A setting'scategoryproperty assigns the field to that category. - Label: The setting's
labelbecomes the field label. It can be written directly in the definition or loaded from alabels.file.xlf - Description: The optional
descriptionis displayed below the label. It can also be translated throughlabels..xlf - Setting identifier: The key below
settingsis the exact identifier used insettings.and when the setting is read. The editor displays it in advanced mode.yaml - Type: The
typeselects the form control and validates and converts the submitted value. See definition types. - Displayed value: The field contains the effective value. In this
example no set or site overrides
blog, so TYPO3 displays the definition'sExample. partial Root Path defaultvalue. -
Reset value: Resetting a field discards its site-specific override and restores the inherited value. This is the value supplied by an active set, or the definition's
defaultwhen no set overrides it. See How a setting value is resolved for the complete resolution order.
Reset the setting to the inherited value (8)
The corresponding definition is:
categories:
BlogExample:
label: 'Blog Example' # (1)
BlogExample.templates:
label: 'Templates' # (2)
parent: BlogExample
BlogExample.pages:
label: 'Pages'
parent: BlogExample
settings:
blogExample.templateRootPath: # (5)
label: 'Templates' # (3)
category: BlogExample.templates # (2)
description: 'Path to template root' # (4)
type: string # (6)
default: 'EXT:blog_example/Resources/Private/Templates/' # (8), unless overridden by a set
blogExample.partialRootPath:
label: 'Partials'
category: BlogExample.templates
description: 'Path to partial root'
type: string
default: 'EXT:blog_example/Resources/Private/Partials/' # (7)
See the complete example at settings.definitions.yaml (GitHub).