??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/am1atec.co.uk/wp-content/plugins/surerank/inc/google-search-console/utils.php
⬅ Kembali
<?php
/**
* Helper
*
* @package surerank
* @since 1.0.0
*/
namespace SureRank\Inc\GoogleSearchConsole;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Helper
* This class will handle all helper functions.
*
* @since 1.0.0
*/
class Utils {
/**
* Encrypt data using base64.
*
* @param string $input The input string which needs to be encrypted.
* @since 1.0.0
* @return string The encrypted string.
*/
public static function encrypt( $input ) {
// If the input is empty or not a string, then abandon ship.
if ( empty( $input ) || ! is_string( $input ) ) {
return '';
}
// Encrypt the input and return it.
$base_64 = base64_encode( $input ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
return rtrim( $base_64, '=' );
}
/**
* Decrypt data using base64.
*
* @param string $input The input string which needs to be decrypted.
* @since 1.0.0
* @return string The decrypted string.
*/
public static function decrypt( $input ) {
// If the input is empty or not a string, then abandon ship.
if ( empty( $input ) || ! is_string( $input ) ) {
return '';
}
// Decrypt the input and return it.
$base_64 = $input . str_repeat( '=', strlen( $input ) % 4 );
return base64_decode( $base_64 );
}
/**
* Get SureRank SaaS Auth API URL
*
* @return string
*/
public static function get_saas_auth_api_url() {
return defined( 'SURERANK_SAAS_AUTH_API_URL' ) ? SURERANK_SAAS_AUTH_API_URL : 'https://api.surerank.com/';
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 auth.php
php
8.1 KB
2026-06-21 06:40
🐘 controller.php
php
22.2 KB
2026-06-21 06:40
🐘 dashboard.php
php
10.1 KB
2026-06-21 06:40
🐘 google-console.php
php
2.7 KB
2026-06-21 06:40
🐘 site-verification.php
php
10.6 KB
2026-06-21 06:40
🐘 url-inspection.php
php
11.4 KB
2026-06-21 06:40
🐘 utils.php
php
1.5 KB
2026-06-21 06:40