banner.php
1 month ago
disabled-overlay.php
1 month ago
fresh-install.php
1 month ago
overlay.php
4 years ago
plugin-header.php
1 month ago
tour-overlay.php
8 years ago
banner.php
18 lines
| 1 | <?php |
| 2 | if (!defined('WORDFENCE_VERSION')) { exit; } |
| 3 | /** |
| 4 | * Presents the persistent banner. |
| 5 | * |
| 6 | * This banner may be shown on non-Wordfence pages. |
| 7 | */ |
| 8 | ?> |
| 9 | <ul id="wf-onboarding-banner"> |
| 10 | <li><?php esc_html_e('Wordfence installation is incomplete', 'wordfence'); ?></li> |
| 11 | <li> |
| 12 | <?php if (isset($dismissable) && $dismissable): ?> |
| 13 | <a href="#" class="wf-onboarding-btn wf-onboarding-btn-default" id="wf-onboarding-delay" data-timestamp="<?php echo time(); ?>"><?php esc_html_e('Remind Me Later', 'wordfence'); ?></a> |
| 14 | <?php endif ?> |
| 15 | <a href="<?php echo esc_attr(network_admin_url('admin.php?page=WordfenceSupport')); ?>" class="wf-onboarding-btn wf-onboarding-btn-default" id="wf-onboarding-resume"><?php esc_html_e('Resume Installation', 'wordfence'); ?></a> |
| 16 | </li> |
| 17 | </ul> |
| 18 |