HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/winter_site/wp-content/plugins/wpforms-lite/assets/js/components/admin/payments/single.js
/* global wpforms_admin */

/**
 * WPForms Single Payment View page.
 *
 * @since 1.8.2
 */

'use strict';

var WPFormsPaymentsSingle = window.WPFormsPaymentsSingle || ( function( document, window, $ ) {

	/**
	 * Public functions and properties.
	 *
	 * @since 1.8.2
	 *
	 * @type {object}
	 */
	const app = {

		/**
		 * Start the engine.
		 *
		 * @since 1.8.2
		 */
		init: function() {

			$( app.ready );
		},

		/**
		 * Document ready.
		 *
		 * @since 1.8.2
		 */
		ready: function() {

			app.initTooltips();
			app.paymentDeletionAlert();
		},

		/**
		 * Initialize WPForms admin area tooltips.
		 *
		 * @since 1.8.2
		 */
		initTooltips: function() {

			if ( typeof jQuery.fn.tooltipster === 'undefined' ) {
				return;
			}

			jQuery( '.wpforms-single-payment-tooltip' ).tooltipster( {
				contentCloning: true,
				theme: 'borderless',
				contentAsHTML: true,
				position: 'right',
				maxWidth: 500,
				multiple: true,
				interactive: true,
				debug: false,
			} );
		},

		/**
		 * Alert user before deleting payment.
		 *
		 * @since 1.8.2
		 */
		paymentDeletionAlert: function() {

			$( document ).on( 'click', '.wpforms-payment-actions .button-delete', function( event ) {

				event.preventDefault();

				const url = $( this ).attr( 'href' );

				// Trigger alert modal to confirm.
				$.confirm( {
					title: wpforms_admin.heads_up,
					content: wpforms_admin.payment_delete_confirm,
					icon: 'fa fa-exclamation-circle',
					type: 'orange',
					buttons: {
						confirm: {
							text: wpforms_admin.ok,
							btnClass: 'btn-confirm',
							keys: [ 'enter' ],
							action: function() {
								window.location = url;
							},
						},
						cancel: {
							text: wpforms_admin.cancel,
							keys: [ 'esc' ],
						},
					},
				} );
			} );
		},
	};

	return app;

}( document, window, jQuery ) );

// Initialize.
WPFormsPaymentsSingle.init();