[TYPO3-english] Configuration for a custom EXT and his plugins
Stefan Reichelt
eichelt at web.de
Wed Dec 4 18:42:56 CET 2013
Hellio Simone,
On 04.12.2013 18:21, Simone Paolinelli wrote:
> How can I set a set of common parameter which can be used by all plugin
> of extension?
You could make another TypoScript array containing the shared properties
and then copy it into all three plugins, fe:
plugin.tx_myext_base {
key1 = value1
}
plugin.tx_myext_pi1 < plugin.tx_myext_base
plugin.tx_myext_pi2 < plugin.tx_myext_base
plugin.tx_myext_pi3 < plugin.tx_myext_base
Additionally instead of copying the base with '<', you could reference
it with '=<'.That way later on, fe. in some pages template, changes to
the base cann still be applied to all three plugins. But unless needed
or required, copying should be prefereable as far as I remember.
Kind regards
Stefan
More information about the TYPO3-english
mailing list