app/Customize/Controller/HelpController.php line 35

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. class HelpController extends AbstractController
  17. {
  18.     /**
  19.      * HelpController constructor.
  20.      */
  21.     public function __construct()
  22.     {
  23.     }
  24.     /**
  25.      * 特定商取引法.
  26.      *
  27.      * @Route("/help/tradelaw", name="help_tradelaw")
  28.      * @Template("Help/tradelaw.twig")
  29.      */
  30.     public function tradelaw()
  31.     {
  32.         return [];
  33.     }
  34.     /**
  35.      * ご利用ガイド.
  36.      *
  37.      * @Route("/guide", name="help_guide")
  38.      * @Template("Help/guide.twig")
  39.      */
  40.     public function guide()
  41.     {
  42.         return [];
  43.     }
  44.     /**
  45.      * 当サイトについて.
  46.      *
  47.      * @Route("/help/about", name="help_about")
  48.      * @Template("Help/about.twig")
  49.      */
  50.     public function about()
  51.     {
  52.         return [];
  53.     }
  54.     /**
  55.      * プライバシーポリシー.
  56.      *
  57.      * @Route("/help/privacy", name="help_privacy")
  58.      * @Template("Help/privacy.twig")
  59.      */
  60.     public function privacy()
  61.     {
  62.         return [];
  63.     }
  64.     /**
  65.      * クッキーポリシー.
  66.      *
  67.      * @Route("/help/cookie", name="help_cookie")
  68.      * @Template("Help/cookie.twig")
  69.      */
  70.     public function cookie()
  71.     {
  72.         return [];
  73.     }
  74.     /**
  75.      * 利用規約.
  76.      *
  77.      * @Route("/help/agreement", name="help_agreement")
  78.      * @Template("Help/agreement.twig")
  79.      */
  80.     public function agreement()
  81.     {
  82.         return [];
  83.     }
  84. }