The Related Entries Generator creates a listing for related entries.
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;
}
}