PluginProbe
Login Lockdown & Protection / 2.12
Login Lockdown & Protection v2.12
trunk 1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.7.1 1.8 1.8.1 1.82 1.83 2.0 2.02 2.05 2.06 2.07 2.08 2.09 2.10 2.11 2.12 2.13 2.14 All 28 releases
login-lockdown / interface / tab_temp_access.php

tab_temp_access.php in Login Lockdown & Protection 2.12, at interface/tab_temp_access.php

23 lines 906 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Login Lockdown
5 * https://wploginlockdown.com/
6 * (c) WebFactory Ltd, 2022 - 2024, www.webfactoryltd.com
7 */
8
9 class LoginLockdown_Tab_Temporary_Access extends LoginLockdown
10 {
11 static function display()
12 {
13 echo '<div class="tab-content">';
14
15 echo '<div class="notice-box-info">
16 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.
17 </div>';
18
19 echo '<img style="width: 100%;" src="' . esc_url(LOGINLOCKDOWN_PLUGIN_URL) . '/images/temporary-access.png" alt="Login Lockdown" title="Login Lockdown Temporary Access Links" />';
20 echo '</div>';
21 } // display
22 } // class LoginLockdown_Tab_2FA
23