Attention

TYPO3 v10 has reached end-of-life as of April 30th 2023 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 v10 here: TYPO3 ELTS.

Symfony Expression Language

Symfony Expression Language is used by TYPO3 in certain places. These are documented in below sections, together with explanations how they can be extended:

Within TypoScript Conditions

In order to provide custom conditions, its essential to understand how conditions are written. Refer to The syntax of conditions if syntax of conditions is not known yet.

Conditions are evaluated by the Symfony Expression Language and are evaluated to boolean results. Therefore an integrator can write [true === true] which would evaluate to true. In order to provide further functionality within conditions, the Symfony Expression Language needs to be extended. There are two parts that can be added to the language, which are variables and functions.

The following section explain how to add variables and functions.

Registering new Provider within Extension

There has to be a provider, no matter whether variables or functions should be provided.

The provider is registered within /Configuration/ExpressionLanguage.php:

<?php
return [
    'typoscript' => [
        \Vendor\ExtensionName\ExpressionLanguage\CustomTypoScriptConditionProvider::class,
    ]
];

This will register the defined class as provider within context typoscript.

Implement Provider within Extension

The provider itself is written as PHP Class within /Classes/ExpressionLanguage/CustomTypoScriptConditionProvider.php, depending on registered class name:

<?php

namespace Vendor\ExtensionName\ExpressionLanguage;

use TYPO3\CMS\Core\ExpressionLanguage\AbstractProvider;

class CustomTypoScriptConditionProvider extends AbstractProvider
{
    public function __construct()
    {
    }
}

Additional variables

Additional variables can already be provided within the CustomTypoScriptConditionProvider PHP class:

class CustomTypoScriptConditionProvider extends AbstractProvider
{
    public function __construct()
    {
        $this->expressionLanguageVariables = [
            'variableA' => 'valueB',
        ];
    }
}

In above example a new variable variableA with value valueB is added, this can be used within Conditions:

[variableA === 'valueB']
    page >
    page = PAGE
    page.10 = TEXT
    page.10.value = Matched
[GLOBAL]

Additional functions

Additional functions can be provided through another class, which has to be returned by CustomTypoScriptConditionProvider PHP class:

class CustomTypoScriptConditionProvider extends AbstractProvider
{
    public function __construct()
    {
        $this->expressionLanguageProviders = [
            CustomConditionFunctionsProvider::class,
        ];
    }
}

The returned class looks like the following:

<?php

namespace Vendor\ExtensionName\TypoScript;

use Symfony\Component\ExpressionLanguage\ExpressionFunction;
use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;

class CustomConditionFunctionsProvider implements ExpressionFunctionProviderInterface
{
    public function getFunctions()
    {
        return [
            $this->getWebserviceFunction(),
        ];
    }

    protected function getWebserviceFunction(): ExpressionFunction
    {
        // TODO: Implement
    }
}

The class is already trying to return a new ExpressionFunction, but currently lacks implementation. That's the last step:

protected function getWebserviceFunction(): ExpressionFunction
{
    return new ExpressionFunction('webservice', function () {
        // Not implemented, we only use the evaluator
    }, function ($existingVariables, $endpoint, $uid) {
        return GeneralUtility::getUrl(
            'https://example.org/endpoint/'
            . $endpoint
            .  '/'
            . $uid
        );
    });
}

The first argument $existingVariables always provides all registered variables to the function. All further arguments need to be provided by TypoScript. The above example could look like:

[webservice('pages', 10)]
    page.10 >
    page.10 = TEXT
    page.10.value = Matched
[GLOBAL]

In case a simple string like a title is returned this can be further checked:

[webservice('pages', 10) === 'Expected title']
    page.10 >
    page.10 = TEXT
    page.10.value = Matched
[GLOBAL]

Further information about ExpressionFunction can be found within Symfony Expression Language - Registering Functions