Skip to content

Commit d2374e8

Browse files
author
Stanislav Idolov
authored
ENGCOM-2310: [Backport] Declare module namespace before template path in Magento_Theme, Magento_Newsletter and Magento_Tax #16759
2 parents a07cc94 + db234f4 commit d2374e8

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
@@ -17,7 +17,7 @@ class Problem extends \Magento\Backend\Block\Template
1717
/**
1818
* @var string
1919
*/
20-
protected $_template = 'problem/list.phtml';
20+
protected $_template = 'Magento_Newsletter::problem/list.phtml';
2121

2222
/**
2323
* @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
@@ -16,7 +16,7 @@ class Edit extends \Magento\Backend\Block\Template
1616
/**
1717
* @var string
1818
*/
19-
protected $_template = 'queue/edit.phtml';
19+
protected $_template = 'Magento_Newsletter::queue/edit.phtml';
2020

2121
/**
2222
* Core registry

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

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

3030
/**
3131
* @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
@@ -15,7 +15,7 @@ class Viewed extends \Magento\Backend\Block\Widget\Grid\Container
1515
/**
1616
* @var string
1717
*/
18-
protected $_template = 'report/grid/container.phtml';
18+
protected $_template = 'Magento_Reports::report/grid/container.phtml';
1919

2020
/**
2121
* @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
@@ -17,7 +17,7 @@ class Bestsellers 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
* {@inheritdoc}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Coupons 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
* {@inheritdoc}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Invoiced 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
* {@inheritdoc}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Refunded 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
* {@inheritdoc}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Sales 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
* {@inheritdoc}

0 commit comments

Comments
 (0)