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-backup
Controller
Adminhtml
Index
Disabled.php
Go to the documentation of this file.
1
<?php
7
declare(strict_types=1);
8
9
namespace
Magento\Backup\Controller\Adminhtml\Index
;
10
11
use
Magento\Backend\App\Action
;
12
use
Magento\Backend\App\Action\Context
;
13
use
Magento\Framework\App\Action\HttpGetActionInterface
;
14
use
Magento\Framework\View\Result\PageFactory
;
15
19
class
Disabled
extends
Action
implements
HttpGetActionInterface
20
{
24
const
ADMIN_RESOURCE
=
'Magento_Backend::backup'
;
25
29
private
$pageFactory;
30
35
public
function
__construct
(
Context
$context,
PageFactory
$pageFactory)
36
{
37
parent::__construct($context);
38
$this->pageFactory = $pageFactory;
39
}
40
44
public
function
execute
()
45
{
46
return
$this->pageFactory->create();
47
}
48
}
Magento\Framework\App\Action\HttpGetActionInterface
Definition:
HttpGetActionInterface.php:16
Magento\Backup\Controller\Adminhtml\Index
Definition:
Create.php:7
Magento\Framework\View\Result\PageFactory
Definition:
PageFactory.php:19
Magento\Backend\App\Action
Definition:
Action.php:17
Magento\Backup\Controller\Adminhtml\Index\Disabled\ADMIN_RESOURCE
const ADMIN_RESOURCE
Definition:
Disabled.php:24
Magento\Backup\Controller\Adminhtml\Index\Disabled
Definition:
Disabled.php:19
Magento\Backup\Controller\Adminhtml\Index\Disabled\__construct
__construct(Context $context, PageFactory $pageFactory)
Definition:
Disabled.php:35
Magento\Backup\Controller\Adminhtml\Index\Disabled\execute
execute()
Definition:
Disabled.php:44
Magento\Backend\App\Action\Context
Definition:
Context.php:25
Magento\Backend\App\Action
Definition:
Context.php:6