Skip to content

Commit 68e3f4e

Browse files
author
Stanislav Idolov
authored
ENGCOM-2273: Declare module namespace before template path in Magento_Theme, Magento_Newsletter and Magento_Tax #16699
2 parents 59431c0 + 796ee2a commit 68e3f4e

File tree

33 files changed

+33
-33
lines changed

33 files changed

+33
-33
lines changed

app/code/Magento/Newsletter/Block/Adminhtml/Problem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Problem extends \Magento\Backend\Block\Template
1919
/**
2020
* @var string
2121
*/
22-
protected $_template = 'problem/list.phtml';
22+
protected $_template = 'Magento_Newsletter::problem/list.phtml';
2323

2424
/**
2525
* @var \Magento\Newsletter\Model\ResourceModel\Problem\Collection

app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Edit extends \Magento\Backend\Block\Template
1919
/**
2020
* @var string
2121
*/
22-
protected $_template = 'queue/edit.phtml';
22+
protected $_template = 'Magento_Newsletter::queue/edit.phtml';
2323

2424
/**
2525
* Core registry

app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Subscriber extends \Magento\Backend\Block\Template
2929
/**
3030
* @var string
3131
*/
32-
protected $_template = 'subscriber/list.phtml';
32+
protected $_template = 'Magento_Newsletter::subscriber/list.phtml';
3333

3434
/**
3535
* @var \Magento\Newsletter\Model\ResourceModel\Queue\CollectionFactory

app/code/Magento/Newsletter/Block/Adminhtml/Template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Template extends \Magento\Backend\Block\Template
1616
/**
1717
* @var string
1818
*/
19-
protected $_template = 'template/list.phtml';
19+
protected $_template = 'Magento_Newsletter::template/list.phtml';
2020

2121
/**
2222
* @return $this

app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Viewed extends \Magento\Backend\Block\Widget\Grid\Container
1717
/**
1818
* @var string
1919
*/
20-
protected $_template = 'report/grid/container.phtml';
20+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2121

2222
/**
2323
* @return void

app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Bestsellers extends \Magento\Backend\Block\Widget\Grid\Container
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'report/grid/container.phtml';
22+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2323

2424
/**
2525
* {@inheritdoc}

app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Coupons extends \Magento\Backend\Block\Widget\Grid\Container
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'report/grid/container.phtml';
22+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2323

2424
/**
2525
* {@inheritdoc}

app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Invoiced extends \Magento\Backend\Block\Widget\Grid\Container
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'report/grid/container.phtml';
22+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2323

2424
/**
2525
* {@inheritdoc}

app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Refunded extends \Magento\Backend\Block\Widget\Grid\Container
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'report/grid/container.phtml';
22+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2323

2424
/**
2525
* {@inheritdoc}

app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Sales extends \Magento\Backend\Block\Widget\Grid\Container
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'report/grid/container.phtml';
22+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
2323

2424
/**
2525
* {@inheritdoc}

0 commit comments

Comments
 (0)