| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/zeuszamani.com/wp-content/plugins/wordfence/views/onboarding/ |
Upload File : |
<?php
if (!defined('WORDFENCE_VERSION')) { exit; }
/**
* Presents the overlay.
*
* Expects $contentHTML to be defined.
*
* @var string $contentHTML The HTML content to show on the overlay.
*/
?>
<div id="wf-onboarding-plugin-overlay">
<a href="#" id="wf-onboarding-dismiss" role="button">×</a>
<?php echo $contentHTML; ?>
<script type="application/javascript">
(function($) {
$(function() {
$('#wf-onboarding-dismiss, #wf-onboarding-plugin-overlay').on('click', function(e) {
e.preventDefault();
e.stopPropagation();
$(window).trigger('wfOnboardingDismiss');
$('#wf-onboarding-plugin-overlay').fadeOut(400, function() {
$('#wf-onboarding-plugin-overlay').remove();
});
});
$(document).keyup(function(e) {
if (e.keyCode == 27) { //esc
$('#wf-onboarding-dismiss').trigger('click');
}
});
});
})(jQuery);
</script>
</div>