urlBuilder = $urlBuilder; $this->config = $scopeConfig; } /** * @param array $queryParams * @return string */ public function getUrl(array $queryParams = []) { if (!$this->config->getValue('rss/config/active', \Magento\Store\Model\ScopeInterface::SCOPE_STORE)) { return ''; } return $this->urlBuilder->getUrl('rss/feed/index', $queryParams); } }