Overriding templates
EXT:picturecredits is using Fluid as template engine.
This documentation won't bring you all information about Fluid but only the most important things you need for using it. You can get more information in the section Fluid templates of the Sitepackage tutorial. A complete reference of Fluid ViewHelpers provided by TYPO3 can be found in the ViewHelper Reference
Change the templates using TypoScript constants
As any Extbase based extension, you can find the templates in the directory
Resources/
.
If you want to change a template, copy the desired files to the directory where you store your custom templates.
We suggest that you use a sitepackage extension. Learn how to Create a sitepackage extension.
plugin.tx_picturecredits {
view {
templateRootPath = EXT:picturecredits/Resources/Private/Templates/
partialRootPath = EXT:picturecredits/Resources/Private/Partials/
layoutRootPath = EXT:picturecredits/Resources/Private/Layouts/
}
}
Copied!