feat: content element for faq overview grouped by categories

addresses #869b064ah
This commit is contained in:
Björn Fromme
2026-06-23 18:42:01 +02:00
parent e0b43a7a38
commit 561883f74a
6 changed files with 139 additions and 7 deletions
@@ -0,0 +1,17 @@
tt_content.faq_overview =< lib.contentElement
tt_content.faq_overview {
templateName = FaqOverview
settings {
infoPageUid = {$plugin.tx_eptheme.settings.infoPageUid}
}
dataProcessing {
10 = TYPO3\CMS\Frontend\DataProcessing\DatabaseQueryProcessor
10 {
table = tx_epproducts_domain_model_faq
where = category != ''
orderBy = category ASC, uid ASC
pidInList = {$plugin.tx_epproducts.settings.faqsStoragePid}
as = faqs
}
}
}