Server : LiteSpeed System : Linux server321.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : apotdzgr ( 7060) PHP Version : 8.0.30 Disable Function : NONE Directory : /home/apotdzgr/www/wp-content/plugins/nextend-facebook-connect/ |
Upload File : |
<?php /* Plugin Name: Nextend Social Login Plugin URI: https://nextendweb.com/ Description: Nextend Social Login displays social login buttons for Facebook, Google and X (formerly Twitter). Version: 3.1.13 Requires PHP: 7.0 Requires at least: 4.9 Author: Nextendweb Author URI: https://nextendweb.com/social-login/ 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); }