<?php
/**
* Plugin Name: LoginPress
* Plugin URI: https://loginpress.pro?utm_source=loginpress-lite&utm_medium=plugin-header&utm_campaign=pro-upgrade&utm_content=plugin-uri
* Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/?utm_source=loginpress-lite&utm_medium=plugins&utm_campaign=wpbrigade-home&utm_content=WPBrigade-text-link">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
* Version: 3.2.2
* Author: LoginPress
* Author URI: https://loginpress.pro?utm_source=loginpress-lite&utm_medium=plugin-header&utm_campaign=pro-upgrade&utm_content=author-uri
* Text Domain: loginpress
* Domain Path: /languages
*
* @package loginpress
* @category Core
* @author WPBrigade
*/


if ( ! function_exists( 'loginpress_wpb53407382' ) ) {
    // Create a helper function for easy SDK access.
    function loginpress_wpb53407382() {
        global $loginpress_wpb53407382;

        if ( ! isset( $loginpress_wpb53407382 ) ) {
            // Include Telemetry SDK.
            require_once dirname(__FILE__) . '/lib/wpb-sdk/start.php';

            $loginpress_wpb53407382 = wpb_dynamic_init([
                'id'                  => '6',
                'slug'                => 'loginpress',
                'type'                => 'plugin',
                'public_key'          => '1|4aOA8EuyIN4pi2miMvC23LLpnHbBZFNki9R9pVmwd673d3c8',
                'secret_key'          => 'sk_b36c525848fee035',
                'is_premium'          => false,
                'has_addons'          => false,
                'has_paid_plans'      => false,
                'menu'                => [
                    'slug'           => 'loginpress',
                    'account'        => false,
                    'support'        => false,
                ],
                'settings'           => [ 'loginpress_customization' => '' , 'loginpress_setting' => '' , 'loginpress_addon_active_time' => '' , 'loginpress_addon_dismiss_1' => '' , 'loginpress_review_dismiss' => '' , 'loginpress_active_time' => '' , '_loginpress_optin' => '' , 'loginpress_friday_sale_active_time' => '' , 'loginpress_friday_sale_dismiss' => '' , 'loginpress_friday_21_sale_dismiss' => '' ],
            ]);
        }

        return $loginpress_wpb53407382;
    }

    // Init Telemetry.
    loginpress_wpb53407382();
    // Signal that SDK was initiated.
    do_action( 'loginpress_wpb53407382_loaded' );
}

if ( ! class_exists( 'LoginPress' ) ) :

	final class LoginPress {

		/**
		* @var string
		*/
		public $version = '3.2.2';

		/**
		* @var The single instance of the class
		* @since 1.0.0
		*/
		protected static $_instance = null;

		/**
		* @var WP_Session session
		*/
		public $session = null;

		/**
		* @var WP_Query $query
		*/
		public $query = null;

		/**
		* @var WP_Countries $countries
		*/
		public $countries = null;

		/**
		 * Class Constructor.
		 */
		public function __construct() {

			$this->define_constants();
			$this->includes();
			$this->_hooks();
		}

		/**
		* Define LoginPress Constants
		*/
		private function define_constants() {

			$this->define( 'LOGINPRESS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
			$this->define( 'LOGINPRESS_DIR_PATH', plugin_dir_path( __FILE__ ) );
			$this->define( 'LOGINPRESS_DIR_URL', plugin_dir_url( __FILE__ ) );
			$this->define( 'LOGINPRESS_ROOT_PATH',  dirname( __FILE__ ) . '/' );
			$this->define( 'LOGINPRESS_ROOT_FILE', __FILE__ );
			$this->define( 'LOGINPRESS_VERSION', $this->version );
			$this->define( 'LOGINPRESS_FEEDBACK_SERVER', 'https://wpbrigade.com/' );
		}

		/**
		 * Include required core files used in admin and on the frontend.
		 *
		 * @since 1.0.0
		 * @version 3.0.0
		 */
		public function includes() {

			include_once( LOGINPRESS_DIR_PATH . 'include/compatibility.php' );
			include_once( LOGINPRESS_DIR_PATH . 'custom.php' );
			include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-setup.php' );
			include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-ajax.php' );
			// include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-filter-plugin.php' );
			include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-developer-hooks.php' );
			include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-notifications.php' );
			if ( is_multisite() ) {
				require_once( LOGINPRESS_DIR_PATH . 'include/class-loginpress-theme-template.php' );
			}

			$loginpress_setting = get_option( 'loginpress_setting' );

			$loginpress_privacy_policy = isset( $loginpress_setting['enable_privacy_policy'] ) ?  $loginpress_setting['enable_privacy_policy'] : 'off';
			if ( 'off' != $loginpress_privacy_policy ) {
				include_once( LOGINPRESS_DIR_PATH . 'include/privacy-policy.php' );
			}

			$login_with_email = isset( $loginpress_setting['login_order'] ) ?  $loginpress_setting['login_order'] : 'default';
			if ( 'default' != $login_with_email ) {
				include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-login-order.php' );
				new LoginPress_Login_Order();
			}

			$enable_reg_pass_field = isset( $loginpress_setting['enable_reg_pass_field'] ) ?  $loginpress_setting['enable_reg_pass_field'] : 'off';
			if ( 'off' != $enable_reg_pass_field ) {
				include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-custom-password.php' );
				new LoginPress_Custom_Password();
			}	
			$loginpress_password_reset_time_limit = isset( $loginpress_setting['loginpress_password_reset_time_limit'] ) ?  $loginpress_setting['loginpress_password_reset_time_limit'] : 'off';
			if ( 'off' != $loginpress_password_reset_time_limit ) {
				include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-force-reset-pass.php' );
				new LoginPress_Force_Password_Reset();
			}
			
		}

		/**
		* Hook into actions and filters
		* @since  1.0.0
		* @version 3.0.0
		*/
		private function _hooks() {

			add_action( 'admin_menu',                 array( $this, 'register_options_page' ) );
			add_action( 'plugins_loaded',             array( $this, 'textdomain' ) );
			add_filter( 'plugin_row_meta',            array( $this, '_row_meta'), 10, 2 );
			add_action( 'admin_enqueue_scripts',      array( $this, '_admin_scripts' ) );
			add_action( 'admin_footer',               array( $this, 'add_deactivate_modal' ) );
			add_action( 'plugin_action_links', 	      array( $this, 'loginpress_action_links' ), 10, 2 );
			add_action( 'admin_init',                 array( $this, 'redirect_optin' ) );
			add_filter( 'auth_cookie_expiration',     array( $this, '_change_auth_cookie_expiration' ), 10, 3 );
			add_action( 'wp_wpb_sdk_after_uninstall', array( $this, 'plugin_uninstallation' ) );
			//add_filter( 'plugins_api',            array( $this, 'get_addon_info_' ) , 100, 3 );
			if ( is_multisite() ) {
				add_action( 'admin_init', array( $this, 'redirect_loginpress_edit_page' ) );
				add_action( 'admin_init', array( $this, 'check_loginpress_page' ) );
					// Makes sure the plugin is defined before trying to use it
				if ( ! function_exists( 'is_plugin_active_for_network' ) || ! function_exists( 'is_plugin_active' ) ) {
					require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
					if ( is_plugin_active_for_network( 'wordpress-seo/wp-seo.php' ) ) {
						/**
						 * This filters the ID of the page/post which you want to remove from the sitemap XML.
						 * @since 1.5.14
						 *
						 * @documentation https://developer.yoast.com/features/xml-sitemaps/api/
						 */
						add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'loginpress_exclude_from_sitemap' ) );
					}
				}
			}
		}

		/**
		* Callback function to exclude LoginPress page from sitemap.
		*
		* @return bool Exclude page/s or post/s.
		* @since 1.5.14
    * @version 1.6.3
		*/
		public function loginpress_exclude_from_sitemap() {

			$page = get_page_by_path( 'loginpress' );
			if ( is_object( $page ) ) {
				return array( $page->ID );
			}
		}

		/**
		* Redirect to Optin page.
		*
		* @since 1.0.15
		*/
		function redirect_optin() {

			/**
			 * Fix the Broken Access Control (BAC) security fix.
			 *
			 * @since 1.6.3
			 */
			if ( current_user_can( 'manage_options' ) ) {
				if ( isset( $_POST['loginpress-submit-optout'] ) ) {
					if ( ! wp_verify_nonce( sanitize_text_field( $_POST['loginpress_submit_optin_nonce'] ), 'loginpress_submit_optin_nonce' ) ) {
						return;
					}
					update_option( '_loginpress_optin', 'no' );
                    // Retrieve WPB SDK existing option and set user_skip
                    $sdk_data = json_decode(get_option('wpb_sdk_loginpress'), true);
                    $sdk_data['user_skip'] = '1';
                    $sdk_data_json = json_encode($sdk_data);
                    update_option('wpb_sdk_loginpress', $sdk_data_json);
				} elseif ( isset( $_POST['loginpress-submit-optin'] ) ) {
					if ( ! wp_verify_nonce( sanitize_text_field( $_POST['loginpress_submit_optin_nonce'] ), 'loginpress_submit_optin_nonce' ) ) {
						return;
					}
					update_option( '_loginpress_optin', 'yes' );
                    //WPB SDK OPT IN OPTIONS
                    $sdk_data = array(
                        'communication'   => '1',
                        'diagnostic_info' => '1',
                        'extensions'      => '1',
                        'user_skip'      => '0',
                    );
                    $sdk_data_json = json_encode($sdk_data);
                    update_option('wpb_sdk_loginpress', $sdk_data_json);
				} elseif ( ! get_option( '_loginpress_optin' ) && isset( $_GET['page'] ) && ( $_GET['page'] === 'loginpress-settings' || $_GET['page'] === 'loginpress' || $_GET['page'] === 'abw' ) ) {

				/**
				 * XSS Attack vector found and fixed.
				 *
				 * @since 1.5.11
				 */
				$page_redirect = $_GET['page'] === 'loginpress'  ? 'loginpress' : 'loginpress-settings';
				wp_redirect( admin_url('admin.php?page=loginpress-optin&redirect-page=' . $page_redirect) );
				exit;

				} elseif ( get_option( '_loginpress_optin' ) && ( get_option( '_loginpress_optin' ) == 'yes' ) && isset( $_GET['page'] ) && $_GET['page'] === 'loginpress-optin' ) {
					wp_redirect( admin_url( 'admin.php?page=loginpress-settings' ) );
					exit;
				}
			}
		}

		/**
		* Main Instance
		*
		* @since 1.0.0
		* @static
		* @see loginPress_loader()
		* @return Main instance
		*/
		public static function instance() {
			if ( is_null( self::$_instance ) ) {
				self::$_instance = new self();
			}
			return self::$_instance;
		}

		/**
		* Load Languages
		* @since 1.0.0
		*/
		public function textdomain() {

			$plugin_dir =  dirname( plugin_basename( __FILE__ ) ) ;
			load_plugin_textdomain( 'loginpress', false, $plugin_dir . '/languages/' );
		}

		/**
		* Define constant if not already set
		* @param  string $name
		* @param  string|bool $value
		*/
		private function define( $name, $value ) {
			if ( ! defined( $name ) ) {
				define( $name, $value );
			}
		}

		/**
		* Init WPBrigade when WordPress Initializes.
		*/
		public function init() {
			// Before init action
		}

		/**
		 * Create LoginPress Page Template.
		 *
		 * @since 1.1.3
		 */
		public function check_loginpress_page() {

			// Retrieve the LoginPress admin page option, that was created during the activation process.
			$option = $this->get_loginpress_page();

			include LOGINPRESS_DIR_PATH . 'include/create-loginpress-page.php';
			// Retrieve the status of the page, if the option is available.
			if ( $option ) {
				$page   = get_post( $option );
				$status = $page->post_status;
			} else {
				$status = null;
			}

			// Check the status of the page. Let's fix it, if the page is missing or in the trash.
			if ( empty( $status ) || 'trash' === $status ) {
				new LoginPress_Page_Create();
			}
		}

		/**
		 * function for redirect the LoginPress page on editing.
		 *
		 * @since 1.1.3
		 */
		public function redirect_loginpress_edit_page() {
			global $pagenow;

			$page = $this->get_loginpress_page();

			if ( ! $page ) {
				return;
			}

			$page_url = get_permalink( $page );
			$page_id  = get_post( $page );
			$page_id  = $page->ID;

			// Generate the redirect url.
			$url = add_query_arg(
				array(
					'autofocus[section]' => 'loginpress_panel',
					'url'                => rawurlencode( $page_url ),
				),
				admin_url( 'customize.php' )
			);

			/* Check current admin page. */
			if ( $pagenow == 'post.php' && isset( $_GET['post'] ) && $_GET['post'] == $page_id ) {
				wp_safe_redirect( $url );
			}
		}

		/**
		 * Add new page in Appearance to customize Login Page.
		 * @version 3.0.0
		 */
		public function register_options_page() {

			add_submenu_page( 'LoginPress', __( 'Activate', 'loginpress' ), __( 'Activate', 'loginpress' ), 'manage_options', 'loginpress-optin', array( $this, 'render_optin' )  );

			add_theme_page( __( 'LoginPress', 'loginpress' ), __( 'LoginPress', 'loginpress' ), 'manage_options', "abw", '__return_null' );
		}


		/**
		 * Show Opt-in Page.
		 *
		 * @since 1.0.15
		 */
		function render_optin() {
			include LOGINPRESS_DIR_PATH . 'include/loginpress-optin-form.php';
		}

		/**
		* Session Expiration
		*
		* @since  1.0.18
		* @version 1.3.2
		*/
		function _change_auth_cookie_expiration( $expiration, $user_id, $remember ) {

			$loginpress_setting = get_option( 'loginpress_setting' );
			$_expiration        = isset( $loginpress_setting['session_expiration'] ) ? intval( $loginpress_setting['session_expiration'] ) : '';

			/**
			 * return the WordPress default $expiration time if LoginPress Session Expiration time set 0 or empty.
			 * @since 1.0.18
			 */
			if ( empty( $_expiration ) || '0' == $_expiration ) {
				return $expiration;
			}

			/**
			 * $filter_role Use filter `loginpress_exclude_role_session` for return the role.
			 * By default it's false and $expiration time will apply on all user.
			 *
			 * @return string/array role name.
			 * @since 1.3.2
			 */
			$filter_role = apply_filters( 'loginpress_exclude_role_session', false );

			if ( $filter_role ) {
				$user_roles = get_userdata( $user_id )->roles;

				// if $filter_role is array, return the default $expiration for each defined role.
				if ( is_array( $filter_role ) ) {
					foreach ( $filter_role as $role ) {
						if ( in_array( $role, $user_roles ) ) {
							return $expiration;
						}
					}
				} else if ( in_array( $filter_role, $user_roles ) ) {
					return $expiration;
				}
			}

			// Convert Duration (minutes) of the expiration period in seconds.
			$expiration = $_expiration * 60;

			return $expiration;
		}

		/**
		 * Load JS or CSS files at admin side and enqueue them
		 * @param  string tell you the Page ID
		 * @return void
		 * @version 3.0.0
		 */
		function _admin_scripts( $hook ) {

			if( $hook == 'toplevel_page_loginpress-settings' || $hook == 'loginpress_page_loginpress-addons' || $hook == 'loginpress_page_loginpress-help' || $hook == 'loginpress_page_loginpress-import-export' || $hook == 'loginpress_page_loginpress-license' || $hook == 'admin_page_loginpress-optin' ) {

				wp_enqueue_style( 'loginpress_style', plugins_url( 'css/style.css', __FILE__ ), array(), LOGINPRESS_VERSION );
				wp_enqueue_script( 'loginpress_js', plugins_url( 'js/admin-custom.js', __FILE__ ), array(), LOGINPRESS_VERSION );

				// Array for localize.
				$loginpress_localize = array(
					'plugin_url' => plugins_url(),
					'localize_translations' => array(
						_x( 'Name', 'Login Redirect Roles', 'loginpress' ),
					),
					'help_nonce' => wp_create_nonce( 'loginpress-log-nonce' ),

				);

				wp_localize_script( 'loginpress_js', 'loginpress_script', $loginpress_localize );
			}

		}

		/**
		 * Add rating icon on plugins page.
		 *
		 * @since 1.0.9
		 * @version 1.1.22
		 */

		public function _row_meta( $meta_fields, $file ) {

			if ( $file != 'loginpress/loginpress.php' ) {
				return $meta_fields;
			}

			echo "<style>.loginpress-rate-stars { display: inline-block; color: #ffb900; position: relative; top: 3px; }.loginpress-rate-stars svg{ fill:#ffb900; } .loginpress-rate-stars svg:hover{ fill:#ffb900 } .loginpress-rate-stars svg:hover ~ svg{ fill:none; } </style>";

			$plugin_rate   = "https://wordpress.org/support/plugin/loginpress/reviews/?rate=5#rate-response";
			$plugin_filter = "https://wordpress.org/support/plugin/loginpress/reviews/?filter=5";
			$svg_xmlns     = "https://www.w3.org/2000/svg";
			$svg_icon      = '';

			for ( $i = 0; $i < 5; $i++ ) {
				$svg_icon .= "<svg xmlns='" . esc_url( $svg_xmlns ) . "' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>";
			}

			// Set icon for thumbs up.
			$meta_fields[] = '<a href="' . esc_url( $plugin_filter ) . '" target="_blank"><span class="dashicons dashicons-thumbs-up"></span>' . __( 'Vote!', 'loginpress' ) . '</a>';

			// Set icon for 5-star reviews. v1.1.22
			$meta_fields[] = "<a href='" . esc_url( $plugin_rate ) . "' target='_blank' title='" . esc_html__( 'Rate', 'loginpress' ) . "'><i class='loginpress-rate-stars'>" . $svg_icon . "</i></a>";

			return $meta_fields;
		}

		/**
		 * Add deactivate modal layout.
		 */
		function add_deactivate_modal() {
			global $pagenow;

			if ( 'plugins.php' !== $pagenow ) {
				return;
			}

			include LOGINPRESS_DIR_PATH . 'include/loginpress-optout-form.php';
		}

		/**
		 * Plugin activation
		 *
		 * @since  1.0.15
		 * @version 1.0.22
		 */
		static function plugin_activation() {

			$loginpress_key     = get_option( 'loginpress_customization' );
			$loginpress_setting = get_option( 'loginpress_setting' );

			// Create a key 'loginpress_customization' with empty array.
			if ( ! $loginpress_key ) {
				update_option( 'loginpress_customization', array() );
			}

			// Create a key 'loginpress_setting' with empty array.
			if ( ! $loginpress_setting ) {
				update_option( 'loginpress_setting', array() );
			}
		}

        function plugin_uninstallation() {
            include_once (LOGINPRESS_DIR_PATH . 'include/uninstall.php');
		}


		/**
		 * Pull the LoginPress page from options.
		 *
		 * @access public
		 * @since 1.1.3
		 * @version 1.1.7
		 */
		public function get_loginpress_page() {

			$loginpress_setting = get_option( 'loginpress_setting', array() );
			if ( ! is_array( $loginpress_setting ) && empty( $loginpress_setting ) ) {
				$loginpress_setting = array();
			}
			$page = array_key_exists( 'loginpress_page', $loginpress_setting ) ? get_post( $loginpress_setting['loginpress_page'] ) : false;

			return $page;
		}


		/**
		 * Add a link to the settings page to the plugins list
		 *
		 * @since  1.0.11
		 * @version 3.0.8
		 */
		public function loginpress_action_links( $links, $file ) {

			static $this_plugin;

			if ( empty( $this_plugin ) ) {
				$this_plugin = 'loginpress/loginpress.php';
			}

            if ($file == $this_plugin) {
                // Build the initial settings and customize links
                $settings_link = sprintf(
                    esc_html__('%1$s Settings %2$s | %3$s Customize %4$s', 'loginpress'),
                    '<a href="' . admin_url('admin.php?page=loginpress-settings') . '">', '</a>',
                    '<a href="' . admin_url('admin.php?page=loginpress') . '">', '</a>'
                );

                // Retrieve WPB SDK Opt Out options
                $sdk_data = json_decode(get_option('wpb_sdk_loginpress'), true);

                // Set default values for options
                $communication = isset($sdk_data['communication']) ? $sdk_data['communication'] : false;
                $diagnostic_info = isset($sdk_data['diagnostic_info']) ? $sdk_data['diagnostic_info'] : false;
                $extensions = isset($sdk_data['extensions']) ? $sdk_data['extensions'] : false;

                // Determine the opt-in state and whether all options are false
                $is_optin = 'yes' == get_option('_loginpress_optin');
                $all_options_false = $communication === false && $diagnostic_info === false && $extensions === false;

                // Build the settings link based on the option states
				if ($communication || $diagnostic_info || $extensions) {
                    $settings_link .= sprintf(
                        esc_html__(' | %1$s Opt Out %2$s ', 'loginpress'),
                        '<a class="opt-out" href="' . admin_url('admin.php?page=loginpress-settings') . '">', '</a>'
                    );
                } else {
                    if ($is_optin) {
                        if ($all_options_false) {
                            // Case 1: Old users without any settings (meaning all options are false)
							// Ensure old users remain fully opted in by setting all options to true.
                            $sdk_data = json_encode([
                                'communication' => '1',
                                'diagnostic_info' => '1',
                                'extensions' => '1',
                                'user_skip' => '0',
                            ]);
                            update_option('wpb_sdk_loginpress', $sdk_data);
							$settings_link .= sprintf(
								esc_html__(' | %1$s Opt Out %2$s ', 'loginpress'),
								'<a class="opt-out" href="' . admin_url('admin.php?page=loginpress-settings') . '">', '</a>'
							);
                        } else {
                            // If opted in and not all options are false, update the opt-in state
                            update_option('_loginpress_optin', 'no');
							// Display opt-in link
							$settings_link .= sprintf(
							esc_html__(' | %1$s Opt In %2$s ', 'loginpress'),
							'<a href="' . admin_url('admin.php?page=loginpress-optin&redirect-page=loginpress-settings') . '">', '</a>'
							);
                        }

                     // Display opt-out link
                    } else {
						$settings_link .= sprintf(
							esc_html__(' | %1$s Opt In %2$s ', 'loginpress'),
							'<a href="' . admin_url('admin.php?page=loginpress-optin&redirect-page=loginpress-settings') . '">', '</a>'
						);

                    }
                }
				
                // Add the settings link to the array
                array_unshift($links, $settings_link);

                // Add Pro upgrade link if not already present
                if (!has_action('loginpress_pro_add_template')) {
                    $pro_link = sprintf(
                        esc_html__('%1$s %3$s Upgrade Pro %4$s %2$s', 'loginpress'),
                        '<a href="https://loginpress.pro/lite/?utm_source=loginpress-lite&utm_medium=plugins&utm_campaign=pro-upgrade&utm_content=Upgrade+Pro" target="_blank">',
                        '</a>', '<span class="loginpress-dashboard-pro-link">', '</span>'
                    );
                    array_push($links, $pro_link);
                }
            }

            return $links;
		}

		// function get_addon_info_( $api, $action, $args ) {

		// 	if ( $action == 'plugin_information' && empty( $api ) && ( ! empty( $_GET['lgp'] )  ) ) {

		// 		$raw_response = wp_remote_post( 'https://wpbrigade.com/loginpress-api/search.php', array(
		// 		'body' => array(
		// 			'slug' => $args->slug
		// 		) )
		// 		);

		// 		if ( is_wp_error( $raw_response ) || $raw_response['response']['code'] != 200 ) {
		// 			return false;
		// 		}

		// 		$plugin = unserialize( $raw_response['body'] );

		// 		$api                = new stdClass();
		// 		$api->name          = $plugin['title'];
		// 		$api->version       = $plugin['version'];
		// 		$api->download_link = $plugin['download_url'];
		// 		$api->tested        = '10.0';

		// 	}

		//   return $api;
		// }
	} // End Of Class.
endif;


/**
* Returns the main instance of WP to prevent the need to use globals.
*
* @since  1.0.0
* @return LoginPress
*/
function loginPress_loader() {
  	return LoginPress::instance();
}

// Call the function
loginPress_loader();

/**
* Create the Object of Custom Login Entities and Settings.
*
* @since  1.0.0
*/
new LoginPress_Entities();
new LoginPress_Settings();

/**
* Create the Object of Remote Notification.
*
* @since  1.0.9
*/
if ( ! class_exists( 'TAV_Remote_Notification_Client' ) ) {
  	require( LOGINPRESS_ROOT_PATH . 'include/class-remote-notification-client.php' );
}
$notification = new TAV_Remote_Notification_Client( 125, '16765c0902705d62', 'https://wpbrigade.com?post_type=notification' );

register_activation_hook( __FILE__, array( 'LoginPress', 'plugin_activation' ) );
