<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Customize\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Symfony\Component\Routing\Annotation\Route;
use Eccube\Controller\AbstractController;
class GuideController extends AbstractController
{
/**
* GuideController constructor.
*/
public function __construct()
{
}
/**
* 入稿データガイド
*
* @Route("/guide/submit", name="guide_submit", methods={"GET"})
* @Template("Guide/submit.twig")
*/
public function submit()
{
return [];
}
/**
* ご注文の流れ
*
* @Route("/guide/flow", name="guide_flow", methods={"GET"})
* @Template("Guide/flow.twig")
*/
public function flow()
{
return [];
}
/**
* 配送方法・送料
*
* @Route("/guide/carriage", name="guide_carriage", methods={"GET"})
* @Template("Guide/carriage.twig")
*/
public function carriage()
{
return [];
}
/**
* お支払方法・手数料
*
* @Route("/guide/payment", name="guide_payment", methods={"GET"})
* @Template("Guide/payment.twig")
*/
public function payment()
{
return [];
}
// /guide/submit以下
/**
* Adobe Illustratorでデータご用意-カッティングステッカー
*
* @Route("/guide/submit/cutting_ai", name="guide_cutting_ai", methods={"GET"})
* @Template("Guide/cutting_ai.twig")
*/
public function cutting_ai()
{
return [];
}
/**
* Adobe Photoshopでデータご用意-カッティングステッカー
*
* @Route("/guide/submit/cutting_psd", name="guide_cutting_psd", methods={"GET"})
* @Template("Guide/cutting_psd.twig")
*/
public function cutting_psd()
{
return [];
}
/**
* Inkscapeでデータご用意-カッティングステッカー
*
* @Route("/guide/submit/cutting_inkscape", name="guide_cutting_inkscape", methods={"GET"})
* @Template("Guide/cutting_inkscape.twig")
*/
public function cutting_inkscape()
{
return [];
}
/**
* いつも使っているアプリでデータ作成-カッティングステッカー
*
* @Route("/guide/submit/cutting_others", name="guide_cutting_others", methods={"GET"})
* @Template("Guide/cutting_others.twig")
*/
public function cutting_others()
{
return [];
}
/**
* テキストのみでオーダー
*
* @Route("/guide/submit/cutting_text", name="guide_cutting_text", methods={"GET"})
* @Template("Guide/cutting_text.twig")
*/
public function cutting_text()
{
return [];
}
/**
* デザイン上のご注意点など
*
* @Route("/guide/submit/cutting_notice", name="guide_cutting_notice", methods={"GET"})
* @Template("Guide/cutting_notice.twig")
*/
public function cutting_notice()
{
return [];
}
/**
* 基本的な諸設定
*
* @Route("/guide/submit/print_basicsetting", name="guide_print_basicsetting", methods={"GET"})
* @Template("Guide/print_basicsetting.twig")
*/
public function print_basicsetting()
{
return [];
}
/**
* Adobe Illustratorでデータご用意-プリントステッカー
*
* @Route("/guide/submit/print_ai", name="guide_print_ai", methods={"GET"})
* @Template("Guide/print_ai.twig")
*/
public function print_ai()
{
return [];
}
/**
* いつも使っているアプリでデータ作成-プリントステッカー
*
* @Route("/guide/submit/print_common", name="guide_print_common", methods={"GET"})
* @Template("Guide/print_common.twig")
*/
public function print_common()
{
return [];
}
/**
* デザイン上のご注意点など
*
* @Route("/guide/submit/print_notice", name="guide_print_notice", methods={"GET"})
* @Template("Guide/print_notice.twig")
*/
public function print_notice()
{
return [];
}
}