Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

36 lignes
1.4 KiB

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /** @var \Magento\Rss\Block\Feeds $block */
  7. ?>
  8. <table class="data table rss">
  9. <caption class="table-caption"><?= $block->escapeHtml(__('Feed')) ?></caption>
  10. <tbody>
  11. <th colspan="2" scope="col"><?= $block->escapeHtml(__('Miscellaneous Feeds')) ?></th>
  12. <?php foreach ($block->getFeeds() as $feed) : ?>
  13. <?php if (!isset($feed['group'])) : ?>
  14. <tr>
  15. <td class="col feed"><?= $block->escapeHtml($feed['label']) ?></td>
  16. <td class="col action">
  17. <a href="<?= $block->escapeUrl($feed['link']) ?>" class="action get"><span><?= $block->escapeHtml(__('Get Feed')) ?></span></a>
  18. </td>
  19. </tr>
  20. <?php else : ?>
  21. <th colspan="2" scope="col"><?= $block->escapeHtml($feed['group']) ?></th>
  22. <?php foreach ($feed['feeds'] as $item) :?>
  23. <tr>
  24. <td class="col feed"><?= $block->escapeHtml($item['label']) ?></td>
  25. <td class="col action">
  26. <a href="<?= $block->escapeUrl($item['link']) ?>" class="action get"><span><?= $block->escapeHtml(__('Get Feed')) ?></span></a>
  27. </td>
  28. </tr>
  29. <?php endforeach; ?>
  30. <?php endif; ?>
  31. <?php endforeach; ?>
  32. </tbody>
  33. </table>