File Editor
Directories:
.. (Back)
Files:
debug.php
firewall-status.php
option-rate-limit.php
option-rules.php
option-whitelist.php
options-group-advanced-firewall.php
options-group-basic-firewall.php
options-group-brute-force.php
options-group-rate-limiting.php
options-group-whitelisted.php
status-tooltip-learning-mode.php
waf-install-manual.php
waf-install-success.php
waf-install.php
waf-modal-wrapper.php
waf-uninstall-success.php
waf-uninstall.php
Create New File
Create
Edit File: firewall-status.php
<?php if (!defined('WORDFENCE_VERSION')) { exit; } /** * Presents the firewall status. * * Expects $firewall and $dashboard to be defined. * * @var wfFirewall $firewall The firewall state. * @var wfDashboard $dashboard Dashboard statistics. */ ?> <ul class="wf-block-list wf-block-list-horizontal"> <?php if ($firewall->firewallMode() == 'enabled' && $firewall->ruleMode() == wfFirewall::RULE_MODE_PREMIUM): ?> <li> <div class="wf-block-labeled-value wf-waf-status wf-waf-status-full-enabled"> <div class="wf-block-labeled-value-label"><?php switch (wfLicense::current()->getType()) { case wfLicense::TYPE_RESPONSE: esc_html_e('Wordfence Firewall & Response License Enabled', 'wordfence'); break; case wfLicense::TYPE_CARE: esc_html_e('Wordfence Firewall & Care License Enabled', 'wordfence'); break; default: esc_html_e('Wordfence Firewall & Premium Enabled', 'wordfence'); break; } ?></div> </div> </li> <?php else: ?> <li> <?php if ($firewall->firewallMode() == wfFirewall::FIREWALL_MODE_DISABLED): ?> <div class="wf-waf-status-disabled"> <p><h3><?php esc_html_e('Wordfence Firewall Deactivated', 'wordfence'); ?></h3></p> <p><?php esc_html_e('The Wordfence Web Application Firewall is a PHP-based, application-level firewall that filters out malicious requests to your site. It is designed to run at the beginning of WordPress\' initialization to filter any attacks before plugins or themes can run any potentially vulnerable code.', 'wordfence'); ?></p> <p> <a class="wf-btn wf-btn-primary wf-btn-callout-subtle" href="#" target="_blank" rel="noopener noreferrer" id="waf-top-enable-firewall" role="button"><?php esc_html_e('Enable Firewall', 'wordfence'); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a> <script type="application/javascript"> (function($) { $(function() { $('#waf-top-enable-firewall').on('click', function(e) { e.preventDefault(); e.stopPropagation(); WFAD.setOption('wafStatus', 'enabled', function() { window.location.reload(true); }); }); }); })(jQuery); </script> </p> </div> <?php else: ?> <?php if ($firewall->firewallMode() == wfFirewall::FIREWALL_MODE_ENABLED): ?> <div class="wf-block-labeled-value wf-waf-status wf-waf-status-<?php echo esc_attr($firewall->firewallMode()); ?>"> <div class="wf-block-labeled-value-value"><i class="wf-fa wf-fa-check" aria-hidden="true"></i></div> <div class="wf-block-labeled-value-label"><?php esc_html_e('Wordfence Firewall Activated', 'wordfence'); ?></div> </div> <?php elseif ($firewall->firewallMode() == wfFirewall::FIREWALL_MODE_LEARNING): ?> <div> <?php $learningMode = $firewall->learningModeStatus(); if (function_exists('network_admin_url') && is_multisite()) { $optionsURL = network_admin_url('admin.php?page=WordfenceWAF&subpage=waf_options'); } else { $optionsURL = admin_url('admin.php?page=WordfenceWAF&subpage=waf_options'); } ?> <p><h3><?php echo ($learningMode === true ? esc_html__('Learning Mode Enabled', 'wordfence') : esc_html(sprintf(/* translators: Localized date. */ __('Learning Mode Until %s', 'wordfence'), wfUtils::formatLocalTime(get_option('date_format'), $learningMode)))); ?></h3></p> <p><?php echo wp_kses(__('<i class="wf-fa wf-fa-lightbulb-o wf-tip" aria-hidden="true"></i> When you first install the Wordfence Web Application Firewall, it will be in learning mode. This allows Wordfence to learn about your site so that we can understand how to protect it and how to allow normal visitors through the firewall. We recommend you let Wordfence learn for a week before you enable the firewall.', 'wordfence'), array('i'=>array('class'=>array()))); ?></p> <p><a class="wf-btn wf-btn-primary wf-btn-callout-subtle" href="<?php echo esc_url($optionsURL); ?>"><?php esc_html_e('Manage Firewall', 'wordfence'); ?></a> <a class="wf-btn wf-btn-callout-subtle wf-btn-default" href="<?php echo wfSupportController::esc_supportURL(wfSupportController::ITEM_FIREWALL_WAF); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Learn More', 'wordfence'); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a></p> </div> <?php endif; ?> <?php endif; ?> </li> <li> <?php if ($firewall->ruleMode() == wfFirewall::RULE_MODE_COMMUNITY): ?> <div> <p><h3><?php esc_html_e('Premium Protection Disabled', 'wordfence'); ?></h3></p> <p><?php esc_html_e('As a free Wordfence user, you are currently using the Community version of the Threat Defense Feed. Premium users are protected by additional firewall rules and malware signatures. Upgrade to Premium today to improve your protection.', 'wordfence'); ?></p> <p><a class="wf-btn wf-btn-primary wf-btn-callout-subtle" href="https://www.wordfence.com/gnl1wafUpgrade/wordfence-signup/#premium-order-form" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Upgrade to Premium', 'wordfence'); ?></a> <a class="wf-btn wf-btn-callout-subtle wf-btn-default" href="https://www.wordfence.com/gnl1wafLearn/wordfence-signup/" target="_blank" rel="noopener noreferrer"><?php esc_html_e('Learn More', 'wordfence'); ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a></p> </div> <?php else: ?> <div class="wf-block-labeled-value wf-protection-status wf-protection-status-<?php echo esc_attr($firewall->ruleMode()); ?>"> <div class="wf-block-labeled-value-value"><i class="wf-fa wf-fa-check" aria-hidden="true"></i></div> <div class="wf-block-labeled-value-label"><?php esc_html_e('Premium Protection Enabled', 'wordfence'); ?></div> </div> <?php endif; ?> </li> <?php endif; ?> </ul>
Save Changes
Rename File
Rename