Skip to content

Commit 6a25144

Browse files
ENGCOM-2203: [Backport] Declare module namespace before template path name #16577
- Merge Pull Request #16577 from mageprince/magento2:2.1-develop-PR-port-16515 - Merged commits: 1. 50364d1 2. 3156f06 3. 320748c 4. 2ea290a 5. fff72b6 6. 534e755 7. bf502d4 8. c5a77ff 9. 154cde1 10. c65e4d7 11. c34bc82 12. 835372f 13. e139ab4 14. 1f352cf 15. fec40bd 16. 09e2e5b 17. 1756134 18. 8af67d8 19. 5b353f4 20. a1ccb20 21. 964e126 22. 331c07a 23. 7a475a7 24. 1bc1104 25. 4bf400d 26. 362b942 27. 1cbcd7c 28. ea49cd6 29. af5ca55 30. 562ad21 31. fbfdf47 32. 0f981cf 33. abdba4d 34. 63d0ff9 35. 4a4d5e3 36. d9f848f 37. 1f6d6a4 38. 6dafb79 39. cfdf23d 40. d219d1c 41. 5a11c63 42. a66dbfd 43. 613b07d
2 parents e43594e + 613b07d commit 6a25144

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
@@ -15,7 +15,7 @@ class DefaultCaptcha extends \Magento\Framework\View\Element\Template
1515
/**
1616
* @var string
1717
*/
18-
protected $_template = 'default.phtml';
18+
protected $_template = 'Magento_Captcha::default.phtml';
1919

2020
/**
2121
* @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
@@ -18,7 +18,7 @@ class Main extends \Magento\Backend\Block\Template
1818
/**
1919
* @var string
2020
*/
21-
protected $_template = 'catalog/product/attribute/set/main.phtml';
21+
protected $_template = 'Magento_Catalog::catalog/product/attribute/set/main.phtml';
2222

2323
/**
2424
* 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
@@ -16,7 +16,7 @@ class Main extends \Magento\Backend\Block\Template
1616
/**
1717
* @var string
1818
*/
19-
protected $_template = 'catalog/product/attribute/set/toolbar/main.phtml';
19+
protected $_template = 'Magento_Catalog::catalog/product/attribute/set/toolbar/main.phtml';
2020

2121
/**
2222
* @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
@@ -21,7 +21,7 @@ class Configure extends \Magento\Backend\Block\Widget
2121
/**
2222
* @var string
2323
*/
24-
protected $_template = 'catalog/product/composite/configure.phtml';
24+
protected $_template = 'Magento_Catalog::catalog/product/composite/configure.phtml';
2525

2626
/**
2727
* 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)