Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-multishipping
Controller
Checkout
Address
SetBilling.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Multishipping\Controller\Checkout\Address
;
8
9
class
SetBilling
extends
\Magento\Multishipping\Controller\Checkout\Address
10
{
14
public
function
execute
()
15
{
16
if
($addressId = $this->
getRequest
()->getParam(
'id'
)) {
17
$this->_objectManager->create(
18
\
Magento
\
Multishipping
\Model\
Checkout
\
Type
\Multishipping::class
19
)->setQuoteCustomerBillingAddress(
20
$addressId
21
);
22
}
23
$this->
_redirect
(
'*/checkout/billing'
);
24
}
25
}
Magento\Framework\App\Action\Action\_redirect
_redirect($path, $arguments=[])
Definition:
Action.php:167
Magento\Catalog\Model\Product\Type
Definition:
Type.php:17
Magento\Multishipping\Controller\Checkout
Definition:
Checkout.php:18
Magento\Multishipping\Controller\Checkout\Address\SetBilling
Definition:
SetBilling.php:9
Magento\Framework\App\Action\AbstractAction\getRequest
getRequest()
Definition:
AbstractAction.php:60
Magento\Multishipping\Controller\Checkout\Address\SetBilling\execute
execute()
Definition:
SetBilling.php:14
Magento
Magento\Multishipping\Controller\Checkout\Address
Definition:
EditAddress.php:7
Magento\Multishipping\Model\Checkout\Type\Multishipping
Definition:
Multishipping.php:28