scopeResolverPool = $scopeResolverPool; } /** * Retrieve scope title * * @return string * @since 100.1.0 */ public function getScopeTitle() { $scope = $this->getRequest()->getParam('scope'); $scopeId = $this->getRequest()->getParam('scope_id'); if ($scope != ScopeConfigInterface::SCOPE_TYPE_DEFAULT) { $scopeResolver = $this->scopeResolverPool->get($scope); $scopeObject = $scopeResolver->getScope($scopeId); return __('%1', $scopeObject->getScopeTypeName()); } return __('Default'); } /** * @inheritdoc * @since 100.1.0 */ public function toHtml() { if ($this->_storeManager->isSingleStoreMode()) { return ''; } return parent::toHtml(); } }