Files
2026-04-28 15:13:50 +02:00

52 lines
1.2 KiB
PHP

<?php
namespace AIOSEO\Plugin\Pro\Utils;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use AIOSEO\Plugin\Common\Utils as CommonUtils;
use AIOSEO\Plugin\Pro\Traits\Helpers as TraitHelpers;
/**
* Contains helper functions.
*
* @since 4.0.0
*/
class Helpers extends CommonUtils\Helpers {
use TraitHelpers\ThirdParty;
use TraitHelpers\Vue;
/**
* Get the headers for internal API requests.
*
* @since 4.2.4
*
* @return array An array of headers.
*/
public function getApiHeaders() {
$licenseKey = @aioseo()->sensitiveOptions->get( 'licenseKey' );
$networkLicenseKey = is_multisite() && is_object( aioseo()->networkSensitiveOptions ) ? aioseo()->networkSensitiveOptions->get( 'networkLicenseKey' ) : null;
if ( empty( $licenseKey ) && ! empty( $networkLicenseKey ) ) {
$licenseKey = $networkLicenseKey;
}
return [
'Content-Type' => 'application/json',
'X-AIOSEO-License' => $licenseKey
];
}
/**
* Get the User Agent for internal API requests.
*
* @since 4.2.4
*
* @return string The User Agent.
*/
public function getApiUserAgent() {
return 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ) . '; AIOSEO/Pro/' . AIOSEO_VERSION;
}
}