Skip to content

Commit 79613c0

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - #15616: [Backport] Removed comma(,) from translate attribute (by @dmytro-ch) - #15648: [Backport] Fixed typo error (by @vgelani) - #15657: [Backport] Fixed set template syntax issue (by @vgelani) - #15669: [Backport] Wrong annotation in _toOptionArray - magento/framework/Data/� (by @vgelani) - #15668: [Backport] set correct annotation (by @vgelani) - #15714: [Backport] [Resolved : Menu widget submenu alignment #7897] (by @dmytro-ch) - #15711: [Backport] Use stored value of method instead of calling same method again. (by @dmytro-ch) - #15710: [Backport] Fix dynamical assigned property as it wasn't assigned to an existing one (by @dmytro-ch) - #15708: [Backport] Typo correction (by @dmytro-ch) - #15702: [Backport] Remove extra space and format the code in translation file (by @dmytro-ch) - #15700: [Backport] Fix HTML syntax in report.phtml error template (by @dmytro-ch) Fixed GitHub Issues: - #15601: Wrong annotation in formatDateTime - lib/internal/Magento/Framework/Stdlib/DateTime/TimezoneInterface.php (reported by @sanjay-wagento) has been fixed in #15669 by @vgelani in 2.1-develop branch Related commits: 1. 5575523 - #15601: Wrong annotation in formatDateTime - lib/internal/Magento/Framework/Stdlib/DateTime/TimezoneInterface.php (reported by @sanjay-wagento) has been fixed in #15668 by @vgelani in 2.1-develop branch Related commits: 1. c633d16 - #7897: Menu widget submenu alignment (reported by @slackerzz) has been fixed in #15714 by @dmytro-ch in 2.1-develop branch Related commits: 1. 57fed5a
2 parents 6103b6b + 7529c64 commit 79613c0

File tree

23 files changed

+57
-45
lines changed

23 files changed

+57
-45
lines changed

app/code/Magento/Backend/Block/Dashboard.php

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

2323
/**
2424
* @return void

app/code/Magento/Backend/Block/Dashboard/Graph.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Graph extends \Magento\Backend\Block\Dashboard\AbstractDashboard
9090
/**
9191
* @var string
9292
*/
93-
protected $_template = 'dashboard/graph.phtml';
93+
protected $_template = 'Magento_Backend::dashboard/graph.phtml';
9494

9595
/**
9696
* Adminhtml dashboard data

app/code/Magento/Backend/Block/Dashboard/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Grid extends \Magento\Backend\Block\Widget\Grid\Extended
1515
/**
1616
* @var string
1717
*/
18-
protected $_template = 'dashboard/grid.phtml';
18+
protected $_template = 'Magento_Backend::dashboard/grid.phtml';
1919

2020
/**
2121
* Setting default for every grid on dashboard

app/code/Magento/Backend/Block/Dashboard/Sales.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Sales extends \Magento\Backend\Block\Dashboard\Bar
1616
/**
1717
* @var string
1818
*/
19-
protected $_template = 'dashboard/salebar.phtml';
19+
protected $_template = 'Magento_Backend::dashboard/salebar.phtml';
2020

2121
/**
2222
* @var \Magento\Framework\Module\Manager

app/code/Magento/Backend/Block/Dashboard/Totals.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Totals extends \Magento\Backend\Block\Dashboard\Bar
1717
/**
1818
* @var string
1919
*/
20-
protected $_template = 'dashboard/totalbar.phtml';
20+
protected $_template = 'Magento_Backend::dashboard/totalbar.phtml';
2121

2222
/**
2323
* @var \Magento\Framework\Module\Manager

app/code/Magento/Backend/Block/Page/Copyright.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ class Copyright extends \Magento\Backend\Block\Template
1515
*
1616
* @var string
1717
*/
18-
protected $_template = 'page/copyright.phtml';
18+
protected $_template = 'Magento_Backend::page/copyright.phtml';
1919
}

app/code/Magento/Backend/Block/Page/Footer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Footer extends \Magento\Backend\Block\Template
1515
/**
1616
* @var string
1717
*/
18-
protected $_template = 'page/footer.phtml';
18+
protected $_template = 'Magento_Backend::page/footer.phtml';
1919

2020
/**
2121
* @var \Magento\Framework\App\ProductMetadataInterface

app/code/Magento/Backend/Block/Page/Header.php

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

2323
/**
2424
* Backend data

app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Fieldset extends \Magento\Backend\Block\Template implements \Magento\Frame
2323
/**
2424
* @var string
2525
*/
26-
protected $_template = 'store/switcher/form/renderer/fieldset.phtml';
26+
protected $_template = 'Magento_Backend::store/switcher/form/renderer/fieldset.phtml';
2727

2828
/**
2929
* Retrieve an element

app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Element extends \Magento\Backend\Block\Widget\Form\Renderer\Fieldset\Eleme
2121
/**
2222
* @var string
2323
*/
24-
protected $_template = 'store/switcher/form/renderer/fieldset/element.phtml';
24+
protected $_template = 'Magento_Backend::store/switcher/form/renderer/fieldset/element.phtml';
2525

2626
/**
2727
* Retrieve an element

0 commit comments

Comments
 (0)