link.phtml 823 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. /* @var \Magento\Wishlist\Block\Link $block */
  8. ?>
  9. <li class="link wishlist" data-bind="scope: 'wishlist'">
  10. <a <?= /* @noEscape */ $block->getLinkAttributes() ?>><?= $block->escapeHtml($block->getLabel()) ?>
  11. <!-- ko if: wishlist().counter -->
  12. <span data-bind="text: wishlist().counter" class="counter qty"></span>
  13. <!-- /ko -->
  14. </a>
  15. </li>
  16. <script type="text/x-magento-init">
  17. {
  18. "*": {
  19. "Magento_Ui/js/core/app": {
  20. "components": {
  21. "wishlist": {
  22. "component": "Magento_Wishlist/js/view/wishlist"
  23. }
  24. }
  25. }
  26. }
  27. }
  28. </script>