info.phtml 429 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php
  9. /**
  10. * Shopping cart additional info
  11. * @var $block \Magento\Framework\View\Element\Template
  12. */
  13. ?>
  14. <?php
  15. $name = $block->getNameInLayout();
  16. foreach ($block->getChildNames($name) as $childName) {
  17. echo $block->getChildBlock($childName)->setItem($block->getItem())->toHtml();
  18. }
  19. ?>