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.

TypoScript

CONSTANTS

Constants Editor

All constants are present in the constants editor

SETUP

The whole output is generated by TypoScript. You can find it by the TypoScript path "plugin.tx_lpiframef4x.renderObj".

All flexform values are available in the data-array. You can call them with "field = fieldName", "data = field:fieldName" or "{field:fieldName}" in TypoScript.

plugin.tx_lpiframef4x {
        renderObj = COA
        renderObj {
                wrap = <div class="tx-lpiframe-pi1">|</div>
                10 = COA
                10 {
                        wrap = <iframe|>

                        # Src
                        10 = TEXT
                        10 {
                                noTrimWrap = | src="|"|
                                value = {$plugin.tx_lpiframef4x.settings.attributes.src}
                                override.field = src
                                required = 1
                        }

                        ...