| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/surerank/inc/modules/ai-auth/ |
Upload File : |
<?php
/**
* Auth Module Init
*
* Handles the initialization and hooks for SureRank Auth functionality.
*
* @package SureRank\Inc\Modules\Ai_Auth
* @since 1.4.2
*/
namespace SureRank\Inc\Modules\Ai_Auth;
use SureRank\Inc\Traits\Get_Instance;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Init class
*
* Handles initialization and WordPress hooks for instant indexing.
*/
class Init {
use Get_Instance;
/**
* Constructor
*
* @since 1.4.2
*/
public function __construct() {
if ( ! defined( 'SURERANK_BILLING_PORTAL' ) ) {
define( 'SURERANK_BILLING_PORTAL', 'https://my.surerank.com/' );
}
Controller::get_instance();
// Hook into the filter to add this module's API controller.
add_filter( 'surerank_api_controllers', [ $this, 'register_api_controller' ], 20 );
add_filter( 'surerank_common_localization_vars', [ $this, 'add_localization_vars' ] );
}
/**
* Add localisation variables
*
* @since 1.4.2
* @param array<string, mixed> $variables Localisation variables.
* @return array<string, mixed> Localisation variables.
*/
public function add_localization_vars( $variables ) {
return array_merge(
$variables,
[
'ai_authenticated' => Controller::get_instance()->get_auth_status(),
]
);
}
/**
* Register API controller for this module.
*
* @since 1.4.2
* @param array<string> $controllers Existing controllers.
* @return array<string> Updated controllers.
*/
public function register_api_controller( $controllers ) {
$controllers[] = '\SureRank\Inc\Modules\Ai_Auth\Api';
return $controllers;
}
}