1 | <?php |
||
32 | class AbstractShoppingController extends AbstractController |
||
|
|||
33 | { |
||
34 | |||
35 | /** |
||
36 | * @var string 非会員用セッションキー |
||
37 | */ |
||
38 | protected $sessionKey = 'eccube.front.shopping.nonmember'; |
||
39 | |||
40 | /** |
||
41 | * @var string 非会員用セッションキー |
||
42 | */ |
||
43 | protected $sessionCustomerAddressKey = 'eccube.front.shopping.nonmember.customeraddress'; |
||
44 | |||
45 | /** |
||
46 | * @var string 複数配送警告メッセージ |
||
47 | */ |
||
48 | protected $sessionMultipleKey = 'eccube.front.shopping.multiple'; |
||
49 | |||
50 | /** |
||
51 | * @var string 受注IDキー |
||
52 | */ |
||
53 | protected $sessionOrderKey = 'eccube.front.shopping.order.id'; |
||
54 | |||
55 | /** |
||
56 | * @param Application $app |
||
57 | * @param ItemHolderInterface $itemHolder |
||
58 | * @return PurchaseFlowResult |
||
59 | */ |
||
60 | protected function executePurchaseFlow(Application $app, ItemHolderInterface $itemHolder) |
||
72 | |||
73 | } |