*/ namespace RankMath\Admin; use RankMath\KB; use RankMath\CMB2; use RankMath\Helper; use RankMath\Traits\Hooker; use RankMath\Admin\Admin_Helper; use MyThemeShop\Helpers\Param; defined( 'ABSPATH' ) || exit; /** * Registration class. */ class Registration { use Hooker; /** * Page slug. * * @var string */ private $slug = 'rank-math-registration'; /** * The text string array. * * @var array */ protected $strings = null; /** * Is registration invalid. * * @var bool */ public $invalid = false; /** * CMB2 object * * @var \CMB2 */ public $cmb = null; /** * The Constructor. */ public function __construct() { // Strings passed in from the config file. $this->strings = [ 'title' => esc_html__( 'Rank Math Product Registration', 'rank-math' ), 'return-to-dashboard' => esc_html__( 'Return to dashboard', 'rank-math' ), ]; $this->step = 'register'; $this->step_slug = 'register'; $this->invalid = Helper::is_invalid_registration(); if ( $this->invalid ) { $this->action( 'admin_menu', 'admin_menu' ); $this->action( 'admin_init', 'redirect_to_welcome' ); $this->action( 'cmb2_admin_init', 'registration_form' ); $this->action( 'admin_post_rank_math_save_registration', 'save_registration' ); $this->action( 'admin_post_rank_math_skip_wizard', 'skip_wizard' ); $this->action( 'admin_init', 'render_page', 30 ); } } /** * Redirect to welcome page. * * Redirect the user to the welcome page after plugin activation. */ public function redirect_to_welcome() { if ( ! $this->can_redirect() ) { return; } $url = ''; if ( $this->invalid ) { $url = 'registration'; } elseif ( ! get_option( 'rank_math_wizard_completed' ) ) { $url = 'wizard'; } wp_redirect( Helper::get_admin_url( $url ) ); exit; } /** * Add menu items. */ public function admin_menu() { add_menu_page( esc_html__( 'Rank Math', 'rank-math' ), esc_html__( 'Rank Math', 'rank-math' ), 'manage_options', $this->slug, [ $this, 'render_page' ] ); } /** * Register registration form. */ public function registration_form() { $this->cmb = new_cmb2_box([ 'id' => 'rank-math-wizard', 'object_types' => [ 'options-page' ], 'option_key' => 'rank-math-wizard', 'hookup' => false, 'save_fields' => false, ]); $this->cmb->add_field([ 'id' => 'username', 'type' => 'text', 'name' => esc_html__( 'Username/Email', 'rank-math' ), 'classes' => 'nob nopb rank-math-validate-field', 'attributes' => [ 'data-rule-required' => 'true', 'autocomplete' => 'off', ], ]); $this->cmb->add_field([ 'id' => 'validation_code', 'type' => 'text', 'name' => esc_html__( 'Password', 'rank-math' ), 'classes' => 'nob nopb rank-math-validate-field', 'attributes' => [ 'data-rule-required' => 'true', 'autocomplete' => 'off', 'type' => 'password', ], ]); $this->cmb->add_field([ 'id' => 'rank-math-usage-tracking', 'type' => 'checkbox', /* translators: Link to Rank Math privay policy */ 'name' => sprintf( __( 'Gathering usage data helps us make Rank Math SEO plugin better - for you. By understanding how you use Rank Math, we can introduce new features and find out if existing features are working well for you. If you don’t want us to collect data from your website, uncheck the tickbox. Please note that licensing information may still be sent back to us for authentication. We collect data anonymously, read more %s.', 'rank-math' ), 'here' ), 'classes' => 'nob nopb', 'default' => Helper::get_settings( 'general.usage_tracking' ) ? 'on' : 'off', ]); CMB2::pre_init( $this->cmb ); } /** * Output the admin page. */ public function render_page() { // Early bail if we're not on the right page. if ( Param::get( 'page' ) !== $this->slug ) { return; } if ( ob_get_length() ) { ob_end_clean(); } $assets = new Assets; $assets->register(); wp_styles()->done = []; wp_scripts()->done = []; // Enqueue styles. \CMB2_hookup::enqueue_cmb_css(); \CMB2_hookup::enqueue_cmb_js(); // Wizard. wp_enqueue_style( 'rank-math-wizard', rank_math()->plugin_url() . 'assets/admin/css/setup-wizard.css', [ 'wp-admin', 'buttons', 'cmb2-styles', 'rank-math-common', 'rank-math-cmb2' ], rank_math()->version ); wp_enqueue_script( 'rank-math-wizard', rank_math()->plugin_url() . 'assets/admin/js/wizard.js', [ 'jquery', 'rank-math-common', 'rank-math-validate' ], rank_math()->version, true ); wp_localize_script( 'rank-math-wizard', 'wp', [] ); $logo_url = ''; ob_start(); /** * Start the actual page content. */ include_once $this->get_view( 'header' ); include_once $this->get_view( 'content' ); include_once $this->get_view( 'footer' ); exit; } /** * Render page body. */ protected function body() { ?>
invalid ) { ?>

FREE Rank Math account to use Rank Math on this site.', 'rank-math' ) ), KB::get( 'free-account' ) ); ?>

notification->display(); ?> cmb->show_form(); ?> print_script(); } /** * Execute save handler for current step. */ public function save_registration() { // If no form submission, bail. $referer = Param::post( '_wp_http_referer' ); if ( Param::post( 'step' ) !== 'register' ) { return wp_safe_redirect( $referer ); } check_admin_referer( 'rank-math-wizard', 'security' ); Admin_Helper::allow_tracking(); $show_content = $this->register_handler( $this->cmb->get_sanitized_values( $_POST ) ); $redirect = true === $show_content ? Helper::get_admin_url( 'wizard' ) : $referer; wp_safe_redirect( $redirect ); exit; } /** * Skip wizard handler. */ public function skip_wizard() { check_admin_referer( 'rank-math-wizard', 'security' ); add_option( 'rank_math_registration_skip', true ); Admin_Helper::allow_tracking(); wp_safe_redirect( Helper::get_admin_url( 'wizard' ) ); exit; } /** * Authenticate registration. * * @param array $values Array of values for the step to process. */ private function register_handler( $values ) { if ( ! isset( $values['username'] ) ) { delete_option( 'rank_math_connect_data' ); return; } $values = wp_parse_args( $values, [ 'username' => '', 'validation_code' => '', ] ); return Admin_Helper::register_product( $values['username'], $values['validation_code'] ); } /** * Can redirect to setup/registration page after install. * * @return bool */ private function can_redirect() { if ( ! get_transient( '_rank_math_activation_redirect' ) ) { return false; } delete_transient( '_rank_math_activation_redirect' ); if ( ( ! empty( $_GET['page'] ) && in_array( $_GET['page'], [ 'rank-math-registration', 'rank-math-wizard' ], true ) ) || ! current_user_can( 'manage_options' ) ) { return false; } return true; } /** * Get view file to display. * * @param string $view View to display. * @return string */ private function get_view( $view ) { if ( 'navigation' === $view ) { $view = 'no-navigation'; } return rank_math()->admin_dir() . "wizard/views/{$view}.php"; } /** * Print Javascript. */ private function print_script() { ?>