View

Name Type
array of path
array of path

templateRootPaths

templateRootPaths
Type
array of path

This defines in which path the templates are stored. This is needed to modify the template without modifying files in the extension.

EXT:my_extension/Configuration/TypoScript/setup.typoscript
plugin.tx_storefinder.view {
    templateRootPaths {
        100 = EXT:my_extension/Resources/Private/Templates/StoreFinder
    }
}
Copied!

partialRootPaths

partialRootPaths
Type
array of path

This defines in which path the partials are stored. This is needed to modify the partials without modifying files in the extension.

EXT:my_extension/Configuration/TypoScript/setup.typoscript
plugin.tx_storefinder.view {
    partialRootPaths {
        100 = EXT:my_extension/Resources/Private/Partials/StoreFinder
    }
}
Copied!