| Server IP : 62.72.47.131 / Your IP : 216.73.217.34 Web Server : Apache/2.4.66 (Debian) System : Linux 975cdb959a49 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : ( 501) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/nextend-facebook-connect/admin/templates/ |
Upload File : |
<?php
defined('ABSPATH') || die();
/** @var $view string */
$allowedSubviews = array(
'general',
'privacy',
'login-form',
'comment',
'custom-actions',
'woocommerce',
'buddypress',
'memberpress',
'userpro',
'ultimate-member',
'easy-digital-downloads'
);
$subview = (!empty($_GET['subview']) && in_array($_GET['subview'], $allowedSubviews)) ? $_GET['subview'] : 'general';
$settings = NextendSocialLogin::$settings;
$proBadge = '';
if (!NextendSocialLoginAdmin::isPro()) {
$proBadge = '<span class="nsl-pro-badge">Pro</span>';
}
?>
<div class="nsl-admin-content">
<h1><?php _e('Global Settings', 'nextend-facebook-connect'); ?></h1>
<div class="nsl-admin-sub-nav-bar">
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('general'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'general'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('General', 'nextend-facebook-connect'); ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('privacy'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'privacy'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Privacy', 'nextend-facebook-connect'); ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('login-form'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'login-form'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Login Form', 'nextend-facebook-connect'); ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('comment'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'comment'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Comment', 'nextend-facebook-connect'); ?><?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('woocommerce'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'woocommerce'): ?> nsl-admin-nav-tab-active<?php endif; ?>">WooCommerce<?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('buddypress'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'buddypress'): ?> nsl-admin-nav-tab-active<?php endif; ?>">BuddyPress<?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('memberpress'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'memberpress'): ?> nsl-admin-nav-tab-active<?php endif; ?>">MemberPress<?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('userpro'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'userpro'): ?> nsl-admin-nav-tab-active<?php endif; ?>">UserPro<?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('ultimate-member'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'ultimate-member'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Ultimate
Member<?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('easy-digital-downloads'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'easy-digital-downloads'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Easy
Digital Downloads<?php echo $proBadge; ?></a>
<a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('custom-actions'); ?>"
class="nsl-admin-nav-tab<?php if ($subview === 'custom-actions'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Custom Actions', 'nextend-facebook-connect'); ?><?php echo $proBadge; ?></a>
</div>
<form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
<?php wp_nonce_field('nextend-social-login'); ?>
<input type="hidden" name="action" value="nextend-social-login"/>
<input type="hidden" name="view" value="<?php echo esc_attr($view); ?>"/>
<input type="hidden" name="subview" value="<?php echo esc_attr($subview); ?>"/>
<input type="hidden" name="settings_saved" value="1"/>
<?php
include(dirname(__FILE__) . '/settings/' . $subview . '.php');
?>
</form>
</div>