rssUrlBuilder = $rssUrlBuilder; parent::__construct($context, $data); } /** * @inheritdoc */ protected function _construct() { $this->setId('grid.rss.link'); parent::_construct(); } /** * @return string */ public function getLink() { return $this->rssUrlBuilder->getUrl($this->getLinkParams()); } /** * @return \Magento\Framework\Phrase */ public function getLabel() { return __('Pending Reviews RSS'); } /** * Check whether status notification is allowed * * @return bool */ public function isRssAllowed() { return true; } /** * @return string */ protected function getLinkParams() { return ['type' => 'review']; } }