src/Eccube/Controller/HelpController.php line 56

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 Eccube\Controller;
  13. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  14. use Symfony\Component\Routing\Annotation\Route;
  15. class HelpController extends AbstractController
  16. {
  17.     /**
  18.      * HelpController constructor.
  19.      */
  20.     public function __construct()
  21.     {
  22.     }
  23.     /**
  24.      * ご利用ガイド.
  25.      *
  26.      * @Route("/guide", name="help_guide", methods={"GET"})
  27.      * @Template("Help/guide.twig")
  28.      */
  29.     public function guide()
  30.     {
  31.         return [];
  32.     }
  33.     /**
  34.      * 当サイトについて.
  35.      *
  36.      * @Route("/help/about", name="help_about", methods={"GET"})
  37.      * @Template("Help/about.twig")
  38.      */
  39.     public function about()
  40.     {
  41.         return [];
  42.     }
  43.     /**
  44.      * プライバシーポリシー.
  45.      *
  46.      * @Route("/help/privacy", name="help_privacy", methods={"GET"})
  47.      * @Template("Help/privacy.twig")
  48.      */
  49.     public function privacy()
  50.     {
  51.         return [];
  52.     }
  53.     /**
  54.      * 利用規約.
  55.      *
  56.      * @Route("/help/agreement", name="help_agreement", methods={"GET"})
  57.      * @Template("Help/agreement.twig")
  58.      */
  59.     public function agreement()
  60.     {
  61.         return [];
  62.     }
  63. }