当前位置: 首页>>代码示例>>PHP>>正文


PHP Session::setCheckoutState方法代码示例

本文整理汇总了PHP中Magento\Checkout\Model\Session::setCheckoutState方法的典型用法代码示例。如果您正苦于以下问题:PHP Session::setCheckoutState方法的具体用法?PHP Session::setCheckoutState怎么用?PHP Session::setCheckoutState使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Magento\Checkout\Model\Session的用法示例。


在下文中一共展示了Session::setCheckoutState方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testOverviewAction

 /**
  * Covers \Magento\Multishipping\Block\Checkout\Payment\Info and \Magento\Multishipping\Block\Checkout\Overview
  *
  * @magentoConfigFixture current_store multishipping/options/checkout_multiple 1
  */
 public function testOverviewAction()
 {
     /** @var \Magento\Framework\Data\Form\FormKey $formKey */
     $formKey = $this->_objectManager->get('Magento\\Framework\\Data\\Form\\FormKey');
     $logger = $this->getMock('Psr\\Log\\LoggerInterface', [], [], '', false);
     /** @var \Magento\Customer\Api\AccountManagementInterface $service */
     $service = $this->_objectManager->create('Magento\\Customer\\Api\\AccountManagementInterface');
     $customer = $service->authenticate('customer@example.com', 'password');
     /** @var \Magento\Customer\Model\Session $customerSession */
     $customerSession = $this->_objectManager->create('Magento\\Customer\\Model\\Session', [$logger]);
     $customerSession->setCustomerDataAsLoggedIn($customer);
     $this->checkoutSession->setCheckoutState(State::STEP_BILLING);
     $this->getRequest()->setPostValue('payment', ['method' => 'checkmo']);
     $this->dispatch('multishipping/checkout/overview');
     $html = $this->getResponse()->getBody();
     $this->assertContains('<div class="box box-billing-method">', $html);
     $this->assertContains('<div class="box box-shipping-method">', $html);
     $this->assertContains('<dt class="title">' . $this->quote->getPayment()->getMethodInstance()->getTitle() . '</dt>', $html);
     $this->assertContains('<span class="price">$10.00</span>', $html);
     $this->assertContains('<input name="form_key" type="hidden" value="' . $formKey->getFormKey(), $html);
 }
开发者ID:andrewhowdencom,项目名称:m2onk8s,代码行数:26,代码来源:CheckoutTest.php

示例2: beforeSave

 /**
  * Map STEP_SELECT_ADDRESSES to Cart::CHECKOUT_STATE_BEGIN
  * @param \Magento\Checkout\Model\Cart $subject
  * @return void
  * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  */
 public function beforeSave(\Magento\Checkout\Model\Cart $subject)
 {
     if ($this->checkoutSession->getCheckoutState() === State::STEP_SELECT_ADDRESSES) {
         $this->checkoutSession->setCheckoutState(\Magento\Checkout\Model\Session::CHECKOUT_STATE_BEGIN);
     }
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:12,代码来源:Plugin.php


注:本文中的Magento\Checkout\Model\Session::setCheckoutState方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。