PluginProbe ʕ •ᴥ•ʔ
Advanced Google reCAPTCHA / 5.40
Advanced Google reCAPTCHA v5.40
5.40 5.39 trunk 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35
advanced-google-recaptcha / interface / tab_temp_access.php
advanced-google-recaptcha / interface Last commit date
tab_activity.php 4 months ago tab_captcha.php 3 months ago tab_design.php 4 months ago tab_firewall.php 4 months ago tab_geoip.php 4 months ago tab_login_form.php 4 months ago tab_temp_access.php 4 months ago
tab_temp_access.php
22 lines
1 <?php
2 /**
3 * WP Captcha
4 * https://getwpcaptcha.com/
5 * (c) WebFactory Ltd, 2022 - 2026, www.webfactoryltd.com
6 */
7
8 class WPCaptcha_Tab_Temporary_Access extends WPCaptcha
9 {
10 static function display()
11 {
12 echo '<div class="tab-content">';
13
14 echo '<div class="notice-box-info">
15 Temporary Access links are a convenient way to give temporary access to other people. You can set the lifetime of the link and the maximum number of times it can be used to prevent abuse. <a href="#" class="open-pro-dialog" data-pro-feature="temp-access">Get PRO now</a> to use the Temporary Links feature.
16 </div>';
17
18 echo '<img class="open-upsell open-upsell-block" data-feature="temporary_access" style="width: 100%;" src="' . esc_url(WPCAPTCHA_PLUGIN_URL) . '/images/temporary-access.png" alt="WP Captcha" title="WP Captcha Temporary Access Links" />';
19 echo '</div>';
20 } // display
21 } // class WPCaptcha_Tab_2FA
22