Eccube\Controller\Block\NewsController::index PHP Method

index() public method

public index ( Application $app )
$app Eccube\Application
    public function index(Application $app)
    {
        $NewsList = $app['orm.em']->getRepository('\\Eccube\\Entity\\News')->findBy(array(), array('rank' => 'DESC'));
        return $app->render('Block/news.twig', array('NewsList' => $NewsList));
    }
NewsController