![]() 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/frontend/web/js/view/payment/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'uiComponent', 'Magento_Checkout/js/model/payment/renderer-list' ], function (Component, rendererList) { 'use strict'; var isContextCheckout = window.checkoutConfig.payment.paypalExpress.isContextCheckout, paypalExpress = 'Magento_Paypal/js/view/payment/method-renderer' + (isContextCheckout ? '/in-context/checkout-express' : '/paypal-express'); rendererList.push( { type: 'paypal_express', component: paypalExpress, config: window.checkoutConfig.payment.paypalExpress.inContextConfig }, { type: 'payflow_express', component: 'Magento_Paypal/js/view/payment/method-renderer/payflow-express' }, { type: 'payflow_express_bml', component: 'Magento_Paypal/js/view/payment/method-renderer/payflow-express-bml' }, { type: 'payflowpro', component: 'Magento_Paypal/js/view/payment/method-renderer/payflowpro-method' }, { type: 'payflow_link', component: 'Magento_Paypal/js/view/payment/method-renderer/iframe-methods' }, { type: 'payflow_advanced', component: 'Magento_Paypal/js/view/payment/method-renderer/iframe-methods' }, { type: 'hosted_pro', component: 'Magento_Paypal/js/view/payment/method-renderer/iframe-methods' }, { type: 'paypal_billing_agreement', component: 'Magento_Paypal/js/view/payment/method-renderer/paypal-billing-agreement' } ); /** * Add view logic here if needed **/ return Component.extend({}); });