methods.phtml 654 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php
  9. /** @var $block \Magento\Checkout\Block\Cart */
  10. ?>
  11. <?php if (!$block->hasError()): ?>
  12. <?php $methods = $block->getMethods('methods') ?: $block->getMethods('top_methods') ?>
  13. <ul class="checkout methods items checkout-methods-items">
  14. <?php foreach ($methods as $method): ?>
  15. <?php $methodHtml = $block->getMethodHtml($method); ?>
  16. <?php if (trim($methodHtml) !== ''): ?>
  17. <li class="item"><?= /* @escapeNotVerified */ $methodHtml ?></li>
  18. <?php endif; ?>
  19. <?php endforeach; ?>
  20. </ul>
  21. <?php endif; ?>