File tree Expand file tree Collapse file tree 11 files changed +30
-9
lines changed
app/code/Magento/Cms/Controller/Adminhtml Expand file tree Collapse file tree 11 files changed +30
-9
lines changed Original file line number Diff line number Diff line change 7
7
8
8
use Magento \Framework \App \Action \HttpGetActionInterface ;
9
9
10
+ /**
11
+ * Edit CMS block action.
12
+ */
10
13
class Edit extends \Magento \Cms \Controller \Adminhtml \Block implements HttpGetActionInterface
11
14
{
12
15
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
7
6
namespace Magento \Cms \Controller \Adminhtml \Block ;
8
7
9
8
use Magento \Framework \App \Action \HttpGetActionInterface ;
10
9
10
+ /**
11
+ * Index action.
12
+ */
11
13
class Index extends \Magento \Cms \Controller \Adminhtml \Block implements HttpGetActionInterface
12
14
{
13
15
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
7
6
namespace Magento \Cms \Controller \Adminhtml \Block ;
8
7
9
8
use Magento \Framework \App \Action \HttpGetActionInterface ;
10
9
10
+ /**
11
+ * Create CMS block action.
12
+ */
11
13
class NewAction extends \Magento \Cms \Controller \Adminhtml \Block implements HttpGetActionInterface
12
14
{
13
15
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
15
14
use Magento \Framework \Exception \LocalizedException ;
16
15
use Magento \Framework \Registry ;
17
16
17
+ /**
18
+ * Save CMS block action.
19
+ */
18
20
class Save extends \Magento \Cms \Controller \Adminhtml \Block implements HttpPostActionInterface
19
21
{
20
22
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
7
6
namespace Magento \Cms \Controller \Adminhtml \Page ;
8
7
9
8
use Magento \Framework \App \Action \HttpPostActionInterface ;
10
9
10
+ /**
11
+ * Delete CMS page action.
12
+ */
11
13
class Delete extends \Magento \Backend \App \Action implements HttpPostActionInterface
12
14
{
13
15
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
9
8
use Magento \Framework \App \Action \HttpGetActionInterface ;
10
9
use Magento \Backend \App \Action ;
11
10
11
+ /**
12
+ * Edit CMS page action.
13
+ */
12
14
class Edit extends \Magento \Backend \App \Action implements HttpGetActionInterface
13
15
{
14
16
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
10
9
use Magento \Backend \App \Action \Context ;
11
10
use Magento \Framework \View \Result \PageFactory ;
12
11
12
+ /**
13
+ * Index action.
14
+ */
13
15
class Index extends \Magento \Backend \App \Action implements HttpGetActionInterface
14
16
{
15
17
/**
Original file line number Diff line number Diff line change 11
11
use Magento \Ui \Component \MassAction \Filter ;
12
12
use Magento \Cms \Model \ResourceModel \Page \CollectionFactory ;
13
13
14
-
15
14
/**
16
15
* Class MassEnable
17
16
*/
Original file line number Diff line number Diff line change 8
8
9
9
use Magento \Framework \App \Action \HttpGetActionInterface ;
10
10
11
+ /**
12
+ * Create CMS page action.
13
+ */
11
14
class NewAction extends \Magento \Backend \App \Action implements HttpGetActionInterface
12
15
{
13
16
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
12
11
use Magento \Framework \App \Request \DataPersistorInterface ;
13
12
use Magento \Framework \Exception \LocalizedException ;
14
13
14
+ /**
15
+ * Save CMS page action.
16
+ */
15
17
class Save extends \Magento \Backend \App \Action implements HttpPostActionInterface
16
18
{
17
19
/**
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- *
4
3
* Copyright © Magento, Inc. All rights reserved.
5
4
* See COPYING.txt for license details.
6
5
*/
10
9
use Magento \Framework \App \Action \HttpPostActionInterface ;
11
10
use Magento \Backend \App \Action ;
12
11
12
+ /**
13
+ * Chooser Source action.
14
+ */
13
15
class Chooser extends Action implements HttpPostActionInterface, HttpGetActionInterface
14
16
{
15
17
/**
You can’t perform that action at this time.
0 commit comments