link.phtml 402 B

12345678910111213
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. /** @var $block \Magento\Review\Block\Adminhtml\Grid\Rss\Link */
  8. ?>
  9. <?php if ($block->isRssAllowed() && $block->getLink()): ?>
  10. <a href="<?= $block->escapeUrl($block->getLink()) ?>" class="link-feed"><?= $block->escapeHtml($block->getLabel()) ?></a>
  11. <?php endif; ?>