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
framework
App
Action
Forward.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Framework\App\Action
;
9
10
use
Magento\Framework\App\RequestInterface
;
11
use
Magento\Framework\App\ResponseInterface
;
12
18
class
Forward
extends
AbstractAction
19
{
25
public
function
dispatch
(
RequestInterface
$request
)
26
{
27
return
$this->
execute
();
28
}
29
33
public
function
execute
()
34
{
35
$this->_request->setDispatched(
false
);
36
return
$this->_response
;
37
}
38
}
Magento\Framework\App\Action\Forward
Definition:
Forward.php:18
Magento\Framework\App\Action\Forward\dispatch
dispatch(RequestInterface $request)
Definition:
Forward.php:25
Magento\Framework\App\RequestInterface
Definition:
RequestInterface.php:14
$request
$request
Definition:
quote_with_configurable_product_last_variation.php:22
Magento\Framework\App\Action\AbstractAction\$_response
$_response
Definition:
AbstractAction.php:23
Magento\Framework\App\Action\Forward\execute
execute()
Definition:
Forward.php:33
Magento\Framework\App\Action\AbstractAction
Definition:
AbstractAction.php:13
Magento\Framework\App\ResponseInterface
Definition:
ResponseInterface.php:14
Magento\Framework\App\Action
Definition:
AbstractAction.php:8