AddNewsToMenuProcessor

New in version 7.2.0

With version 7.2 a new data processor, AddNewsToMenuProcessor has been added which is useful for detail pages to add the news record as fake menu entry.

This data processor can be used to add the currently displayed news record to a pages breadcrumb.

Usage

10 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor
10 {
    as = breadcrumbMenu
    special = rootline
    # [...] further configuration
}
20 = GeorgRinger\News\DataProcessing\AddNewsToMenuProcessor
20.menus = breadcrumbMenu,specialMenu
Copied!

The property menus is a comma-separated list of MenuProcessors that shall have the currently displayed news record attached as fake menu entry.

Examples

See Tutorial: Breadcrumb based on data processing and Fluid.