Skip to content

Commit b798f31

Browse files
committed
Declare module namespace
1 parent f4496e9 commit b798f31

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

app/code/Magento/AdvancedSearch/Block/SearchData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ abstract class SearchData extends Template implements SearchDataInterface
3030
/**
3131
* @var string
3232
*/
33-
protected $_template = 'search_data.phtml';
33+
protected $_template = 'Magento_AdvancedSearch::search_data.phtml';
3434

3535
/**
3636
* @param Template\Context $context

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

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

app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Js extends \Magento\Backend\Block\Template
1818
* @var string
1919
*/
2020

21-
protected $_template = 'attribute/edit/js.phtml';
21+
protected $_template = 'Magento_Eav::attribute/edit/js.phtml';
2222

2323
/**
2424
* @var \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype

app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ class Banktransfer extends \Magento\OfflinePayments\Block\Form\AbstractInstructi
1515
*
1616
* @var string
1717
*/
18-
protected $_template = 'form/banktransfer.phtml';
18+
protected $_template = 'Magento_OfflinePayments::form/banktransfer.phtml';
1919
}

app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ class Cashondelivery extends \Magento\OfflinePayments\Block\Form\AbstractInstruc
1515
*
1616
* @var string
1717
*/
18-
protected $_template = 'form/cashondelivery.phtml';
18+
protected $_template = 'Magento_OfflinePayments::form/cashondelivery.phtml';
1919
}

app/code/Magento/Payment/Block/Info/Instructions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Instructions extends \Magento\Payment\Block\Info
2323
/**
2424
* @var string
2525
*/
26-
protected $_template = 'info/instructions.phtml';
26+
protected $_template = 'Magento_Payment::info/instructions.phtml';
2727

2828
/**
2929
* Get instructions text from order payment

app/code/Magento/ProductAlert/Block/Email/Price.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Price extends \Magento\ProductAlert\Block\Email\AbstractEmail
1515
/**
1616
* @var string
1717
*/
18-
protected $_template = 'email/price.phtml';
18+
protected $_template = 'Magento_ProductAlert::email/price.phtml';
1919

2020
/**
2121
* Retrieve unsubscribe url for product

app/code/Magento/ProductAlert/Block/Email/Stock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Stock extends \Magento\ProductAlert\Block\Email\AbstractEmail
1515
/**
1616
* @var string
1717
*/
18-
protected $_template = 'email/stock.phtml';
18+
protected $_template = 'Magento_ProductAlert::email/stock.phtml';
1919

2020
/**
2121
* Retrieve unsubscribe url for product

app/code/Magento/Rss/Block/Feeds.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Feeds extends \Magento\Framework\View\Element\Template
1616
/**
1717
* @var string
1818
*/
19-
protected $_template = 'feeds.phtml';
19+
protected $_template = 'Magento_Rss::feeds.phtml';
2020

2121
/**
2222
* @var \Magento\Framework\App\Rss\RssManagerInterface

app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Grid extends \Magento\Backend\Block\Template
1010
/**
1111
* @var string
1212
*/
13-
protected $_template = 'order/packaging/grid.phtml';
13+
protected $_template = 'Magento_Shipping::order/packaging/grid.phtml';
1414

1515
/**
1616
* Core registry

app/code/Magento/Shipping/Block/Order/Shipment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Shipment extends \Magento\Framework\View\Element\Template
1818
/**
1919
* @var string
2020
*/
21-
protected $_template = 'order/shipment.phtml';
21+
protected $_template = 'Magento_Shipping::order/shipment.phtml';
2222

2323
/**
2424
* Core registry

app/code/Magento/Signifyd/Block/Fingerprint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Fingerprint extends Template
4242
* @var string
4343
* @since 100.2.0
4444
*/
45-
protected $_template = 'fingerprint.phtml';
45+
protected $_template = 'Magento_Signifyd::fingerprint.phtml';
4646

4747
/**
4848
* @param Context $context

app/code/Magento/UrlRewrite/Block/Catalog/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 = 'categories.phtml';
30+
protected $_template = 'Magento_UrlRewrite::categories.phtml';
3131

3232
/**
3333
* Adminhtml data

app/code/Magento/UrlRewrite/Block/Selector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Selector extends \Magento\Backend\Block\Template
1818
/**
1919
* @var string
2020
*/
21-
protected $_template = 'selector.phtml';
21+
protected $_template = 'Magento_UrlRewrite::selector.phtml';
2222

2323
/**
2424
* Set block template and get available modes

app/code/Magento/User/Block/Role/Tab/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\Widget\Form implements \Magento\Backen
1919
/**
2020
* @var string
2121
*/
22-
protected $_template = 'role/edit.phtml';
22+
protected $_template = 'Magento_User::role/edit.phtml';
2323

2424
/**
2525
* Root ACL Resource

app/code/Magento/Weee/Block/Renderer/Weee/Tax.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Tax extends \Magento\Backend\Block\Widget implements
3232
/**
3333
* @var string
3434
*/
35-
protected $_template = 'renderer/tax.phtml';
35+
protected $_template = 'Magento_Weee::renderer/tax.phtml';
3636

3737
/**
3838
* Core registry

app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Layout extends Template implements RendererInterface
2727
/**
2828
* @var string
2929
*/
30-
protected $_template = 'instance/edit/layout.phtml';
30+
protected $_template = 'Magento_Widget::instance/edit/layout.phtml';
3131

3232
/**
3333
* @var \Magento\Catalog\Model\Product\Type

app/code/Magento/Wishlist/Block/Rss/EmailLink.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class EmailLink extends Link
2121
/**
2222
* @var string
2323
*/
24-
protected $_template = 'rss/email.phtml';
24+
protected $_template = 'Magento_Wishlist::rss/email.phtml';
2525

2626
/**
2727
* @return array

app/code/Magento/Wishlist/Block/Share/Email/Items.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Items extends \Magento\Wishlist\Block\AbstractBlock
2020
/**
2121
* @var string
2222
*/
23-
protected $_template = 'email/items.phtml';
23+
protected $_template = 'Magento_Wishlist::email/items.phtml';
2424

2525
/**
2626
* Retrieve Product View URL

0 commit comments

Comments
 (0)