Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 714 Bytes

12_RelatedEntriesGenerator.md

File metadata and controls

31 lines (24 loc) · 714 Bytes

Related Entries Generator

The Related Entries Generator creates a listing for related entries.

Create a custom Generator

Just override the build in generator:

news:
    relations:
        NewsBundle\Generator\RelatedEntriesGenerator: AppBundle\Generator\AppRelatedEntriesGenerator

And set up your new class:

<?php

namespace AppBundle\Generator;

use NewsBundle\Model\EntryInterface;
use NewsBundle\Generator\RelatedEntriesGenerator;

class AppRelatedEntriesGenerator extends RelatedEntriesGenerator
{
public function generateRelatedEntries(EntryInterface $news, $params = [])
    {
        $listing = parent::generateRelatedEntries($news, $params);
        return $listing;
    }
}