Attention
TYPO3 v12 has reached end-of-life as of April 30th 2026 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v12 here: TYPO3 ELTS.
Custom data processors
Implementing a custom data processor is out of scope in this reference. You can find information on the implementation in TYPO3 Explained.
Custom data processors can be used in TypoScript just like any other data processor:
EXT:examples/Configuration/TypoScript/DataProcessors/Processors/CustomCategoryProcessor.typoscript
tt_content {
examples_dataproccustom =< lib.contentElement
examples_dataproccustom {
templateName = DataProcCustom
# Before TYPO3 v12.1 you have to give the fully-qualified class name of the processor
# dataProcessing.10 = T3docs\Examples\DataProcessing\CustomCategoryProcessor
# Since TYPO3 v12.1 one can also use a (in Services.yaml) configured alias
dataProcessing.10 = custom-category
dataProcessing.10 {
as = categories
categoryList.field = categories
}
}
}
Copied!
The available configuration depends on the implementation of the specific custom data processor, of course.
Example output