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-persistent
Controller
Index
ExpressCheckout.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Persistent\Controller\Index
;
7
8
use
Magento\Persistent\Controller\Index
;
9
use
Magento\Framework\Controller\ResultFactory
;
10
14
class
ExpressCheckout
extends
Index
15
{
21
public
function
execute
()
22
{
23
$this->messageManager->addNotice(
__
(
'Your shopping cart has been updated with new prices.'
));
25
$resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
26
$resultRedirect->setPath(
'checkout/cart'
);
27
return
$resultRedirect;
28
}
29
}
Magento\Paypal\Model\Express\Checkout
Definition:
Factory.php:6
Magento\Framework\Controller\ResultFactory
Definition:
ResultFactory.php:17
__
__()
Definition:
__.php:13
Magento\Persistent\Controller\Index
Definition:
Index.php:19
Magento\Framework\App\ActionInterface\execute
execute()
Magento\Persistent\Controller\Index
Definition:
ExpressCheckout.php:6