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
Helper
Url.php
Go to the documentation of this file.
1
<?php
12
namespace
Magento\Multishipping\Helper
;
13
14
class
Url
extends
\Magento\Framework\Url\Helper\Data
15
{
21
public
function
getCartUrl
()
22
{
23
return
$this->
_getUrl
(
'checkout/cart'
);
24
}
25
31
public
function
getMSCheckoutUrl
()
32
{
33
return
$this->
_getUrl
(
'multishipping/checkout'
);
34
}
35
41
public
function
getMSLoginUrl
()
42
{
43
return
$this->
_getUrl
(
'multishipping/checkout/login'
, [
'_secure'
=>
true
,
'_current'
=>
true
]);
44
}
45
51
public
function
getMSAddressesUrl
()
52
{
53
return
$this->
_getUrl
(
'multishipping/checkout/addresses'
);
54
}
55
61
public
function
getMSShippingAddressSavedUrl
()
62
{
63
return
$this->
_getUrl
(
'multishipping/checkout_address/shippingSaved'
);
64
}
65
71
public
function
getMSNewShippingUrl
()
72
{
73
return
$this->
_getUrl
(
'multishipping/checkout_address/newShipping'
);
74
}
75
81
public
function
getMSRegisterUrl
()
82
{
83
return
$this->
_getUrl
(
'multishipping/checkout/register'
);
84
}
85
}
Magento\Multishipping\Helper\Url\getMSAddressesUrl
getMSAddressesUrl()
Definition:
Url.php:51
Magento\Multishipping\Helper\Url\getMSLoginUrl
getMSLoginUrl()
Definition:
Url.php:41
Magento\Multishipping\Helper\Url
Definition:
Url.php:14
Magento\Framework\App\Helper\AbstractHelper\_getUrl
_getUrl($route, $params=[])
Definition:
AbstractHelper.php:145
Magento\Multishipping\Helper\Url\getCartUrl
getCartUrl()
Definition:
Url.php:21
Magento\Multishipping\Helper\Url\getMSRegisterUrl
getMSRegisterUrl()
Definition:
Url.php:81
Magento\Multishipping\Helper\Url\getMSCheckoutUrl
getMSCheckoutUrl()
Definition:
Url.php:31
Magento\Multishipping\Helper\Url\getMSNewShippingUrl
getMSNewShippingUrl()
Definition:
Url.php:71
Magento\Multishipping\Helper\Url\getMSShippingAddressSavedUrl
getMSShippingAddressSavedUrl()
Definition:
Url.php:61
Magento\Multishipping\Helper
Definition:
Data.php:7