PluginProbe ʕ •ᴥ•ʔ
Limit Login Attempts Security – Login Security, 2FA, Firewall, Brute Force Prevention / 3.2.4
Limit Login Attempts Security – Login Security, 2FA, Firewall, Brute Force Prevention v3.2.4
3.2.4 3.2.3 3.2.2 3.2.1 3.2.0 trunk 2.0.0 2.1.0 2.10.0 2.10.1 2.11.0 2.12.0 2.12.1 2.12.2 2.12.3 2.13.0 2.14.0 2.15.0 2.15.1 2.15.2 2.16.0 2.17.0 2.17.1 2.17.2 2.17.3 2.17.4 2.18.0 2.19.0 2.19.1 2.19.2 2.2.0 2.20.0 2.20.1 2.20.2 2.20.3 2.20.4 2.20.5 2.20.6 2.21.0 2.21.1 2.22.0 2.22.1 2.23.0 2.23.1 2.23.2 2.24.0 2.24.1 2.25.0 2.25.1 2.25.10 2.25.11 2.25.12 2.25.13 2.25.14 2.25.15 2.25.16 2.25.17 2.25.18 2.25.19 2.25.2 2.25.20 2.25.21 2.25.22 2.25.23 2.25.24 2.25.25 2.25.26 2.25.27 2.25.28 2.25.29 2.25.3 2.25.4 2.25.5 2.25.6 2.25.7 2.25.8 2.25.9 2.26.0 2.26.1 2.26.10 2.26.11 2.26.12 2.26.13 2.26.14 2.26.15 2.26.16 2.26.17 2.26.18 2.26.19 2.26.2 2.26.20 2.26.21 2.26.22 2.26.23 2.26.24 2.26.25 2.26.26 2.26.27 2.26.28 2.26.3 2.26.4 2.26.5 2.26.6 2.26.7 2.26.8 2.26.9 2.3.0 2.4.0 2.5.0 2.6.1 2.6.2 2.6.3 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.8.0 2.8.1 2.9.0 3.0.0 3.0.1 3.0.2 3.1.0
limit-login-attempts-reloaded / views / tab-logs-custom.php
limit-login-attempts-reloaded / views Last commit date
app-widgets 2 weeks ago emails 2 weeks ago admin-dashboard-widgets.php 2 weeks ago chart-circle-failed-attempts-today.php 2 weeks ago chart-failed-attempts.php 2 weeks ago mfa-rescue-pdf.php 2 weeks ago mfa-rescue-popup.php 2 weeks ago mfa-rescue-prefetch-confirm.php 2 weeks ago micro-cloud-modal.php 2 weeks ago notices.php 2 weeks ago onboarding-popup.php 2 weeks ago options-page.php 2 weeks ago tab-dashboard.php 2 weeks ago tab-debug.php 2 weeks ago tab-help.php 2 weeks ago tab-logs-custom.php 2 weeks ago tab-logs-local.php 2 weeks ago tab-mfa.php 2 weeks ago tab-premium.php 2 weeks ago tab-settings.php 2 weeks ago
tab-logs-custom.php
53 lines
1 <?php
2 /**
3 * Login Firewall
4 *
5 * @var bool $is_exhausted
6 * @var bool $is_active_app_custom
7 * @var string $block_sub_group
8 * @var string $upgrade_premium_url
9 *
10 */
11
12
13 if ( ! defined( 'ABSPATH' ) ) exit();
14 ?>
15
16 <div id="llar-setting-page-logs__active" class="limit-login-app-dashboard">
17
18 <?php if ( $is_active_app_custom && $block_sub_group === 'Micro Cloud' && $is_exhausted ) : ?>
19
20 <div id="llar-header-login-custom-message">
21 <div class="message-flex">
22 <div class="col-first">
23 <img src="<?php echo LLA_PLUGIN_URL ?>assets/css/images/micro-cloud-image-min.png">
24 </div>
25 <div class="col-second">
26 <?php _e( 'Your Micro Cloud plan has exhausted its requests for the month, which is required to operate the Login Firewall.', 'limit-login-attempts-reloaded' ) ?>
27 </div>
28 <div class="col-third">
29 <div class="row-first">
30 <?php echo sprintf(
31 __( 'You can <a href="%s" class="link__style_color_inherit llar_bold" target="_blank">Upgrade to Premium</a> to increase requests.', 'limit-login-attempts-reloaded' ),
32 $upgrade_premium_url );
33 ?>
34 </div>
35 <div class="row-second">
36 <hr><span><?php _e( 'Or', 'limit-login-attempts-reloaded' ) ?></span><hr>
37 </div>
38 <div class="row-third">
39 <?php _e( 'Switch to the failover to access IP management tools with the free version.', 'limit-login-attempts-reloaded' ) ?>
40 </div>
41 </div>
42 </div>
43 </div>
44
45 <?php endif; ?>
46
47 <?php include_once( LLA_PLUGIN_DIR.'views/app-widgets/login-attempts.php'); ?>
48 <?php include_once( LLA_PLUGIN_DIR.'views/app-widgets/active-lockouts.php'); ?>
49 <?php include_once( LLA_PLUGIN_DIR.'views/app-widgets/event-log.php'); ?>
50 <?php include_once( LLA_PLUGIN_DIR.'views/app-widgets/country-access-rules.php'); ?>
51 <?php include_once( LLA_PLUGIN_DIR.'views/app-widgets/acl-rules.php'); ?>
52
53 </div>