| Current File : /home/pariaqke/www/wp-content/plugins/loginpress/classes/class-loginpress-promotion-tabs.php |
<?php
/**
* LoginPress Promotion Tabs Class.
*
* This is an Promotion class. Purpose of this class is to show a list of all the add-ons available to extend the functionality of LoginPress.
*
* @package LoginPress
* @since 1.1.24
* @version 6.2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'LoginPress_Promotion_Tabs' ) ) :
/**
* LoginPress Promotion Tabs Class.
*
* Handles promotion tabs for LoginPress addons.
*
* @package LoginPress
* @since 1.1.24
* @version 1.4.5
*/
class LoginPress_Promotion_Tabs {
/**
* Class Constructor.
*
* @since 1.1.24
* @return void
*/
public function __construct() {
$this->hooks();
}
/**
* Hook into actions and filters.
*
* @since 1.1.24
* @return void
*/
public function hooks() {
add_filter( 'loginpress_settings_tab', array( $this, 'loginpress_promotion_tab' ), 10, 1 );
}
/**
* Loginpress_login_redirects_tab Setting tab for Login Redirects.
*
* @param array<string, mixed> $loginpress_tabs Tabs of free version.
* @return array<string, mixed> $loginpress_promotion_tab Promotion tabs.
* @since 1.1.24
* @version 1.4.5
*/
public function loginpress_promotion_tab( $loginpress_tabs ) {
$loginpress_promotion_tab = array(
array(
'id' => 'loginpress_captcha_settings',
'title' => __( 'Captchas', 'loginpress' ),
'sub-title' => __( 'CAPTCHA Protection Settings', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-captcha' ),
),
array(
'id' => 'loginpress_autologin',
'title' => __( 'Auto Login', 'loginpress' ),
'sub-title' => __( 'No More Manual Login', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-auto-login' ),
),
array(
'id' => 'loginpress_hidelogin',
'title' => __( 'Hide Login', 'loginpress' ),
'sub-title' => __( 'Hide your login page', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-hide-login' ),
),
array(
'id' => 'loginpress_limit_login_attempts',
'title' => __( 'Limit Login Attempts', 'loginpress' ),
'sub-title' => __( 'Limits for login attempts', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-limit-login-attempts' ),
),
array(
'id' => 'loginpress_login_redirects',
'title' => __( 'Login Redirects', 'loginpress' ),
'sub-title' => __( 'Automatically redirects the login', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-login-redirects' ),
),
array(
'id' => 'loginpress_social_logins',
'title' => __( 'Social Login', 'loginpress' ),
'sub-title' => __( 'Third Party login access', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-social-login' ),
),
array(
'id' => 'loginpress_integration_settings',
'title' => __( 'Integrations', 'loginpress' ),
'sub-title' => __( 'All Plugin Integrations', 'loginpress' ),
'desc' => $this->tabs_description( 'loginpress-integration' ),
),
array(
'id' => 'loginpress_premium',
'title' => sprintf(
// translators: Upgrade to Pro.
esc_html__( 'Upgrade to Pro%1$s for More Features%2$s', 'loginpress' ),
'<span>',
'</span>'
),
),
);
$loginpress_promotion_tab = array_merge( $loginpress_tabs, $loginpress_promotion_tab );
return $loginpress_promotion_tab;
}
/**
* Return promoted Add-on description.
*
* @param string $slug Add-on slug.
* @param bool $button Show button or not.
* @since 1.1.24
* @version 3.0.8
* @return string
*/
public function tabs_description( $slug, $button = true ) {
$desc = '';
if ( 'loginpress-hide-login' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__( 'This LoginPress add-on lets you change the login page URL to anything you want. It will give a hard time to spammers who keep hitting to your login page. This is helpful for Brute force attacks. One caution to use this add-on is you need to remember the custom login url after you change it. We have an option to email your custom login url so you remember it.', 'loginpress' ) . '</p>' . $this->addon_video( 'How Hide Login Works', 'FSE2BH_biZg' ) . $this->upgrade_now( 'utm_source=loginpress-lite&utm_medium=hide-login-settings&utm_campaign=pro-upgrade&utm_content=UPGRADE+NOW+CTA', $button );
} elseif ( 'loginpress-limit-login-attempts' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__( 'Everybody needs a control of their Login page. This will help you to track your login attempts by each user. You can limit the login attempts for each user. Brute force attacks are the most common way to gain access to your website. This add-on acts as a sheild to these hacking attacks and gives you control to set the time between each login attempts.', 'loginpress' ) . '</p>' . $this->addon_video( 'How Limit Login Login Attempts Works', '1-L14gHC8R0' ) . $this->upgrade_now( 'utm_source=loginpress-lite&utm_medium=limit-login-attempts-settings&utm_campaign=pro-upgrade&utm_content=UPGRADE+NOW+CTA', $button );
} elseif ( 'loginpress-social-login' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__( 'Social login from LoginPress is an add-on which provides facility your users to login and Register via Facebook, Google and Twitter. This add-on will eliminate the Spam and Bot registrations. This add-on will help your users to hassle free registrations/logins on your site.', 'loginpress' ) . '</p>' . $this->addon_video( 'How Social Logins Works', 'EReYVYmdyeY' ) . $this->upgrade_now( 'utm_source=loginpress-lite&utm_medium=social-login-settings&utm_campaign=pro-upgrade&utm_content=UPGRADE+NOW+CTA', $button );
} elseif ( 'loginpress-login-redirects' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__( 'Redirect users based on their roles and specific usernames. This is helpful, If you have an editor and want to redirect him to his editor stats page. Restrict your subscribers, guests or even customers to certain pages instead of wp-admin. This add-on has a cool UX/UI to manage all the login redirects you have created on your site.', 'loginpress' ) . '</p>' . $this->addon_video( 'How Login Redirects Works', 'EYqt8-iegeQ' ) . $this->upgrade_now( 'utm_source=loginpress-lite&utm_medium=login-redirects-settings&utm_campaign=pro-upgrade&utm_content=UPGRADE+NOW+CTA', $button );
} elseif ( 'loginpress-auto-login' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__( 'This LoginPress add-on lets you (Adminstrator) generates a unique URL for your certain users who you don\'t want to provide a password to login into your site. This Pro add-on gives you a list of all the users who you have given auto generated login links. You can disable someones access and delete certain users.', 'loginpress' ) . '</p>' . $this->addon_video( 'How Auto Login Works', 'M2M3G2TB9Dk' ) . $this->upgrade_now( 'utm_source=loginpress-lite&utm_medium=auto-login-settings&utm_campaign=pro-upgrade&utm_content=UPGRADE+NOW+CTA', $button );
} elseif ( 'loginpress-captcha' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__( 'The LoginPress CAPTCHA feature lets you easily integrate different types of CAPTCHA services into your login and registration forms. CAPTCHA types offered include Google reCAPTCHA, hCAPTCHA, and other widely used CAPTCHA services. This feature helps prevent spam, bot attacks, and authorized access, ensuring a more secure user experience.', 'loginpress' ) . $this->addon_video( 'How To Use LoginPress With Google reCaptcha V2', '26dUFdX2srU' ) . '</p>' . $this->upgrade_now( 'utm_source=loginpress-lite&utm_medium=captchas-settings&utm_campaign=pro-upgrade&utm_content=UPGRADE+NOW+CTA', $button );
} elseif ( 'loginpress-integration' === $slug ) {
$desc .= '<p class="loginpress-addon-promotion-desc prom-content">' . esc_html__(
'LoginPress integrates with the most popular WordPress plugins to enhance your login experience. Our Social Login, CAPTCHA and Limit Login Attempts features among others are easily integrated into these platforms, helping you streamline user access and enhance security.',
'loginpress'
) . '</p>';
$integrations = array(
array(
'key' => 'woocommerce',
'img' => 'woocommerce.svg',
'alt' => __( 'WooCommerce', 'loginpress' ),
'title' => __( 'WooCommerce', 'loginpress' ),
'desc' => __( 'Quick, secure logins for your WooCommerce store.', 'loginpress' ),
'dataTarget' => '.enable_captcha_woo, .enable_social_woo',
'utmContent' => 'WOO+UPGRADE+CTA',
),
array(
'key' => 'edd',
'img' => 'edd.svg',
'alt' => __( 'Easy Digital Downloads', 'loginpress' ),
'title' => __( 'Easy Digital Downloads', 'loginpress' ),
'desc' => __( 'Secure digital purchases with login enhancements.', 'loginpress' ),
'dataTarget' => '.enable_captcha_edd, .enable_social_login_links_edd',
'utmContent' => 'EDD+UPGRADE+CTA',
),
array(
'key' => 'buddypress',
'img' => 'buddypress.svg',
'alt' => __( 'BuddyPress', 'loginpress' ),
'title' => __( 'BuddyPress', 'loginpress' ),
'desc' => __( 'Boost community logins with social and captcha support.', 'loginpress' ),
'dataTarget' => '.enable_captcha_bp, .enable_social_login_links_bp',
'utmContent' => 'BUDDYPRESS+UPGRADE+CTA',
),
array(
'key' => 'buddyboss',
'img' => 'buddyboss.svg',
'alt' => __( 'BuddyBoss', 'loginpress' ),
'title' => __( 'BuddyBoss', 'loginpress' ),
'desc' => __( 'Hassle-free login experience for your BuddyBoss community.', 'loginpress' ),
'dataTarget' => '.enable_captcha_bb, .enable_social_login_links_bb',
'utmContent' => 'BUDDYBOSS+UPGRADE+CTA',
),
array(
'key' => 'lifterlms',
'img' => 'lifterlms.svg',
'alt' => __( 'LifterLMS', 'loginpress' ),
'title' => __( 'LifterLMS', 'loginpress' ),
'desc' => __( 'Let students log in easily and securely.', 'loginpress' ),
'dataTarget' => '.enable_captcha_llms, .enable_social_login_links_lifterlms',
'utmContent' => 'LIFTERLMS+UPGRADE+CTA',
),
array(
'key' => 'learndash',
'img' => 'learndash.svg',
'alt' => __( 'LearnDash', 'loginpress' ),
'title' => __( 'LearnDash', 'loginpress' ),
'desc' => __( 'Simplify learning access with our login tools.', 'loginpress' ),
'dataTarget' => '.enable_captcha_ld, .enable_social_ld',
'utmContent' => 'LEARNDASH+UPGRADE+CTA',
),
);
$desc .= '<div id="loginpress-integration-management">
<div id="integration-cards-container" class="loginpress-integration-container" style="display: flex; flex-wrap: wrap;">';
foreach ( $integrations as $integration ) {
$desc .= '<div class="loginpress-integration-card" data-integration="' . esc_attr( $integration['key'] ) . '" data-target="' . esc_attr( $integration['dataTarget'] ) . '">
<div class="loginpress-integration-head">
<img src="' . esc_url( ( defined( 'LOGINPRESS_DIR_URL' ) ? LOGINPRESS_DIR_URL : '' ) . 'img/' . $integration['img'] ) . '" alt="' . esc_attr( $integration['alt'] ) . '">
</div>
<div class="loginpress-integration-body">
<h3>' . esc_html( $integration['title'] ) . '</h3>
<p>' . esc_html( $integration['desc'] ) . '</p>
</div>
<div class="loginpress-integration-foot">
<a href="https://loginpress.pro/pricing/?utm_source=loginpress-lite&utm_medium=integrations-settings&utm_campaign=pro-upgrade&utm_content=' . esc_attr( $integration['utmContent'] ) . '" target="_blank" class="loginpress-integration-button">'
. esc_html__( 'Upgrade Now', 'loginpress' ) .
'</a>
</div>
</div>';
}
$desc .= '</div></div>';
}
return $desc;
}
/**
* Return video of the Add-on.
*
* @param string $title Video title.
* @param string $code Video code.
* @return string
*/
public function addon_video( $title, $code ) {
return '<hr /><div class="loginpress-addon-promotion-video">
<h3><span class="dashicons dashicons-dashboard"></span> ' . sprintf(
// translators: Video title.
esc_html__( 'Video: %s', 'loginpress' ),
$title
) . '</h3>
<div class="inside">
<iframe width="800" height="400" src="https://www.youtube.com/embed/' . $code . '?showinfo=0&enablejsapi=1" frameborder="0" allowfullscreen="" style=" max-width: 100%;" class="loginPress-feature-video"></iframe>
</div>
</div>';
}
/**
* Return Upgrade Button of the promoted Add-on.
*
* @param string $url URL parameters.
* @param bool $button Show button or not.
* @return string
*/
public function upgrade_now( $url, $button ) {
if ( $button ) {
return '<div class="loginpress-promotion-big-button"><a target="_blank" href="https://loginpress.pro/pricing/?' . $url . '" class="button-primary upgrade_now_link">' . esc_html__( 'UPGRADE NOW', 'loginpress' ) . '</a></div>';
}
return '';
}
}
endif;
$loginpress_promotion_tabs = new LoginPress_Promotion_Tabs();