![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-paypal/view/adminhtml/templates/payflowpro/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ use Magento\Vault\Model\Ui\TokenUiComponentProviderInterface; /** @var \Magento\Framework\View\Element\Template $block */ $details = $block->getData('details'); $icon = $block->getData('icons')[$details['cc_type']]; $id = $block->escapeHtml($block->getData('id')); ?> <div data-mage-init='{ "Magento_Paypal/js/payflowpro/vault": { "container": "payment_<?= /* @noEscape */ $id ?>", "publicHash": "<?= $block->escapeHtml($block->getData(TokenUiComponentProviderInterface::COMPONENT_PUBLIC_HASH)); ?>" } }' id="payment_<?= /* @noEscape */ $id ?>" class="admin__field"> <div class="admin__field-control control"> <input type="radio" id="token_switcher_<?= /* @noEscape */ $id ?>" name="payment[token_switcher]"/> <img src="<?= $block->escapeUrl($icon['url']) ?>" width="<?= $block->escapeHtml($icon['width']) ?>" height="<?= $block->escapeHtml($icon['height']) ?>" class="payment-icon" > <span><?= $block->escapeHtml(__('ending')) ?></span> <span><?= $block->escapeHtml($details['cc_last_4']) ?></span> (<span><?= $block->escapeHtml(__('expires')) ?></span>: <span><?= /* @noEscape */ $block->escapeHtml($details['cc_exp_month'] . "/" . $details['cc_exp_year']); ?></span>) </div> </div>