Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/backup/msckey.com/wp-content/plugins/google-site-kit/includes/Core/User/ |
Upload File : |
<?php /** * Class Google\Site_Kit\Core\User\User * * @package Google\Site_Kit\Core\User * @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\Core\User; use Google\Site_Kit\Core\Storage\User_Options; /** * Class for handling audience settings rest routes. * * @since 1.134.0 * @access private * @ignore */ class User { /** * Audience_Segmentation instance. * * @since 1.134.0 * @var Audience_Segmentation */ private $audience_segmentation; /** * Constructor. * * @since 1.134.0 * * @param User_Options $user_options User_Options instance. */ public function __construct( User_Options $user_options ) { $this->audience_segmentation = new Audience_Segmentation( $user_options ); } /** * Registers functionality through WordPress hooks. * * @since 1.134.0 */ public function register() { $this->audience_segmentation->register(); } }