app/Customize/Controller/HelpController.php line 68

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