deblan.tv/src/Deblan/Bundle/BlogBundle/Page/PostRssPage.php
2015-03-02 21:57:49 +01:00

17 lines
384 B
PHP

<?php
namespace Deblan\Bundle\BlogBundle\Page;
class PostRssPage extends HomePage
{
public function __construct($template = 'DeblanBlogBundle:Default:postRss.html.twig')
{
parent::__construct($template);
}
public function getConfiguration()
{
return $this->configuration->setDataModel('\Deblan\Bundle\BlogBundle\Model\Post', 'Article');
}
}