PluginProbe ʕ •ᴥ•ʔ
Advanced Google reCAPTCHA / 1.21
Advanced Google reCAPTCHA v1.21
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 2 years ago tab_captcha.php 2 years ago tab_design.php 2 years ago tab_firewall.php 2 years ago tab_geoip.php 2 years ago tab_login_form.php 2 years ago tab_temp_access.php 2 years ago
tab_temp_access.php
22 lines
1 <?php
2 /**
3 * WP Captcha
4 * https://getwpcaptcha.com/
5 * (c) WebFactory Ltd, 2022 - 2023, 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