Skip to content

Commit 383080e

Browse files
ENGCOM-2202: [Backport] Declare module namespace before template path name #16576
- Merge Pull Request #16576 from mageprince/magento2:2.2-develop-PR-port-16515 - Merged commits: 1. 36985f6 2. e057099 3. 7646373 4. 129011c 5. 871a813 6. 8be7d67 7. efacfb4 8. 7e26d02 9. 76de638 10. 78ad355 11. 3bdb1ca 12. a3c672d 13. 22c8826 14. 5c97366 15. 06bcee3 16. 255934c 17. eb3ccbf 18. 8b6d0f2 19. 4697542 20. 5422414 21. 254a531 22. cd81b61 23. 2b37685 24. ec05358 25. 8e4db88 26. 3320653 27. 7a86de5 28. 1fc5490 29. 1f83775 30. b15d830 31. 3f4024e 32. b324468 33. de3c0b8 34. 8812a05 35. 242de2d 36. 098764d 37. 17ea286 38. 9a1d23b 39. d7b93c7 40. b79e560 41. 0ce497a 42. b9792cd 43. 9f54347
2 parents aa6b899 + 9f54347 commit 383080e

File tree

42 files changed

+42
-42
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+42
-42
lines changed

app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class DefaultCaptcha extends \Magento\Framework\View\Element\Template
1313
/**
1414
* @var string
1515
*/
16-
protected $_template = 'default.phtml';
16+
protected $_template = 'Magento_Captcha::default.phtml';
1717

1818
/**
1919
* @var string

app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AssignProducts extends \Magento\Backend\Block\Template
1313
*
1414
* @var string
1515
*/
16-
protected $_template = 'catalog/category/edit/assign_products.phtml';
16+
protected $_template = 'Magento_Catalog::catalog/category/edit/assign_products.phtml';
1717

1818
/**
1919
* @var \Magento\Catalog\Block\Adminhtml\Category\Tab\Product

app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Tree extends \Magento\Catalog\Block\Adminhtml\Category\AbstractCategory
2929
/**
3030
* @var string
3131
*/
32-
protected $_template = 'catalog/category/tree.phtml';
32+
protected $_template = 'Magento_Catalog::catalog/category/tree.phtml';
3333

3434
/**
3535
* @var \Magento\Backend\Model\Auth\Session

app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Chooser extends \Magento\Catalog\Block\Adminhtml\Category\Tree
2424
*
2525
* @var string
2626
*/
27-
protected $_template = 'catalog/category/widget/tree.phtml';
27+
protected $_template = 'Magento_Catalog::catalog/category/widget/tree.phtml';
2828

2929
/**
3030
* @return void

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Main extends \Magento\Backend\Block\Template
2222
/**
2323
* @var string
2424
*/
25-
protected $_template = 'catalog/product/attribute/set/main.phtml';
25+
protected $_template = 'Magento_Catalog::catalog/product/attribute/set/main.phtml';
2626

2727
/**
2828
* Core registry

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ class Group extends \Magento\Backend\Block\Template
1414
/**
1515
* @var string
1616
*/
17-
protected $_template = 'catalog/product/attribute/set/main/tree/group.phtml';
17+
protected $_template = 'Magento_Catalog::catalog/product/attribute/set/main/tree/group.phtml';
1818
}

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Add extends \Magento\Backend\Block\Template
1818
/**
1919
* @var string
2020
*/
21-
protected $_template = 'catalog/product/attribute/set/toolbar/add.phtml';
21+
protected $_template = 'Magento_Catalog::catalog/product/attribute/set/toolbar/add.phtml';
2222

2323
/**
2424
* @return AbstractBlock

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Main extends \Magento\Backend\Block\Template
2020
/**
2121
* @var string
2222
*/
23-
protected $_template = 'catalog/product/attribute/set/toolbar/main.phtml';
23+
protected $_template = 'Magento_Catalog::catalog/product/attribute/set/toolbar/main.phtml';
2424

2525
/**
2626
* @return $this

app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Configure extends \Magento\Backend\Block\Widget
2222
/**
2323
* @var string
2424
*/
25-
protected $_template = 'catalog/product/composite/configure.phtml';
25+
protected $_template = 'Magento_Catalog::catalog/product/composite/configure.phtml';
2626

2727
/**
2828
* Core registry

app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Edit extends \Magento\Backend\Block\Widget
1717
/**
1818
* @var string
1919
*/
20-
protected $_template = 'catalog/product/edit.phtml';
20+
protected $_template = 'Magento_Catalog::catalog/product/edit.phtml';
2121

2222
/**
2323
* Core registry

0 commit comments

Comments
 (0)