Attention

TYPO3 v9 has reached its end-of-life September 30th, 2021 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

You can order Extended Long Term Support (ELTS) here: TYPO3 ELTS.

Using Site Config in Conditions

Site configuration may be used in all conditions that use Symfony Expression language Typo3ConditionFunctionsProvider - at the moment this means in EXT:form variants and TypoScript conditions.

Two objects are available: site and siteLanguage. With site you can access the properties of the top level site configuration. siteLanguage accesses the configuration of the current site language.

TypoScript Examples

The identifier of the site name is evaluated:

[site("identifier") == "someIdentifier"]
    page.30.value = foo
[global]

Property of the current site language is evaluated:

[siteLanguage("locale") == "de_CH.UTF-8"]
    page.40.value = bar
[global]

EXT:form Examples

Translate options via siteLanguage condition:

renderables:
-
    type: Page
    identifier: page-1
    label: DE
    renderingOptions:
    previousButtonLabel: 'zurück'
    nextButtonLabel: 'weiter'
    variants:
    -
        identifier: language-variant-1
        condition: 'siteLanguage("locale") == en_US.UTF-8'
        label: EN
        renderingOptions:
        previousButtonLabel: 'Previous step'
        nextButtonLabel: 'Next step'