rssUrlBuilder = $rssUrlBuilder; parent::__construct($context, $data); } /** * Get url for link. * * @return string */ public function getLink() { return $this->rssUrlBuilder->getUrl($this->getLinkParams()); } /** * Get translatable label for link. * * @return \Magento\Framework\Phrase */ public function getLabel() { return __('New Order RSS'); } /** * Check whether status notification is allowed * * @return bool */ public function isRssAllowed() { return true; } /** * Get link type param. * * @return array */ protected function getLinkParams() { return ['type' => 'new_order']; } }