PluginProbe ʕ •ᴥ•ʔ
Nextend Social Login and Register / trunk
Nextend Social Login and Register vtrunk
trunk 1.0 1.1 1.2 1.4 1.4.9 1.6.0 2.0.2 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.17 3.0.18 3.0.19 3.0.2 3.0.20 3.0.21 3.0.22 3.0.23 3.0.24 3.0.25 3.0.27 3.0.28 3.0.29 3.0.3 3.0.4 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 3.1.19 3.1.2 3.1.20 3.1.21 3.1.22 3.1.23 3.1.25 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9
nextend-facebook-connect / admin / interim.php
nextend-facebook-connect / admin Last commit date
images 4 months ago templates 4 months ago templates-provider 4 months ago EditUser.php 6 years ago admin.php 2 months ago interim.php 6 years ago style.css 4 months ago upgrader.php 2 months ago
interim.php
38 lines
1 <?php
2 if (!defined('ABSPATH')) {
3 exit;
4 }
5
6 global $interim_login;
7 $customize_login = isset($_REQUEST['customize-login']);
8 if ($customize_login) {
9 wp_enqueue_script('customize-base');
10 }
11
12 $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
13 $interim_login = 'success';
14 ?><!DOCTYPE html>
15 <!--[if IE 8]>
16 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8" <?php language_attributes(); ?>>
17 <![endif]-->
18 <!--[if !(IE 8) ]><!-->
19 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
20 <!--<![endif]-->
21 <head>
22 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>"/>
23 <title><?php __('You have logged in successfully.'); ?></title>
24 </head>
25 <body class="login interim-login interim-login-success">
26 <?php
27 echo $message;
28 /** This action is documented in wp-login.php */
29 do_action('login_footer'); ?>
30 <?php if ($customize_login) : ?>
31 <script type="text/javascript">setTimeout(function () {
32 new wp.customize.Messenger({url: '<?php echo wp_customize_url(); ?>', channel: 'login'}).send(
33 'login');
34 }, 1000);</script>
35 <?php endif; ?>
36 </body>
37 </html>
38 <?php exit;