app/Customize/Controller/PageController.php line 59

Open in your IDE?
  1. <?php
  2. /* Static page */
  3. namespace Customize\Controller;
  4. use Eccube\Controller\AbstractController;
  5. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  6. use Symfony\Component\Routing\Annotation\Route;
  7. class PageController extends AbstractController
  8. {
  9.     /**
  10.      * PageController constructor.
  11.      */
  12.     public function __construct()
  13.     {
  14.     }
  15.     /**
  16.      * 理念.
  17.      *
  18.      * @Route("/concept", name="page_concept")
  19.      * @Template("Page/concept.twig")
  20.      */
  21.     public function concept()
  22.     {
  23.         return [];
  24.     }
  25.     /**
  26.      * 会社情報.
  27.      *
  28.      * @Route("/company", name="page_company")
  29.      * @Template("Page/company.twig")
  30.      */
  31.     public function company()
  32.     {
  33.         return [];
  34.     }
  35.     /**
  36.      * 代理店様へ.
  37.      *
  38.      * @Route("/forsupplier", name="page_forsupplier")
  39.      * @Template("Page/forsupplier.twig")
  40.      */
  41.     public function forsupplier()
  42.     {
  43.         return [];
  44.     }
  45.     /**
  46.      * 株主優待特典.
  47.      *
  48.      * @Route("/benefits", name="page_benefits")
  49.      * @Template("Page/benefits.twig")
  50.      */
  51.     public function benefits()
  52.     {
  53.         return [];
  54.     }
  55.     /**
  56.      * プライバシーポリシー.
  57.      *
  58.      * @Route("/privacy", name="page_privacy")
  59.      * @Template("Page/privacy.twig")
  60.      */
  61.     public function privacy()
  62.     {
  63.         return [];
  64.     }
  65.     /**
  66.      * サイトポリシー.
  67.      *
  68.      * @Route("/site-policy", name="page_site-policy")
  69.      * @Template("Page/site-policy.twig")
  70.      */
  71.     public function sitepolicy()
  72.     {
  73.         return [];
  74.     }
  75.     /**
  76.      * 特定商取引法に基づく表示.
  77.      *
  78.      * @Route("/compliance", name="page_compliance")
  79.      * @Template("Page/compliance.twig")
  80.      */
  81.     public function compliance()
  82.     {
  83.         return [];
  84.     }
  85.     /**
  86.      * FAQ static for release
  87.      *
  88.      * @Route("/faq.html", name="page_faq_static")
  89.      * @Template("Page/faq-index.twig")
  90.      */
  91.     public function faq_static()
  92.     {
  93.         return [];
  94.     }
  95.     /**
  96.      * FAQ static for release
  97.      *
  98.      * @Route("/faq_Viruswasher.html", name="page_faq_Viruswasher")
  99.      * @Template("Page/faq_Viruswasher.twig")
  100.      */
  101.     public function faq_Viruswasher()
  102.     {
  103.         return [];
  104.     }
  105.     /**
  106.      * FAQ static for release
  107.      *
  108.      * @Route("/faq_switle.html", name="page_faq_switle")
  109.      * @Template("Page/faq_switle.twig")
  110.      */
  111.     public function faq_switle()
  112.     {
  113.         return [];
  114.     }
  115.     /**
  116.      * FAQ static for release
  117.      *
  118.      * @Route("/faq_jokin.html", name="page_faq_jokin")
  119.      * @Template("Page/faq_jokin.twig")
  120.      */
  121.     public function faq_jokin()
  122.     {
  123.         return [];
  124.     }
  125.     /**
  126.      * FAQ static for release
  127.      *
  128.      * @Route("/faq_hassou.html", name="page_faq_hassou")
  129.      * @Template("Page/faq_hassou.twig")
  130.      */
  131.     public function faq_hassou()
  132.     {
  133.         return [];
  134.     }
  135.     /**
  136.      * FAQ static for release
  137.      *
  138.      * @Route("/faq_mousikomi.html", name="page_faq_mousikomi")
  139.      * @Template("Page/faq_mousikomi.twig")
  140.      */
  141.     public function faq_mousikomi()
  142.     {
  143.         return [];
  144.     }
  145.     /**
  146.      * FAQ static for release
  147.      *
  148.      * @Route("/faq_taisei.html", name="page_faq_taisei")
  149.      * @Template("Page/faq_taisei.twig")
  150.      */
  151.     public function faq_taisei()
  152.     {
  153.         return [];
  154.     }
  155.     /**
  156.      * 正規取扱店 static for release
  157.      *
  158.      * @Route("/dealers.html", name="page_dealers")
  159.      * @Template("Page/dealer-detail.twig")
  160.      */
  161.     public function dealers()
  162.     {
  163.         return [];
  164.     }
  165.     /**
  166.      * レポートページ.
  167.      *
  168.      * @Route("/report", name="page_report")
  169.      * @Template("Page/report.twig")
  170.      */
  171.     public function report()
  172.     {
  173.         return [];
  174.     }
  175.     /**
  176.      * レンタルサービス利用規約.
  177.      *
  178.      * @Route("/rental-policy", name="page_rental-policy")
  179.      * @Template("Page/rental-policy.twig")
  180.      */
  181.     public function rentalpolicy()
  182.     {
  183.         return [];
  184.     }
  185. }