| Server IP : 104.21.25.182 / Your IP : 216.73.216.38 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/www/wp-content/plugins/nextend-facebook-connect/ |
Upload File : |
<?php
/*
Plugin Name: Nextend Social Login
Plugin URI: https://social-login.nextendweb.com/
Description: Nextend Social Login displays social login buttons for Facebook, Google and X (formerly Twitter).
Version: 3.1.22
Requires PHP: 7.0
Requires at least: 4.9
Author: Nextendweb
Author URI: https://nextendweb.com/
License: GPL2
Text Domain: nextend-facebook-connect
Domain Path: /languages
*/
if (!defined('NSL_PATH_FILE')) {
define('NSL_PATH_FILE', __FILE__);
}
if (!defined('NSL_PATH')) {
define('NSL_PATH', dirname(NSL_PATH_FILE));
}
if (!defined('NSL_PLUGIN_BASENAME')) {
define('NSL_PLUGIN_BASENAME', plugin_basename(NSL_PATH_FILE));
}
if (!version_compare(PHP_VERSION, '7.0', '>=')) {
add_action('admin_notices', 'nsl_fail_php_version');
} elseif (!version_compare(get_bloginfo('version'), '4.6', '>=')) {
add_action('admin_notices', 'nsl_fail_wp_version');
} else {
require_once(NSL_PATH . '/nextend-social-login.php');
}
function nsl_fail_php_version() {
/* translators: %2$s: PHP version */
$message = sprintf(esc_html__('%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE.', 'nextend-facebook-connect'), 'Nextend Social Login', '7.0');
$html_message = sprintf('<div class="error">%s</div>', wpautop($message));
echo wp_kses_post($html_message);
}
function nsl_fail_wp_version() {
/* translators: %2$s: WordPress version */
$message = sprintf(esc_html__('%1$s requires WordPress version %2$s+. Because you are using an earlier version, the plugin is currently NOT ACTIVE.', 'nextend-facebook-connect'), 'Nextend Social Login', '4.6');
$html_message = sprintf('<div class="error">%s</div>', wpautop($message));
echo wp_kses_post($html_message);
}