app/Customize/Controller/StaticPagesController.php line 38

Open in your IDE?
  1. <?php
  2. namespace Customize\Controller;
  3. use Eccube\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  6. class StaticPagesController extends AbstractController
  7. {
  8.     /**
  9.      * Q&A
  10.      *
  11.      * @Route("/faq", name="faq", methods={"GET"})
  12.      * @Template("StaticPages/faq.twig")
  13.      */
  14.     public function faq()
  15.     {
  16.         return [];
  17.     }
  18.     /**
  19.      * 会社概要
  20.      *
  21.      * @Route("/company", name="company", methods={"GET"})
  22.      * @Template("StaticPages/company.twig")
  23.      */
  24.     public function company()
  25.     {
  26.         return [];
  27.     }
  28.     /**
  29.      * 個人情報保護方針
  30.      *
  31.      * @Route("/privacy", name="privacy", methods={"GET"})
  32.      * @Template("StaticPages/privacy.twig")
  33.      */
  34.     public function privacy()
  35.     {
  36.         return [];
  37.     }
  38.     /**
  39.      * 特定商取引法に基づく表記
  40.      *
  41.      * @Route("/specification", name="specification", methods={"GET"})
  42.      * @Template("StaticPages/specification.twig")
  43.      */
  44.     public function specification()
  45.     {
  46.         return [];
  47.     }
  48.     /**
  49.      * 特定商取引法に基づく表記 LP購入用
  50.      *
  51.      * @Route("/specification_for_lp", name="specification_for_lp", methods={"GET"})
  52.      * @Template("StaticPages/specification_for_lp.twig")
  53.      */
  54.     public function specification_for_lp()
  55.     {
  56.         return [];
  57.     }
  58.     /**
  59.      * 定期購入ご利用規約
  60.      *
  61.      * @Route("/subscription_terms", name="subscription_terms", methods={"GET"})
  62.      * @Template("StaticPages/subscription_terms.twig")
  63.      */
  64.     public function subscriptionTerms()
  65.     {
  66.         return [];
  67.     }
  68. }