Skip to content

Commit 9acc4db

Browse files
ENGCOM-2179: Declare module namespace before template path name #16515
- Merge Pull Request #16515 from mageprince/magento2:develop - Merged commits: 1. 7c9a5cb 2. c92b57f 3. b8751c1 4. c1282aa 5. 0d99673 6. 01efc65 7. c104023 8. 78ef947 9. 0286a12 10. 4310d50 11. d27263f 12. f9d5002 13. 7fe8314 14. 3cfd5c4 15. 4f6396a 16. 43ee7dd 17. 4723db4 18. 2f14719 19. 5a33ee5 20. 153466e 21. 2b03b68 22. 69f5949 23. 70f6fe0 24. c809d9f 25. e5d8965 26. cb94ab3 27. 17115ce 28. a924cad 29. 24ec04f 30. d5dbfb9 31. d036eb2 32. 3548a08 33. 5a8877f 34. b83ebb5 35. bee1aa4 36. 54e0a3b 37. 6b97b70 38. 8d8791b 39. fd4d8f5 40. a22995f 41. 7b18cef 42. 87e2f8c 43. 58e2e4b 44. 360b7fd
2 parents 2375461 + 360b7fd commit 9acc4db

File tree

42 files changed

+42
-41
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
-41
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
@@ -27,7 +27,7 @@ class Tree extends \Magento\Catalog\Block\Adminhtml\Category\AbstractCategory
2727
/**
2828
* @var string
2929
*/
30-
protected $_template = 'catalog/category/tree.phtml';
30+
protected $_template = 'Magento_Catalog::catalog/category/tree.phtml';
3131

3232
/**
3333
* @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)