-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathIndex.php
More file actions
78 lines (69 loc) · 1.79 KB
/
Index.php
File metadata and controls
78 lines (69 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Mageplaza
*
* NOTICE OF LICENSE
*
* This source file is subject to the Mageplaza.com license that is
* available through the world-wide-web at this URL:
* https://www.mageplaza.com/LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Mageplaza
* @package Mageplaza_BannerSlider
* @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/)
* @license https://www.mageplaza.com/LICENSE.txt
*/
namespace Mageplaza\BannerSlider\Controller\Adminhtml\Slider;
use Magento\Backend\App\Action;
use Magento\Backend\App\Action\Context;
use Magento\Framework\View\Result\Page;
use Magento\Framework\View\Result\PageFactory;
/**
* Class Index
* @package Mageplaza\BannerSlider\Controller\Adminhtml\Slider
*/
class Index extends Action
{
const ADMIN_RESOURCE = 'Mageplaza_BannerSlider::slider';
/**
* Page result factory
*
* @var PageFactory
*/
protected $resultPageFactory;
/**
* Page factory
*
* @var \Magento\Backend\Model\View\Result\Page
*/
protected $resultPage;
/**
* constructor
*
* @param PageFactory $resultPageFactory
* @param Context $context
*/
public function __construct(
PageFactory $resultPageFactory,
Context $context
) {
$this->resultPageFactory = $resultPageFactory;
parent::__construct($context);
}
/**
* execute the action
*
* @return \Magento\Backend\Model\View\Result\Page|Page
*/
public function execute()
{
$resultPage = $this->resultPage = $this->resultPageFactory->create();
$resultPage->getConfig()->getTitle()->prepend((__('Manage Sliders')));
return $resultPage;
}
}