I would like to output the data, from table tt_address
in the database in an array and use it in my FluidStyledContent element. However, I only get an array with null.
in my setup.typoscript
file in the Data Processing part i use this code
30 {
table = tt_address
as = myrecords
dataProcessing {
10 = TYPO3\CMS\Frontend\DataProcessing\FilesProcessor
10 {
references.fieldName = image
}
}
}
It works with the table tt_content
but not tt_address
.
I try to create an array with all records that are stored under tt_adress
.
Do I have to adjust anything for this?