File manager - Edit - /home/verseaumee/maze/wp-content/plugins/reddit-for-woocommerce/includes/Tracking/EventIdRegistry.php
Back
<?php /** * Registry for generating and retrieving unique event IDs per tracking type. * * Used to support event deduplication between Pixel and CAPI by ensuring * that both share the same event_id value for each specific product or order. * * @package RedditForWooCommerce\Tracking * @since 0.1.0 */ namespace RedditForWooCommerce\Tracking; /** * Provides unique, consistent event IDs for each product/order event type. * * IDs are generated per-request and cached in memory. For cart events, * IDs can optionally be persisted in cookies or frontend-localized for reuse. * * @since 0.1.0 */ final class EventIdRegistry { /** * Returns a order key for the given purchase. * * Uses the WooCommerce order ID as the key. * * @since 0.1.0 * * @param int $order_id The Order ID. * * @return string Order key. */ public static function get_purchase_id( $order_id ): string { $order = wc_get_order( $order_id ); return $order instanceof \WC_Order ? (string) $order->get_order_key() : ''; } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings