actionUrlBuilder = $actionUrlBuilder; parent::__construct($context, $data); } /** * Render action * * @param \Magento\Framework\DataObject $row * @return string */ public function render(\Magento\Framework\DataObject $row) { $href = $this->actionUrlBuilder->getUrl( $row->getIdentifier(), $row->getData('_first_store_id'), $row->getStoreCode() ); return '' . __('Preview') . ''; } }