app/Customize/Controller/GuideController.php line 80

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 GuideController extends AbstractController
  17. {
  18.     /**
  19.      * GuideController constructor.
  20.      */
  21.     public function __construct()
  22.     {
  23.     }
  24.     /**
  25.      * 入稿データガイド
  26.      *
  27.      * @Route("/guide/submit", name="guide_submit", methods={"GET"})
  28.      * @Template("Guide/submit.twig")
  29.      */
  30.     public function submit()
  31.     {
  32.         return [];
  33.     }
  34.     /**
  35.      * ご注文の流れ
  36.      *
  37.      * @Route("/guide/flow", name="guide_flow", methods={"GET"})
  38.      * @Template("Guide/flow.twig")
  39.      */
  40.     public function flow()
  41.     {
  42.         return [];
  43.     }
  44.     /**
  45.      * 配送方法・送料
  46.      *
  47.      * @Route("/guide/carriage", name="guide_carriage", methods={"GET"})
  48.      * @Template("Guide/carriage.twig")
  49.      */
  50.     public function carriage()
  51.     {
  52.         return [];
  53.     }
  54.     /**
  55.      * お支払方法・手数料
  56.      *
  57.      * @Route("/guide/payment", name="guide_payment", methods={"GET"})
  58.      * @Template("Guide/payment.twig")
  59.      */
  60.     public function payment()
  61.     {
  62.         return [];
  63.     }
  64.     // /guide/submit以下
  65.     /**
  66.      * Adobe Illustratorでデータご用意-カッティングステッカー
  67.      *
  68.      * @Route("/guide/submit/cutting_ai", name="guide_cutting_ai", methods={"GET"})
  69.      * @Template("Guide/cutting_ai.twig")
  70.      */
  71.     public function cutting_ai()
  72.     {
  73.         return [];
  74.     }
  75.     /**
  76.      * Adobe Photoshopでデータご用意-カッティングステッカー    
  77.      *
  78.      * @Route("/guide/submit/cutting_psd", name="guide_cutting_psd", methods={"GET"})
  79.      * @Template("Guide/cutting_psd.twig")
  80.      */
  81.     public function cutting_psd()
  82.     {
  83.         return [];
  84.     }
  85.     /**
  86.      * Inkscapeでデータご用意-カッティングステッカー
  87.      *
  88.      * @Route("/guide/submit/cutting_inkscape", name="guide_cutting_inkscape", methods={"GET"})
  89.      * @Template("Guide/cutting_inkscape.twig")
  90.      */
  91.     public function cutting_inkscape()
  92.     {
  93.         return [];
  94.     }
  95.     /**
  96.      * いつも使っているアプリでデータ作成-カッティングステッカー
  97.      *
  98.      * @Route("/guide/submit/cutting_others", name="guide_cutting_others", methods={"GET"})
  99.      * @Template("Guide/cutting_others.twig")
  100.      */
  101.     public function cutting_others()
  102.     {
  103.         return [];
  104.     }
  105.     /**
  106.      * テキストのみでオーダー
  107.      *
  108.      * @Route("/guide/submit/cutting_text", name="guide_cutting_text", methods={"GET"})
  109.      * @Template("Guide/cutting_text.twig")
  110.      */
  111.     public function cutting_text()
  112.     {
  113.         return [];
  114.     }
  115.     /**
  116.      * デザイン上のご注意点など
  117.      *
  118.      * @Route("/guide/submit/cutting_notice", name="guide_cutting_notice", methods={"GET"})
  119.      * @Template("Guide/cutting_notice.twig")
  120.      */
  121.     public function cutting_notice()
  122.     {
  123.         return [];
  124.     }
  125.     /**
  126.      * 基本的な諸設定
  127.      *
  128.      * @Route("/guide/submit/print_basicsetting", name="guide_print_basicsetting", methods={"GET"})
  129.      * @Template("Guide/print_basicsetting.twig")
  130.      */
  131.     public function print_basicsetting()
  132.     {
  133.         return [];
  134.     }
  135.     /**
  136.      * Adobe Illustratorでデータご用意-プリントステッカー
  137.      *
  138.      * @Route("/guide/submit/print_ai", name="guide_print_ai", methods={"GET"})
  139.      * @Template("Guide/print_ai.twig")
  140.      */
  141.     public function print_ai()
  142.     {
  143.         return [];
  144.     }
  145.     /**
  146.      * いつも使っているアプリでデータ作成-プリントステッカー
  147.      *
  148.      * @Route("/guide/submit/print_common", name="guide_print_common", methods={"GET"})
  149.      * @Template("Guide/print_common.twig")
  150.      */
  151.     public function print_common()
  152.     {
  153.         return [];
  154.     }
  155.     /**
  156.      * デザイン上のご注意点など
  157.      *
  158.      * @Route("/guide/submit/print_notice", name="guide_print_notice", methods={"GET"})
  159.      * @Template("Guide/print_notice.twig")
  160.      */
  161.     public function print_notice()
  162.     {
  163.         return [];
  164.     }
  165. }