Spamworldpro Mini Shell
Spamworldpro


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/in-context/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/old/vendor/magento/module-paypal/view/frontend/web/js/in-context/billing-agreement.js
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
define([
    'jquery',
    'Magento_Ui/js/modal/confirm',
    'Magento_Customer/js/customer-data'
], function ($, confirm, customerData) {
    'use strict';

    $.widget('mage.billingAgreement', {
        options: {
            invalidateOnLoad: false,
            cancelButtonSelector: '.block-billing-agreements-view button.cancel',
            cancelMessage: '',
            cancelUrl: ''
        },

        /**
         * Initialize billing agreements events
         * @private
         */
        _create: function () {
            var self = this;

            if (this.options.invalidateOnLoad) {
                this.invalidate();
            }
            $(this.options.cancelButtonSelector).on('click', function () {
                confirm({
                    content: self.options.cancelMessage,
                    actions: {
                        /**
                         * 'Confirm' action handler.
                         */
                        confirm: function () {
                            self.invalidate();
                            window.location.href = self.options.cancelUrl;
                        }
                    }
                });

                return false;
            });
        },

        /**
         * clear paypal billing agreement customer data
         * @returns void
         */
        invalidate: function () {
            customerData.invalidate(['paypal-billing-agreement']);
        }
    });

    return $.mage.billingAgreement;
});

Spamworldpro Mini