# wp-parsely/3.16.4/src/Telemetry/Tracks/class-tracks.php

Parse.ly, version 3.16.4. 92 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.16.4/code/src/Telemetry/Tracks/class-tracks.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.16.4/raw/src/Telemetry/Tracks/class-tracks.php
- Modified: 2023-12-05T07:32:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-parsely/3.16.4/code/src/Telemetry/Tracks/class-tracks.php#L10-L20`.

```php
<?php
/**
 * Telemetry: Tracks class
 *
 * @package Parsely\Telemetry
 * @since   3.12.0
 */

declare(strict_types=1);

namespace Parsely\Telemetry;

use WP_Error;
use function Parsely\Utils\get_asset_info;
use const Parsely\PARSELY_FILE;
use const Parsely\PARSELY_VERSION;

/**
 * This class comprises the mechanics of sending events to the Automattic Tracks
 * system.
 *
 * @since 3.12.0
 */
class Tracks extends Telemetry_System {
	/**
	 * Registers the events into WordPress hooks to activate tracking.
	 *
	 * @since 3.12.0
	 */
	public function run(): void {
		$this->activate_tracking();
	}

	/**
	 * Records an event to Tracks by using the Tracks pixel.
	 *
	 * Depending on the current context, the pixel will be recorded
	 * synchronously (as a GET request) or as asynchronously (as an injected
	 * pixel into the page's footer).
	 *
	 * If the event doesn't pass validation, it gets silently discarded.
	 *
	 * @since 3.12.0
	 *
	 * @param string                            $event_name The event name. Must be snake_case.
	 * @param array<string, mixed>|array<empty> $event_properties Any additional properties to include with the event.
	 *                                                            Key names must be lowercase and snake_case.
	 * @return bool|WP_Error True if recording the event succeeded.
	 *                       False if telemetry is disabled.
	 *                       WP_Error if recording the event failed.
	 */
	public function record_event(
		string $event_name,
		array $event_properties = array()
	) {
		$event = new Tracks_Event( $event_name, $event_properties );
		$pixel = Tracks_Pixel::instance();

		// Process AJAX/REST request events immediately.
		if ( wp_doing_ajax() || defined( 'REST_REQUEST' ) ) {
			$pixel->record_event_synchronously( $event );
		}

		return $pixel->record_event_asynchronously( $event );
	}

	/**
	 * Registers the events into their respective WordPress hooks, so they
	 * can be recorded when the hook fires.
	 *
	 * @since 3.12.0
	 */
	protected function activate_tracking(): void {
		foreach ( $this->events as $event ) {
			if ( is_string( $event['action_hook'] ) && is_callable( $event['callable'] ) ) {
				$accepted_args = $event['accepted_args'] ?? 1;
				$func          = function () use ( $accepted_args, $event ) {
					if ( $accepted_args > 1 ) {
						$args   = func_get_args();
						$args[] = $this;
					} else {
						$args = array( $this );
					}
					return call_user_func_array( $event['callable'], $args );
				};

				add_filter( $event['action_hook'], $func, 10, (int) $accepted_args );
			}
		}
	}
}

```
