DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Extend FlexForm

Following fields of the plugin configuration may be extended without overriding the complete FlexForm configuration.

Additional Template Layouts

By default this extension provides two different “layouts” available in a drop-down list:

Template Layout of the plugin

If you need other options, you may register them easily using following code:

$GLOBALS['TYPO3_CONF_VARS']['EXT']['file_list']['templateLayouts'][] = [
    'my label',
    'my value'
];

You can then access the variable in your template with {settings.templateLayout} and use it for a condition or whatever.