app/Customize/Controller/NewsController.php line 31

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Customize\Controller;
  13. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  14. use Symfony\Component\Routing\Annotation\Route;
  15. use Eccube\Controller\AbstractController;
  16. use Eccube\Entity\News;
  17. class NewsController extends AbstractController
  18. {
  19.     /**
  20.      * @Route("/news/detail/{id}", name="news_detail", methods={"GET"})
  21.      * @Template("@user_data/News/detail.twig")
  22.      *
  23.      * @param News $News
  24.      *
  25.      * @return array
  26.      */
  27.     public function detail(News $News)
  28.     {
  29.         return [
  30.             'News' => $News,
  31.         ];
  32.     }
  33. }