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-backend
Controller
Adminhtml
System
Index.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Backend\Controller\Adminhtml\System
;
8
9
class
Index
extends
\Magento\Backend\Controller\Adminhtml\System
10
{
14
protected
$resultPageFactory
;
15
20
public
function
__construct
(
21
\
Magento
\Backend\
App
\
Action
\
Context
$context,
22
\
Magento
\Framework\View\Result\PageFactory
$resultPageFactory
23
) {
24
parent::__construct($context);
25
$this->resultPageFactory =
$resultPageFactory
;
26
}
27
31
public
function
execute
()
32
{
34
$resultPage = $this->resultPageFactory->create();
35
$resultPage->setActiveMenu(
'Magento_Backend::system'
);
36
$resultPage->addBreadcrumb(
__
(
'System'
),
__
(
'System'
));
37
return
$resultPage;
38
}
39
}
Magento\Framework\App
Magento\Backend\Controller\Adminhtml\System\Index\__construct
__construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\View\Result\PageFactory $resultPageFactory)
Definition:
Index.php:20
__
__()
Definition:
__.php:13
Magento\Framework\App\ActionInterface\execute
execute()
Magento\Backend\App\Action
Definition:
Action.php:17
Magento\Backend\Controller\Adminhtml\System
Definition:
AccountTest.php:6
Magento\Backend\Controller\Adminhtml\System\Index
Definition:
Index.php:9
Magento
Magento\Backend\App\Action\Context
Definition:
Context.php:25
Magento\Backend\Controller\Adminhtml\System\Index\$resultPageFactory
$resultPageFactory
Definition:
Index.php:14
Magento\Backend\Controller\Adminhtml\System
Definition:
System.php:15