GRAYBYTE WORDPRESS FILE MANAGER7743

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/chahida.co.in/wp-content/plugins/wp-mail-smtp/assets/js/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/chahida.co.in/wp-content/plugins/wp-mail-smtp/assets/js//smtp-notifications.js
/* global wp_mail_smtp, ajaxurl */

/**
 * WP Mail SMTP Admin Notifications.
 *
 * @since 2.3.0
 */

'use strict';

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

	/**
	 * Elements holder.
	 *
	 * @since 2.3.0
	 *
	 * @type {object}
	 */
	var el = {
		$notifications:    $( '#wp-mail-smtp-notifications' ),
		$nextButton:       $( '#wp-mail-smtp-notifications .navigation .next' ),
		$prevButton:       $( '#wp-mail-smtp-notifications .navigation .prev' ),
		$adminBarCounter:  $( '#wp-admin-bar-wp-mail-smtp-menu .wp-mail-smtp-admin-bar-menu-notification-counter' ),
	};

	/**
	 * Public functions and properties.
	 *
	 * @since 2.3.0
	 *
	 * @type {object}
	 */
	var app = {

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

			$( app.ready );
		},

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

			app.updateNavigation();
			app.events();
		},

		/**
		 * Register JS events.
		 *
		 * @since 2.3.0
		 */
		events: function() {

			el.$notifications
				.on( 'click', '.dismiss', app.dismiss )
				.on( 'click', '.next', app.navNext )
				.on( 'click', '.prev', app.navPrev );
		},

		/**
		 * Click on the Dismiss notification button.
		 *
		 * @since 2.3.0
		 *
		 * @param {object} event Event object.
		 */
		dismiss: function( event ) {

			if ( el.$currentMessage.length === 0 ) {
				return;
			}

			// AJAX call - update option.
			var data = {
				action: 'wp_mail_smtp_notification_dismiss',
				nonce: wp_mail_smtp.nonce,
				id: el.$currentMessage.data( 'message-id' ),
			};

			$.post( ajaxurl, data, function( response ) {
				if ( ! response.success ) {
					return;
				}

				// Update counter.
				var count = parseInt( el.$adminBarCounter.text(), 10 );
				if ( count > 1 ) {
					--count;
					el.$adminBarCounter.html( '<span>' + count + '</span>' );
				} else {
					el.$adminBarCounter.remove();
				}

				// Remove notification.
				var $nextMessage = el.$nextMessage.length < 1 ? el.$prevMessage : el.$nextMessage;

				if ( $nextMessage.length === 0 ) {
					el.$notifications.remove();
				} else {
					el.$currentMessage.remove();
					$nextMessage.addClass( 'current' );
					app.updateNavigation();
				}
			} );
		},

		/**
		 * Click on the Next notification button.
		 *
		 * @since 2.3.0
		 *
		 * @param {object} event Event object.
		 */
		navNext: function( event ) {

			if ( el.$nextButton.hasClass( 'disabled' ) ) {
				return;
			}

			el.$currentMessage.removeClass( 'current' );
			el.$nextMessage.addClass( 'current' );

			app.updateNavigation();
		},

		/**
		 * Click on the Previous notification button.
		 *
		 * @since 2.3.0
		 *
		 * @param {object} event Event object.
		 */
		navPrev: function( event ) {

			if ( el.$prevButton.hasClass( 'disabled' ) ) {
				return;
			}

			el.$currentMessage.removeClass( 'current' );
			el.$prevMessage.addClass( 'current' );

			app.updateNavigation();
		},

		/**
		 * Update navigation buttons.
		 *
		 * @since 2.3.0
		 */
		updateNavigation: function() {

			el.$currentMessage = el.$notifications.find( '.wp-mail-smtp-notifications-message.current' );
			el.$nextMessage = el.$currentMessage.next( '.wp-mail-smtp-notifications-message' );
			el.$prevMessage = el.$currentMessage.prev( '.wp-mail-smtp-notifications-message' );

			if ( el.$nextMessage.length === 0 ) {
				el.$nextButton.addClass( 'disabled' );
			} else {
				el.$nextButton.removeClass( 'disabled' );
			}

			if ( el.$prevMessage.length === 0 ) {
				el.$prevButton.addClass( 'disabled' );
			} else {
				el.$prevButton.removeClass( 'disabled' );
			}
		},
	};

	return app;

}( document, window, jQuery ) );

// Initialize.
WPMailSMTPAdminNotifications.init();

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 10 2025 04:32:25
giriqfky / giriqfky
0755
vendor
--
July 10 2025 04:32:25
giriqfky / giriqfky
0755
.htaccess
0.41 KB
July 10 2025 04:32:25
giriqfky / giriqfky
0644
connect.js
3.622 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
connect.min.js
1.948 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-about.js
4.811 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-about.min.js
2.49 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-admin-notices.js
1.496 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-admin-notices.min.js
0.621 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-admin.js
15.817 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-admin.min.js
8.769 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-dashboard-widget.js
6.584 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-dashboard-widget.min.js
3.392 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-notifications.js
3.677 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-notifications.min.js
1.901 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-tools-debug-events.js
8.181 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644
smtp-tools-debug-events.min.js
4.078 KB
June 05 2025 17:33:30
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF