autocomplete.phtml 574 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <ul class="dropdown-menu">
  9. <?php foreach ($items as $item): ?>
  10. <li id="<?= /* @escapeNotVerified */ $item['id'] ?>" class="item">
  11. <a href="<?= /* @escapeNotVerified */ $item['url'] ?>" class="title"><?= $block->escapeHtml($item['name']) ?></a>
  12. <div class="type"><?= /* @escapeNotVerified */ $item['type'] ?></div>
  13. <?= $block->escapeHtml($item['description']) ?>
  14. </li>
  15. <?php endforeach ?>
  16. </ul>