PATH:
home
/
letacommog
/
letacommunication
/
wp-content
/
plugins
/
google-site-kit
/
includes
/
Modules
/
Analytics
<?php /** * Class Google\Site_Kit\Modules\Analytics\Proxy_AccountTicket * * @package Google\Site_Kit\Modules\Analytics * @copyright 2021 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\Analytics; use Google\Site_Kit_Dependencies\Google_Service_Analytics_AccountTicket; /** * Class for the Analytics provisioning Account Ticket object. * * @since 1.9.0 * @access private * @ignore */ class Proxy_AccountTicket extends Google_Service_Analytics_AccountTicket { /** * The site ID. * * @since 1.9.0 * @var String */ public $site_id = ''; /** * The site secret. * * @since 1.9.0 * @var String */ public $site_secret = ''; /** * Gets the site ID. * * @since 1.9.0 */ public function getSiteId() { return $this->site_id; } /** * Sets the site ID. * * @since 1.9.0 * * @param string $id The site id. */ public function setSiteId( $id ) { $this->site_id = $id; } /** * Gets the site secret. * * @since 1.9.0 */ public function getSiteSecret() { return $this->site_secret; } /** * Sets the site secret. * * @since 1.9.0 * * @param string $secret The site secret. */ public function setSiteSecret( $secret ) { $this->site_secret = $secret; } }
[+]
..
[-] Proxy_Provisioning.php
[edit]
[+]
Advanced_Tracking
[-] Google_Service_AnalyticsProvisioning.php
[edit]
[-] Advanced_Tracking.php
[edit]
[-] Tag_Guard.php
[edit]
[-] Web_Tag.php
[edit]
[-] AMP_Tag.php
[edit]
[-] Settings.php
[edit]
[-] Proxy_Account_Ticket.php
[edit]