403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.0
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/yme/wp-content/plugins/google-site-kit/includes/Modules/Ads/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/yme/wp-content/plugins/google-site-kit/includes/Modules/Ads/PAX_Config.php
<?php
/**
 * Class Google\Site_Kit\Modules\Ads\PAX_Config
 *
 * @package   Google\Site_Kit
 * @copyright 2024 Google LLC
 * @license   https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
 * @link      https://sitekit.withgoogle.com
 */

namespace Google\Site_Kit\Modules\Ads;

use Google\Site_Kit\Context;
use Google\Site_Kit\Core\Authentication\Token;

/**
 * Class representing PAX configuration.
 *
 * @since 1.128.0
 * @access private
 * @ignore
 */
class PAX_Config {

	/**
	 * Context instance.
	 *
	 * @since 1.128.0
	 * @var Context
	 */
	private $context;

	/**
	 * Token instance.
	 *
	 * @since 1.128.0
	 * @var Token
	 */
	private $token;

	/**
	 * Constructor.
	 *
	 * @since 1.128.0
	 *
	 * @param Context $context Context instance.
	 * @param Token   $token   Token instance.
	 */
	public function __construct( Context $context, Token $token ) {
		$this->context = $context;
		$this->token   = $token;
	}

	/**
	 * Gets the configuration data.
	 *
	 * @since 1.128.0
	 * @return array
	 */
	public function get() {
		$token = $this->token->get();

		return array(
			'authAccess'      => array(
				'oauthTokenAccess' => array(
					'token' => $token['access_token'] ?? '',
				),
			),
			'locale'          => substr( $this->context->get_locale( 'user' ), 0, 2 ),
			'debuggingConfig' => array(
				'env' => $this->get_env(),
			),
		);
	}

	/**
	 * Gets the environment configuration.
	 *
	 * @since 1.128.0
	 * @return string
	 */
	protected function get_env() {
		$allowed = array( 'PROD', 'QA_PROD' );

		if ( defined( 'GOOGLESITEKIT_PAX_ENV' ) && in_array( GOOGLESITEKIT_PAX_ENV, $allowed, true ) ) {
			return GOOGLESITEKIT_PAX_ENV;
		}

		return 'PROD';
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit