PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
wordfence
/
views
/
onboarding
<?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>
[+]
..
[-] banner.php
[edit]
[-] tour-overlay.php
[edit]
[-] modal-final-attempt.php
[edit]
[-] registration-prompt.php
[edit]
[-] fresh-install.php
[edit]
[-] plugin-header.php
[edit]
[-] overlay.php
[edit]
[-] disabled-overlay.php
[edit]