diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php b/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php index fa17138719fed..e9e00749a4fb2 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php @@ -21,7 +21,7 @@ class Baseurl implements \Magento\Framework\Notification\MessageInterface protected $_config; /** - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; @@ -32,13 +32,13 @@ class Baseurl implements \Magento\Framework\Notification\MessageInterface /** * @param \Magento\Framework\App\Config\ScopeConfigInterface $config - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\UrlInterface $urlBuilder * @param \Magento\Framework\App\Config\ValueFactory $configValueFactory */ public function __construct( \Magento\Framework\App\Config\ScopeConfigInterface $config, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\UrlInterface $urlBuilder, \Magento\Framework\App\Config\ValueFactory $configValueFactory ) { diff --git a/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php b/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php index 26287c1db12fc..016508fef7d78 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php @@ -69,7 +69,7 @@ public function getIdentity() public function isDisplayed() { return $this->_authorization->isAllowed( - 'Magento_Adminhtml::cache' + 'Magento_Backend::cache' ) && count( $this->_getCacheTypesForRefresh() ) > 0; diff --git a/app/code/Magento/AdminNotification/etc/acl.xml b/app/code/Magento/AdminNotification/etc/acl.xml index cd908639d98c9..01ae3b6da6fbb 100644 --- a/app/code/Magento/AdminNotification/etc/acl.xml +++ b/app/code/Magento/AdminNotification/etc/acl.xml @@ -8,9 +8,9 @@ - - - + + + diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml index 712232289da96..19c3fc2200c66 100644 --- a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml +++ b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml @@ -8,7 +8,7 @@ - + diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml index 42bdfd000bd5e..b407b09c38596 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml +++ b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml @@ -7,7 +7,7 @@ --> - + diff --git a/app/code/Magento/Authorization/data/authorization_setup/data-install-2.0.0.php b/app/code/Magento/Authorization/data/authorization_setup/data-install-2.0.0.php index 1e2f7b53f31a6..cfc55b8747621 100644 --- a/app/code/Magento/Authorization/data/authorization_setup/data-install-2.0.0.php +++ b/app/code/Magento/Authorization/data/authorization_setup/data-install-2.0.0.php @@ -47,7 +47,7 @@ $this->createRules()->setData( [ 'role_id' => $admGroupRole->getId(), - 'resource_id' => 'Magento_Adminhtml::all', + 'resource_id' => 'Magento_Backend::all', 'privileges' => null, 'permission' => 'allow', ] @@ -55,6 +55,6 @@ } else { /** @var \Magento\Authorization\Model\Rules $rule */ foreach ($rulesCollection as $rule) { - $rule->setData('resource_id', 'Magento_Adminhtml::all')->save(); + $rule->setData('resource_id', 'Magento_Backend::all')->save(); } } diff --git a/app/code/Magento/Backend/App/Router.php b/app/code/Magento/Backend/App/Router.php index 062d70ac4654f..3ae734acb76f9 100644 --- a/app/code/Magento/Backend/App/Router.php +++ b/app/code/Magento/Backend/App/Router.php @@ -53,7 +53,7 @@ class Router extends \Magento\Core\App\Router\Base * @param \Magento\Framework\App\ResponseFactory $responseFactory * @param \Magento\Framework\App\Route\ConfigInterface $routeConfig * @param \Magento\Framework\UrlInterface $url - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Url\SecurityInfoInterface $urlSecurityInfo * @param string $routerId @@ -70,7 +70,7 @@ public function __construct( \Magento\Framework\App\ResponseFactory $responseFactory, \Magento\Framework\App\Route\ConfigInterface $routeConfig, \Magento\Framework\UrlInterface $url, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Url\SecurityInfoInterface $urlSecurityInfo, $routerId, diff --git a/app/code/Magento/Backend/Block/Dashboard.php b/app/code/Magento/Backend/Block/Dashboard.php index b6713c9e90ab3..6433c0a0514b7 100644 --- a/app/code/Magento/Backend/Block/Dashboard.php +++ b/app/code/Magento/Backend/Block/Dashboard.php @@ -31,7 +31,7 @@ protected function _prepareLayout() $this->addChild('sales', 'Magento\Backend\Block\Dashboard\Sales'); - if ($this->_scopeConfig->getValue(self::XML_PATH_ENABLE_CHARTS, \Magento\Framework\Store\ScopeInterface::SCOPE_STORE)) { + if ($this->_scopeConfig->getValue(self::XML_PATH_ENABLE_CHARTS, \Magento\Store\Model\ScopeInterface::SCOPE_STORE)) { $block = $this->getLayout()->createBlock('Magento\Backend\Block\Dashboard\Diagrams'); } else { $block = $this->getLayout()->createBlock( diff --git a/app/code/Magento/Backend/Block/Dashboard/Graph.php b/app/code/Magento/Backend/Block/Dashboard/Graph.php index ae9f2d4a868db..91c4d619072ba 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Graph.php +++ b/app/code/Magento/Backend/Block/Dashboard/Graph.php @@ -210,7 +210,7 @@ public function getChartUrl($directUrl = true) $timezoneLocal = $this->_scopeConfig->getValue( $this->_localeDate->getDefaultTimezonePath(), - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); list($dateStart, $dateEnd) = $this->_collectionFactory->create()->getDateRange( diff --git a/app/code/Magento/Backend/Block/Page/Header.php b/app/code/Magento/Backend/Block/Page/Header.php index 227db0beb9a1b..f4b8eb0b23ed3 100644 --- a/app/code/Magento/Backend/Block/Page/Header.php +++ b/app/code/Magento/Backend/Block/Page/Header.php @@ -80,6 +80,6 @@ public function getLogoutLink() */ public function displayNoscriptNotice() { - return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Framework\Store\ScopeInterface::SCOPE_STORE); + return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Store\Model\ScopeInterface::SCOPE_STORE); } } diff --git a/app/code/Magento/Backend/Block/Page/Notices.php b/app/code/Magento/Backend/Block/Page/Notices.php index 3ae3ef4f719ef..231d51c9919dd 100644 --- a/app/code/Magento/Backend/Block/Page/Notices.php +++ b/app/code/Magento/Backend/Block/Page/Notices.php @@ -22,7 +22,7 @@ class Notices extends \Magento\Backend\Block\Template */ public function displayNoscriptNotice() { - return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Framework\Store\ScopeInterface::SCOPE_STORE); + return $this->_scopeConfig->getValue('web/browser_capabilities/javascript', \Magento\Store\Model\ScopeInterface::SCOPE_STORE); } /** @@ -32,6 +32,6 @@ public function displayNoscriptNotice() */ public function displayDemoNotice() { - return $this->_scopeConfig->getValue('design/head/demonotice', \Magento\Framework\Store\ScopeInterface::SCOPE_STORE); + return $this->_scopeConfig->getValue('design/head/demonotice', \Magento\Store\Model\ScopeInterface::SCOPE_STORE); } } diff --git a/app/code/Magento/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php b/app/code/Magento/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php index 5a345204f462a..54b2695b8624e 100644 --- a/app/code/Magento/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php +++ b/app/code/Magento/Backend/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php @@ -69,7 +69,7 @@ public function render(\Magento\Framework\Data\Form\Element\AbstractElement $ele sort($modules); foreach ($modules as $moduleName) { - if ($moduleName === 'Magento_Adminhtml' || $moduleName === 'Magento_Backend') { + if ($moduleName === 'Magento_Backend') { continue; } $html .= $this->_getFieldHtml($element, $moduleName); diff --git a/app/code/Magento/Backend/Block/System/Store/Store.php b/app/code/Magento/Backend/Block/System/Store/Store.php index 21d35b35aad2c..5a984389aedc7 100644 --- a/app/code/Magento/Backend/Block/System/Store/Store.php +++ b/app/code/Magento/Backend/Block/System/Store/Store.php @@ -15,7 +15,7 @@ class Store extends \Magento\Backend\Block\Widget\Grid\Container /** * @var string */ - protected $_blockGroup = 'Magento_Adminhtml'; + protected $_blockGroup = 'Magento_Backend'; /** * @return void diff --git a/app/code/Magento/Backend/Block/Template.php b/app/code/Magento/Backend/Block/Template.php index b9546009a53f3..ed21d0025e4ab 100644 --- a/app/code/Magento/Backend/Block/Template.php +++ b/app/code/Magento/Backend/Block/Template.php @@ -79,7 +79,7 @@ public function isOutputEnabled($moduleName = null) return !$this->_scopeConfig->isSetFlag( 'advanced/modules_disable_output/' . $moduleName, - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } diff --git a/app/code/Magento/Backend/Block/Template/Context.php b/app/code/Magento/Backend/Block/Template/Context.php index 5be2763e3a500..da4142f87c2f1 100644 --- a/app/code/Magento/Backend/Block/Template/Context.php +++ b/app/code/Magento/Backend/Block/Template/Context.php @@ -66,7 +66,7 @@ class Context extends \Magento\Framework\View\Element\Template\Context * @param \Magento\Framework\View\FileSystem $viewFileSystem * @param \Magento\Framework\View\TemplateEnginePool $enginePool * @param \Magento\Framework\App\State $appState - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\View\Page\Config $pageConfig * @param \Magento\Framework\AuthorizationInterface $authorization * @param \Magento\Backend\Model\Session $backendSession @@ -99,7 +99,7 @@ public function __construct( \Magento\Framework\View\FileSystem $viewFileSystem, \Magento\Framework\View\TemplateEnginePool $enginePool, \Magento\Framework\App\State $appState, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\View\Page\Config $pageConfig, \Magento\Framework\AuthorizationInterface $authorization, \Magento\Backend\Model\Session $backendSession, @@ -143,7 +143,7 @@ public function __construct( /** * Get store manager * - * @return \Magento\Framework\Store\StoreManagerInterface + * @return \Magento\Store\Model\StoreManagerInterface */ public function getStoreManager() { diff --git a/app/code/Magento/Backend/Block/Widget/Context.php b/app/code/Magento/Backend/Block/Widget/Context.php index e5ab71975d5ee..40bb65bc78fba 100644 --- a/app/code/Magento/Backend/Block/Widget/Context.php +++ b/app/code/Magento/Backend/Block/Widget/Context.php @@ -49,7 +49,7 @@ class Context extends \Magento\Backend\Block\Template\Context * @param \Magento\Framework\View\FileSystem $viewFileSystem * @param \Magento\Framework\View\TemplateEnginePool $enginePool * @param \Magento\Framework\App\State $appState - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\AuthorizationInterface $authorization * @param \Magento\Backend\Model\Session $backendSession * @param \Magento\Framework\Math\Random $mathRandom @@ -84,7 +84,7 @@ public function __construct( \Magento\Framework\View\FileSystem $viewFileSystem, \Magento\Framework\View\TemplateEnginePool $enginePool, \Magento\Framework\App\State $appState, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\View\Page\Config $pageConfig, \Magento\Framework\AuthorizationInterface $authorization, \Magento\Backend\Model\Session $backendSession, diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php index 646aa02918598..fa7185cca11b7 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php @@ -203,7 +203,7 @@ protected function _convertDate($date, $locale) $dateObj->setTimezone( $this->_scopeConfig->getValue( $this->_localeDate->getDefaultTimezonePath(), - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ) ); diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php index 65a71d3944aea..3ea98889419dc 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php @@ -44,7 +44,7 @@ public function getValue($index = null) $datetimeTo->setTimezone( $this->_scopeConfig->getValue( $this->_localeDate->getDefaultTimezonePath(), - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ) ); $datetimeTo->addDay(1)->subSecond(1); @@ -70,7 +70,7 @@ protected function _convertDate($date, $locale) $dateObj->setTimezone( $this->_scopeConfig->getValue( $this->_localeDate->getDefaultTimezonePath(), - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ) ); diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php index d8e73328b9167..f0454dd37a9ec 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php @@ -30,7 +30,7 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra /** * Application object * - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; @@ -51,7 +51,7 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra /** * @param \Magento\Backend\Block\Context $context - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Directory\Model\Currency\DefaultLocator $currencyLocator * @param \Magento\Directory\Model\CurrencyFactory $currencyFactory * @param \Magento\Framework\Locale\CurrencyInterface $localeCurrency @@ -59,7 +59,7 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra */ public function __construct( \Magento\Backend\Block\Context $context, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Directory\Model\Currency\DefaultLocator $currencyLocator, \Magento\Directory\Model\CurrencyFactory $currencyFactory, \Magento\Framework\Locale\CurrencyInterface $localeCurrency, diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache.php index b3f9c969d7295..6d7cd7a7c9926 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache.php @@ -85,6 +85,6 @@ protected function _validateTypes(array $types) */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::cache'); + return $this->_authorization->isAllowed('Magento_Backend::cache'); } } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php index 9d8a1fcddd094..a4c41fde49a92 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php @@ -18,6 +18,6 @@ class Dashboard extends \Magento\Backend\App\Action */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::dashboard'); + return $this->_authorization->isAllowed('Magento_Backend::dashboard'); } } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php index 1d003b0a130c4..c0017958a0bc8 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php @@ -44,7 +44,7 @@ public function execute() { $items = []; - if (!$this->_authorization->isAllowed('Magento_Adminhtml::global_search')) { + if (!$this->_authorization->isAllowed('Magento_Backend::global_search')) { $items[] = [ 'id' => 'error', 'type' => __('Error'), diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System.php b/app/code/Magento/Backend/Controller/Adminhtml/System.php index 7eaa017356909..5ce34283afccf 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System.php @@ -19,6 +19,6 @@ class System extends AbstractAction */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::system'); + return $this->_authorization->isAllowed('Magento_Backend::system'); } } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/AbstractConfig.php b/app/code/Magento/Backend/Controller/Adminhtml/System/AbstractConfig.php index 9345cb672d8da..aeb025007f6b5 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/AbstractConfig.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/AbstractConfig.php @@ -58,7 +58,7 @@ public function dispatch(\Magento\Framework\App\RequestInterface $request) protected function _isAllowed() { $sectionId = $this->_request->getParam('section'); - return $this->_authorization->isAllowed('Magento_Adminhtml::config') + return $this->_authorization->isAllowed('Magento_Backend::config') || $this->_configStructure->getElement($sectionId)->isAllowed(); } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php index 62bbfe91fee20..166951742d8f3 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php @@ -19,6 +19,6 @@ class Account extends Action */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::myaccount'); + return $this->_authorization->isAllowed('Magento_Backend::myaccount'); } } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php index 8fae2b6ed7ef3..66e2b5739f615 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php @@ -73,6 +73,6 @@ public function __construct( */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::design'); + return $this->_authorization->isAllowed('Magento_Backend::design'); } } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php index bf6a5d36a52d1..4af63776d2482 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php @@ -32,7 +32,7 @@ public function execute() { /** @var \Magento\Backend\Model\View\Result\Page $resultPage */ $resultPage = $this->resultPageFactory->create(); - $resultPage->setActiveMenu('Magento_Adminhtml::system'); + $resultPage->setActiveMenu('Magento_Backend::system'); $resultPage->addBreadcrumb(__('System'), __('System')); return $resultPage; } diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php index 9a9d2a4a6d620..4ed6e97af4265 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php @@ -90,7 +90,7 @@ protected function createPage() */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::store'); + return $this->_authorization->isAllowed('Magento_Backend::store'); } /** diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Variable.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Variable.php index 8dd35c33673ff..f133ce599b39d 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Variable.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Variable.php @@ -112,6 +112,6 @@ protected function _initVariable() */ protected function _isAllowed() { - return $this->_authorization->isAllowed('Magento_Adminhtml::variable'); + return $this->_authorization->isAllowed('Magento_Backend::variable'); } } diff --git a/app/code/Magento/Backend/Helper/Dashboard/Data.php b/app/code/Magento/Backend/Helper/Dashboard/Data.php index 25b527c5013b0..17cffb3f53c45 100644 --- a/app/code/Magento/Backend/Helper/Dashboard/Data.php +++ b/app/code/Magento/Backend/Helper/Dashboard/Data.php @@ -30,7 +30,7 @@ class Data extends \Magento\Core\Helper\Data /** * @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\App\State $appState * @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency * @param DeploymentConfig $deploymentConfig @@ -39,7 +39,7 @@ class Data extends \Magento\Core\Helper\Data public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\App\State $appState, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, DeploymentConfig $deploymentConfig, diff --git a/app/code/Magento/Backend/Helper/Dashboard/Order.php b/app/code/Magento/Backend/Helper/Dashboard/Order.php index a78e32e23d17d..899e2b2ee6e04 100644 --- a/app/code/Magento/Backend/Helper/Dashboard/Order.php +++ b/app/code/Magento/Backend/Helper/Dashboard/Order.php @@ -18,7 +18,7 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard /** * @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\App\State $appState * @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency * @param \Magento\Reports\Model\Resource\Order\Collection $orderCollection @@ -27,7 +27,7 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\App\State $appState, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, \Magento\Reports\Model\Resource\Order\Collection $orderCollection, diff --git a/app/code/Magento/Backend/Model/Config.php b/app/code/Magento/Backend/Model/Config.php index fac2a55a463c5..b5b099997e327 100644 --- a/app/code/Magento/Backend/Model/Config.php +++ b/app/code/Magento/Backend/Model/Config.php @@ -71,7 +71,7 @@ class Config extends \Magento\Framework\Object protected $_configValueFactory; /** - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; @@ -82,7 +82,7 @@ class Config extends \Magento\Framework\Object * @param \Magento\Framework\DB\TransactionFactory $transactionFactory * @param \Magento\Backend\Model\Config\Loader $configLoader * @param \Magento\Framework\App\Config\ValueFactory $configValueFactory - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param array $data */ public function __construct( @@ -92,7 +92,7 @@ public function __construct( \Magento\Framework\DB\TransactionFactory $transactionFactory, \Magento\Backend\Model\Config\Loader $configLoader, \Magento\Framework\App\Config\ValueFactory $configValueFactory, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, array $data = [] ) { parent::__construct($data); diff --git a/app/code/Magento/Backend/Model/Config/Backend/Admin/Observer.php b/app/code/Magento/Backend/Model/Config/Backend/Admin/Observer.php index be0e1bfd8ded4..a2ab813d88d44 100644 --- a/app/code/Magento/Backend/Model/Config/Backend/Admin/Observer.php +++ b/app/code/Magento/Backend/Model/Config/Backend/Admin/Observer.php @@ -32,7 +32,7 @@ class Observer protected $_response; /** - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; @@ -48,7 +48,7 @@ public function __construct( \Magento\Framework\Registry $coreRegistry, \Magento\Backend\Model\Auth\Session $authSession, \Magento\Framework\App\ResponseInterface $response, - \Magento\Framework\Store\StoreManagerInterface $storeManager + \Magento\Store\Model\StoreManagerInterface $storeManager ) { $this->_backendData = $backendData; $this->_coreRegistry = $coreRegistry; diff --git a/app/code/Magento/Backend/Model/Config/Backend/Currency/AbstractCurrency.php b/app/code/Magento/Backend/Model/Config/Backend/Currency/AbstractCurrency.php index b2eac31749d0a..677c9e83854db 100644 --- a/app/code/Magento/Backend/Model/Config/Backend/Currency/AbstractCurrency.php +++ b/app/code/Magento/Backend/Model/Config/Backend/Currency/AbstractCurrency.php @@ -77,7 +77,7 @@ protected function _getInstalledCurrencies() ',', $this->_scopeConfig->getValue( 'system/currency/installed', - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ) ); } diff --git a/app/code/Magento/Backend/Model/Config/Backend/Locale.php b/app/code/Magento/Backend/Model/Config/Backend/Locale.php index 37d3b759e0f19..8341277a0f883 100644 --- a/app/code/Magento/Backend/Model/Config/Backend/Locale.php +++ b/app/code/Magento/Backend/Model/Config/Backend/Locale.php @@ -95,14 +95,14 @@ public function afterSave() $scopeName = __('Default scope'); break; - case \Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE: + case \Magento\Store\Model\ScopeInterface::SCOPE_WEBSITE: /** @var $website \Magento\Store\Model\Website */ $website = $this->_websiteFactory->create(); $websiteName = $website->load($data->getScopeId())->getName(); $scopeName = __('website(%1) scope', $websiteName); break; - case \Magento\Framework\Store\ScopeInterface::SCOPE_STORE: + case \Magento\Store\Model\ScopeInterface::SCOPE_STORE: /** @var $store \Magento\Store\Model\Store */ $store = $this->_storeFactory->create(); $storeName = $store->load($data->getScopeId())->getName(); diff --git a/app/code/Magento/Backend/Model/Config/Backend/Store.php b/app/code/Magento/Backend/Model/Config/Backend/Store.php index 0926b1a7d46b4..8ada34865bf60 100644 --- a/app/code/Magento/Backend/Model/Config/Backend/Store.php +++ b/app/code/Magento/Backend/Model/Config/Backend/Store.php @@ -46,7 +46,7 @@ public function afterSave() $this->_mutableConfig->setValue( \Magento\Store\Model\Store::XML_PATH_STORE_IN_URL, $this->getValue(), - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); $this->_cacheManager->clean(); } diff --git a/app/code/Magento/Backend/Model/Config/Backend/Translate.php b/app/code/Magento/Backend/Model/Config/Backend/Translate.php index 9fb7b137db93e..eddfffe2a06ba 100644 --- a/app/code/Magento/Backend/Model/Config/Backend/Translate.php +++ b/app/code/Magento/Backend/Model/Config/Backend/Translate.php @@ -67,7 +67,7 @@ public function afterSave() $types = array_keys( $this->_scopeConfig->getValue( self::XML_PATH_INVALID_CACHES, - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE + \Magento\Store\Model\ScopeInterface::SCOPE_STORE ) ); if ($this->isValueChanged()) { diff --git a/app/code/Magento/Backend/Model/Config/ScopeDefiner.php b/app/code/Magento/Backend/Model/Config/ScopeDefiner.php index fc5f1ad32413e..734cdca03c1ac 100644 --- a/app/code/Magento/Backend/Model/Config/ScopeDefiner.php +++ b/app/code/Magento/Backend/Model/Config/ScopeDefiner.php @@ -5,7 +5,7 @@ */ namespace Magento\Backend\Model\Config; -use Magento\Framework\Store\ScopeInterface as StoreScopeInterface; +use Magento\Store\Model\ScopeInterface as StoreScopeInterface; /** * System configuration scope diff --git a/app/code/Magento/Backend/Model/Config/Source/Website.php b/app/code/Magento/Backend/Model/Config/Source/Website.php index 3998a2ba1534a..da9f210595c37 100644 --- a/app/code/Magento/Backend/Model/Config/Source/Website.php +++ b/app/code/Magento/Backend/Model/Config/Source/Website.php @@ -13,14 +13,14 @@ class Website implements \Magento\Framework\Option\ArrayInterface protected $_options; /** - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; /** - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager */ - public function __construct(\Magento\Framework\Store\StoreManagerInterface $storeManager) + public function __construct(\Magento\Store\Model\StoreManagerInterface $storeManager) { $this->_storeManager = $storeManager; } diff --git a/app/code/Magento/Backend/Model/Config/Structure/AbstractElement.php b/app/code/Magento/Backend/Model/Config/Structure/AbstractElement.php index 64518f6702983..4020737bac5a7 100644 --- a/app/code/Magento/Backend/Model/Config/Structure/AbstractElement.php +++ b/app/code/Magento/Backend/Model/Config/Structure/AbstractElement.php @@ -5,7 +5,7 @@ */ namespace Magento\Backend\Model\Config\Structure; -use Magento\Framework\Store\StoreManagerInterface; +use Magento\Store\Model\StoreManagerInterface; abstract class AbstractElement implements ElementInterface { @@ -26,12 +26,12 @@ abstract class AbstractElement implements ElementInterface /** * Store manager * - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; /** - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager */ public function __construct(StoreManagerInterface $storeManager) { @@ -134,8 +134,8 @@ public function getAttribute($key) public function isVisible() { $showInScope = [ - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE => $this->_hasVisibilityValue('showInStore'), - \Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE => $this->_hasVisibilityValue('showInWebsite'), + \Magento\Store\Model\ScopeInterface::SCOPE_STORE => $this->_hasVisibilityValue('showInStore'), + \Magento\Store\Model\ScopeInterface::SCOPE_WEBSITE => $this->_hasVisibilityValue('showInWebsite'), \Magento\Framework\App\ScopeInterface::SCOPE_DEFAULT => $this->_hasVisibilityValue('showInDefault'), ]; diff --git a/app/code/Magento/Backend/Model/Config/Structure/Element/AbstractComposite.php b/app/code/Magento/Backend/Model/Config/Structure/Element/AbstractComposite.php index 0083aebe7fb9a..0ee58ea850e99 100644 --- a/app/code/Magento/Backend/Model/Config/Structure/Element/AbstractComposite.php +++ b/app/code/Magento/Backend/Model/Config/Structure/Element/AbstractComposite.php @@ -15,11 +15,11 @@ abstract class AbstractComposite extends \Magento\Backend\Model\Config\Structure protected $_childrenIterator; /** - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param Iterator $childrenIterator */ public function __construct( - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, Iterator $childrenIterator ) { parent::__construct($storeManager); diff --git a/app/code/Magento/Backend/Model/Config/Structure/Element/Dependency/Mapper.php b/app/code/Magento/Backend/Model/Config/Structure/Element/Dependency/Mapper.php index 429afca222f75..e5458890fe645 100644 --- a/app/code/Magento/Backend/Model/Config/Structure/Element/Dependency/Mapper.php +++ b/app/code/Magento/Backend/Model/Config/Structure/Element/Dependency/Mapper.php @@ -66,7 +66,7 @@ public function getDependencies($dependencies, $storeCode, $fieldPrefix = '') if (false == $dependentField->isVisible()) { $valueInStore = $this->_scopeConfig->getValue( $dependentField->getPath($fieldPrefix), - \Magento\Framework\Store\ScopeInterface::SCOPE_STORE, + \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeCode ); $shouldAddDependency = !$field->isValueSatisfy($valueInStore); diff --git a/app/code/Magento/Backend/Model/Config/Structure/Element/Field.php b/app/code/Magento/Backend/Model/Config/Structure/Element/Field.php index 6aab8e387cdb4..fd94275687ead 100644 --- a/app/code/Magento/Backend/Model/Config/Structure/Element/Field.php +++ b/app/code/Magento/Backend/Model/Config/Structure/Element/Field.php @@ -49,7 +49,7 @@ class Field extends \Magento\Backend\Model\Config\Structure\AbstractElement protected $_blockFactory; /** - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Backend\Model\Config\BackendFactory $backendFactory * @param \Magento\Backend\Model\Config\SourceFactory $sourceFactory * @param \Magento\Backend\Model\Config\CommentFactory $commentFactory @@ -57,7 +57,7 @@ class Field extends \Magento\Backend\Model\Config\Structure\AbstractElement * @param \Magento\Backend\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper */ public function __construct( - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Backend\Model\Config\BackendFactory $backendFactory, \Magento\Backend\Model\Config\SourceFactory $sourceFactory, \Magento\Backend\Model\Config\CommentFactory $commentFactory, diff --git a/app/code/Magento/Backend/Model/Config/Structure/Element/Group.php b/app/code/Magento/Backend/Model/Config/Structure/Element/Group.php index 7213a534cc9da..251fa37a319d1 100644 --- a/app/code/Magento/Backend/Model/Config/Structure/Element/Group.php +++ b/app/code/Magento/Backend/Model/Config/Structure/Element/Group.php @@ -24,13 +24,13 @@ class Group extends AbstractComposite protected $_dependencyMapper; /** - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Backend\Model\Config\Structure\Element\Iterator\Field $childrenIterator * @param \Magento\Backend\Model\Config\BackendClone\Factory $cloneModelFactory * @param \Magento\Backend\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper */ public function __construct( - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Backend\Model\Config\Structure\Element\Iterator\Field $childrenIterator, \Magento\Backend\Model\Config\BackendClone\Factory $cloneModelFactory, \Magento\Backend\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper diff --git a/app/code/Magento/Backend/Model/Config/Structure/Element/Section.php b/app/code/Magento/Backend/Model/Config/Structure/Element/Section.php index e5f75aae53644..3965d01a4d26a 100644 --- a/app/code/Magento/Backend/Model/Config/Structure/Element/Section.php +++ b/app/code/Magento/Backend/Model/Config/Structure/Element/Section.php @@ -15,12 +15,12 @@ class Section extends AbstractComposite protected $_authorization; /** - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param Iterator $childrenIterator * @param \Magento\Framework\AuthorizationInterface $authorization */ public function __construct( - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, Iterator $childrenIterator, \Magento\Framework\AuthorizationInterface $authorization ) { diff --git a/app/code/Magento/Backend/Model/Menu/Item.php b/app/code/Magento/Backend/Model/Menu/Item.php index 6ed736567dfde..c52c96fe555ab 100644 --- a/app/code/Magento/Backend/Model/Menu/Item.php +++ b/app/code/Magento/Backend/Model/Menu/Item.php @@ -425,7 +425,7 @@ protected function _isModuleDependenciesAvailable() protected function _isConfigDependenciesAvailable() { if ($this->_dependsOnConfig) { - return $this->_scopeConfig->isSetFlag((string)$this->_dependsOnConfig, \Magento\Framework\Store\ScopeInterface::SCOPE_STORE); + return $this->_scopeConfig->isSetFlag((string)$this->_dependsOnConfig, \Magento\Store\Model\ScopeInterface::SCOPE_STORE); } return true; } diff --git a/app/code/Magento/Backend/Model/Session/AdminConfig.php b/app/code/Magento/Backend/Model/Session/AdminConfig.php index 0e66533f78691..564f9540a9703 100644 --- a/app/code/Magento/Backend/Model/Session/AdminConfig.php +++ b/app/code/Magento/Backend/Model/Session/AdminConfig.php @@ -30,7 +30,7 @@ class AdminConfig extends Config protected $_frontNameResolver; /** - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; @@ -43,7 +43,7 @@ class AdminConfig extends Config * @param DeploymentConfig $deploymentConfig * @param string $scopeType * @param FrontNameResolver $frontNameResolver - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param string $lifetimePath * @param string $sessionName * @SuppressWarnings(PHPMD.ExcessiveParameterList) @@ -57,7 +57,7 @@ public function __construct( DeploymentConfig $deploymentConfig, $scopeType, FrontNameResolver $frontNameResolver, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, $lifetimePath = self::XML_PATH_COOKIE_LIFETIME, $sessionName = self::SESSION_NAME_ADMIN ) { diff --git a/app/code/Magento/Backend/Model/Session/Quote.php b/app/code/Magento/Backend/Model/Session/Quote.php index 644ea27c6057f..96141a383c690 100644 --- a/app/code/Magento/Backend/Model/Session/Quote.php +++ b/app/code/Magento/Backend/Model/Session/Quote.php @@ -65,7 +65,7 @@ class Quote extends \Magento\Framework\Session\SessionManager protected $quoteRepository; /** - * @var \Magento\Framework\Store\StoreManagerInterface + * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; @@ -86,7 +86,7 @@ class Quote extends \Magento\Framework\Session\SessionManager * @param CustomerRepositoryInterface $customerRepository * @param \Magento\Quote\Model\QuoteRepository $quoteRepository * @param \Magento\Sales\Model\OrderFactory $orderFactory - * @param \Magento\Framework\Store\StoreManagerInterface $storeManager + * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param GroupManagementInterface $groupManagement * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -102,7 +102,7 @@ public function __construct( CustomerRepositoryInterface $customerRepository, \Magento\Quote\Model\QuoteRepository $quoteRepository, \Magento\Sales\Model\OrderFactory $orderFactory, - \Magento\Framework\Store\StoreManagerInterface $storeManager, + \Magento\Store\Model\StoreManagerInterface $storeManager, GroupManagementInterface $groupManagement ) { $this->customerRepository = $customerRepository; diff --git a/app/code/Magento/Backend/etc/acl.xml b/app/code/Magento/Backend/etc/acl.xml index 016251c8c070b..b488fc8dc3376 100644 --- a/app/code/Magento/Backend/etc/acl.xml +++ b/app/code/Magento/Backend/etc/acl.xml @@ -8,51 +8,51 @@ - - - - - - - - + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - + + - - - - - + + + + + - - + + - - + + diff --git a/app/code/Magento/Backend/etc/adminhtml/menu.xml b/app/code/Magento/Backend/etc/adminhtml/menu.xml index 4a17367d3cb81..8d9fa29167bbc 100644 --- a/app/code/Magento/Backend/etc/adminhtml/menu.xml +++ b/app/code/Magento/Backend/etc/adminhtml/menu.xml @@ -7,27 +7,27 @@ --> - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/app/code/Magento/Backend/etc/adminhtml/system.xml b/app/code/Magento/Backend/etc/adminhtml/system.xml index b4aeadf75a9e3..57dd62a88bfcd 100644 --- a/app/code/Magento/Backend/etc/adminhtml/system.xml +++ b/app/code/Magento/Backend/etc/adminhtml/system.xml @@ -19,7 +19,7 @@
advanced - Magento_Adminhtml::advanced + Magento_Backend::advanced Magento\Backend\Block\System\Config\Form\Fieldset\Modules\DisableOutput @@ -29,7 +29,7 @@ separator-top general - Magento_Adminhtml::trans_email + Magento_Backend::trans_email @@ -99,7 +99,7 @@
general - Magento_Adminhtml::config_design + Magento_Backend::config_design @@ -153,7 +153,7 @@
advanced - Magento_Adminhtml::dev + Magento_Backend::dev @@ -236,7 +236,7 @@
general - Magento_Adminhtml::config_general + Magento_Backend::config_general @@ -321,7 +321,7 @@ separator-top advanced - Magento_Adminhtml::config_system + Magento_Backend::config_system @@ -375,7 +375,7 @@
advanced - Magento_Adminhtml::config_admin + Magento_Backend::config_admin @@ -458,7 +458,7 @@
general - Magento_Adminhtml::web + Magento_Backend::web diff --git a/app/code/Magento/Backend/etc/di.xml b/app/code/Magento/Backend/etc/di.xml index 4d5f28658fb33..de433e3b8e18e 100644 --- a/app/code/Magento/Backend/etc/di.xml +++ b/app/code/Magento/Backend/etc/di.xml @@ -79,7 +79,7 @@ Magento\Backend\Model\Url\ScopeResolver Magento\Backend\Model\Auth\Session\Proxy Magento\Framework\Data\Form\FormKey\Proxy - Magento\Framework\Store\ScopeInterface::SCOPE_STORE + Magento\Store\Model\ScopeInterface::SCOPE_STORE Magento\Backend\Helper\Data\Proxy @@ -108,7 +108,7 @@ - Magento_Adminhtml::all + Magento_Backend::all diff --git a/app/code/Magento/Backend/etc/webapi.xml b/app/code/Magento/Backend/etc/webapi.xml index 1188507e93082..8d6b69d864e59 100644 --- a/app/code/Magento/Backend/etc/webapi.xml +++ b/app/code/Magento/Backend/etc/webapi.xml @@ -10,7 +10,7 @@ - + diff --git a/app/code/Magento/Backend/view/adminhtml/layout/default.xml b/app/code/Magento/Backend/view/adminhtml/layout/default.xml index 977282aa8d3a8..67fa7c2c76c76 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/default.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/default.xml @@ -28,7 +28,7 @@ Community Edition - + user diff --git a/app/code/Magento/Backend/view/adminhtml/layout/editor.xml b/app/code/Magento/Backend/view/adminhtml/layout/editor.xml index 6701d66516030..887e846d529ee 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/editor.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/editor.xml @@ -9,7 +9,7 @@ - + diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml index 285a25ad27d31..f7635da3c5804 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml @@ -19,7 +19,7 @@ escapeHtml($block->getUser()->getUsername()); ?>