6. Configuration

There are many different ways and places in TYPO3 for configuration. We will cover the different places and types of configuration, including when to use a certain way.

By following the API you also make sure modern approaches like configuration loaders will work with your extensions.

6.1. Places of configuration

The following places exist to configure a TYPO3 Extensions:

6.1.1. PHP

PHP via LocalConfiguration.php and AdditionalConfiguration.php.

Some extensions allow to place configuration in custom files, e.g. EXT:realurl. I would call that a bad practice as you have arbitrary places to check for certain configurations.

Instead use existing places like the two mentioned files above. This is done by either using:

return [
    'EXTCONF' => [
        'extkey' => [
            // options
        ],
    ],
];

This way you can access the configuration via $GLOBALS['EXTCONF']['extkey'].

Or by providing a ext_conf_template.txt in the root of your Extension. The content is TypoScript as documented at Configuration options. Afterwards you can access the options through an API.

6.1.2. TypoScript

TypoScript and Flexforms are merged by Extbase, so you do not have to do any additional work and combine both. They are available as Variable {settings} in all templates. Also inside the Controller they are available as array in $this->settings out of the box.

Task

Add some settings and print them in template and controller.

The configuration via TypoScript has to be located at a specific path:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// For all frontend plugins of the extension
plugin {
    tx_exampleextension {
        settings {
            // The configuration goes here
        }
    }
}

// For a specific frontend plugin of the extension
plugin {
    tx_exampleextension_addresspluginkey {
        settings {
            // The configuration goes here
        }
    }
}

// For Backend Modules
module {
    tx_exampleextension {
        settings {
            // The configuration goes here
        }
    }
}

Extbase itself already has some configuration options available via TypoScript, some are mentioned at TypoScript Configuration section of Extbase book.

Tip

The whole settings array is passed into all templates, layouts and partials. This way it’s possible for integrators to provide arbitary information.

E.g. introduce a new namespace codappix with project specific settings:

plugin {
    tx_exampleextension {
        settings {
            codappix {
                pageUids {
                    detail = {$pageUids.exampleextension.detail}
                }
            }
        }
    }
}

Also it’s possible to insert a plugin via TypoScript. In that case the settings can be provided only for that instance:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
lib.instance = USER
lib.instance {
    userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
    extensionName = ExampleExtension
    pluginName = pluginkey
    vendorName = Workshop
    settings {
        testKey = testValue
    }
}

6.1.3. Flexforms

Flexforms are like TCA, which will be covered at TCA section of Custom records. The format is XML instead of PHP and saved inside the database field pi_flexform of the tt_content record. This way editors are able to adjust provided settings within a plugin record.

6.1.4. Custom

Do whatever you want, e.g. use yaml or TypoScript by calling the parser for contents from anywhere.

6.2. When to use which

The Flexform approach provides the best UX as it uses the known UI of TYPO3 inside a record. It should be used if the setting is plugin instance related.

The TypoScript provided the best UX when integrators have to deploy configuration or configuration is necessary on multiple pages. Also if the plugin is inserted directly via TypoScript.

The PHP approach is best suited for instance wide configuration, which nearly never exists. Things like API Keys might depend on the current Domain or Website, and there can be multiple in a single TYPO3 instance.

6.3. Adding Content Wizard for our Plugin

So far we do not have any configuration. But we can use PageTSConfig to make live easier for editors.

Right now an editor has to insert a new “Insert Plugin” content record and choose our plugin. We can provide a Configuration to make our Plugin available via the “Create new content element” wizard.

Task

Add the new Plugin to content element wizard.

Within ext_localconf.php we add the following:

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig('
    mod {
        wizards {
            newContentElement {
                wizardItems {
                    plugins {
                        elements {
                            exampleElement {
                                iconIdentifier = content-coffee
                                title = Example title
                                description = Example Description
                                tt_content_defValues {
                                    CType = list
                                    list_type = exampleextension_pluginkey
                                }
                            }
                        }
                    }
                }
            }
        }
    }
');

This will add the given PageTS as default to global configuration. Within the TS we define a new element exampleElement with icon, title and description. The important part is, that we can define default values (defValues) for the creation. This way we can pre select the plugin.

See: https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/Mod.html#wizards

Available TYPO3 Icons can be found here: https://typo3.github.io/TYPO3.Icons/

6.4. Adjusting view paths

In Views we covered the conventions for paths. However sometimes you need to change these paths. E.g. if you exchange a Partial or template.

This can be done via TypoScript, the same way as for FLUIDTEMPLATE cObject:

1
2
3
4
5
6
7
8
9
plugin {
    tx_exampleextension {
        view {
            templateRootPaths {
                10 = EXT:sitepackage/Resources/Plugins/ExampleExtension/Templates/
            }
        }
    }
}

See: https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Fluidtemplate/Index.html