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-customer
Controller
Review.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Customer\Controller
;
7
8
use
Magento\Framework\App\Action\Context
;
9
use
Magento\Framework\View\Result\PageFactory
;
10
11
class
Review
extends
\Magento\Framework\App\Action\Action
12
{
16
protected
$resultPageFactory
;
17
22
public
function
__construct
(
23
Context
$context,
24
PageFactory
$resultPageFactory
25
) {
26
parent::__construct($context);
27
$this->resultPageFactory =
$resultPageFactory
;
28
}
29
33
public
function
execute
()
34
{
35
return
$this->resultPageFactory->create();
36
}
37
}
Magento\Customer\Controller\Review\__construct
__construct(Context $context, PageFactory $resultPageFactory)
Definition:
Review.php:22
Magento\Customer\Controller\Review\$resultPageFactory
$resultPageFactory
Definition:
Review.php:16
Magento\Framework\View\Result\PageFactory
Definition:
PageFactory.php:19
Magento\Customer\Controller\Review
Definition:
Review.php:11
Magento\Customer\Controller
Definition:
AccountTest.php:7
Magento\Framework\App\Action\Context
Definition:
Context.php:24
Magento\Framework\App\Action\Action
Definition:
Action.php:25
Magento\Customer\Controller\Review\execute
execute()
Definition:
Review.php:33