rules.phtml 429 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * @var \Magento\Paypal\Block\Adminhtml\System\Config\ResolutionRules $block
  8. */
  9. ?>
  10. <script>
  11. require([
  12. "Magento_Paypal/js/solutions",
  13. "domReady!"
  14. ], function (Solutions) {
  15. var solutions = new Solutions({config: {solutions: <?= /* @noEscape */ $block->getJson() ?>}});
  16. });
  17. </script>