File: /var/www/html/wptrinityconsulting/wp-content/plugins/wp-security-audit-log/js/common.js
/**
* WSAL Admin Scripts
*
* @since 1.0.0
*/
jQuery( document ).ready( function() {
/**
* Check & Load New Alerts on WP-Admin bar.
*
* @since 3.2.4
*/
if ( wsalCommonData.liveEvents ) {
function wsalRefresh() {
jQuery.ajax({
type: 'POST',
url: wsalCommonData.ajaxURL,
async: true,
dataType: 'json',
data: {
action: 'wsal_adminbar_events_refresh',
nonce: wsalCommonData.commonNonce,
eventsCount: wsalCommonData.eventsCount
},
success: function( data ) {
if ( data.success ) {
wsalCommonData.eventsCount = data.count;
jQuery( '.wsal-live-notif-item a' ).html( data.message );
}
}
});
};
// Check for new alerts every 30 secs.
setInterval( wsalRefresh, 30000 );
// Make the first call on page load.
wsalRefresh();
}
jQuery( 'a.wsal-dismiss-notification' ).click( function() {
var nfe = jQuery( this ).parents( 'div:first' );
var nfn = nfe.attr( 'data-notice-name' );
jQuery.ajax({
type: 'POST',
url: wsalCommonData.ajaxURL,
async: false,
data: { action: 'AjaxDismissNotice', notice: nfn }
});
nfe.fadeOut();
});
jQuery( 'head' ).append( '<style>.wp-submenu .dashicons-external:before{vertical-align: bottom;}</style>' );
// Add on installer
jQuery(".install-addon").on( 'click', function( e ) {
return wsalCommonData.install_addon( e, this );
});
wsalCommonData.install_addon = function( event, button_elm ) {
var currentButton = jQuery( button_elm );
if (currentButton.hasClass('disabled')) {
return;
}
// Disable other buttons whilst the process is happening.
jQuery(".install-addon").not(this).prop('disabled', true);
currentButton.html(wsalCommonData.installing);
var PluginSlug = currentButton.attr('data-plugin-slug');
var nonceValue = currentButton.attr('data-nonce');
var PluginDownloadUrl = currentButton.attr('data-plugin-download-url');
var RedirectToTab = currentButton.attr('data-plugin-event-tab-id');
currentButton.next('.spinner').show('200');
event.preventDefault();
jQuery.ajax({
type: 'POST',
dataType: "json",
url: wsalCommonData.ajaxURL,
data: {
action: "wsal_run_addon_install",
plugin_slug: PluginSlug,
plugin_url: PluginDownloadUrl,
_wpnonce: nonceValue
},
complete: function (data) {
var do_redirect = true;
if (data.responseText == '"already_installed"') {
currentButton.html(wsalCommonData.already_installed).addClass('disabled');
currentButton.next('.spinner').hide('200');
currentButton.addClass('disabled');
} else if (data.responseText == '"activated"') {
currentButton.html(wsalCommonData.activated).addClass('disabled');
currentButton.next('.spinner').hide('200');
currentButton.addClass('disabled');
} else if (JSON.stringify(data.responseText).toLowerCase().indexOf('failed') >= 0) {
currentButton.html(wsalCommonData.failed).addClass('disabled');
currentButton.next('.spinner').hide('200');
do_redirect = false;
} else if (data.responseText == '"success"' || JSON.stringify(data.responseText).toLowerCase().indexOf('success') >= 0) {
currentButton.html(wsalCommonData.installed).addClass('disabled');
currentButton.next('.spinner').hide('200');
}
if ( do_redirect ) {
if ( typeof RedirectToTab !== 'undefined' ) {
setTimeout(function () {
window.location = "admin.php?page=wsal-togglealerts" + RedirectToTab;
jQuery('[href="' + RedirectToTab + '"]').trigger('click');
// Reload as tabs are not present on page.
window.location.reload();
}, 100);
} else {
currentButton.html( wsalCommonData.reloading_page );
setTimeout(function () {
window.location.reload();
}, 100);
}
}
jQuery(".install-addon").not(this).prop('disabled', false);
},
});
};
// Totally disabling the button.
jQuery(".install-addon.disabled").prop('disabled', true);
// Hide save button when 3rd party plugins tab is Opened
jQuery('.nav-tab').click(function(){
if( jQuery('[href="#tab-third-party-plugins"]').hasClass('nav-tab-active') ) {
jQuery('.submit #submit').hide(0);
} else {
jQuery('.submit #submit').show(0);
}
});
if( jQuery('[href="#tab-third-party-plugins"]').hasClass('nav-tab-active') ) {
jQuery('.submit #submit').hide(0);
} else {
jQuery('.submit #submit').show(0);
}
// Change URL and attributes for 'Upgrade' admin menu link.
if ( jQuery( '.fs-submenu-item.wp-security-audit-log.pricing' ).length ) {
var linkItem = jQuery( '.fs-submenu-item.wp-security-audit-log.pricing' ).parent();
jQuery( linkItem ).attr( {
target: '_blank',
href: 'https://wpactivitylog.com/pricing/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=upgrade+now+menu',
} );
}
});