PluginProbe ʕ •ᴥ•ʔ
Microsoft Clarity / 0.10.28
Microsoft Clarity v0.10.28
0.10.29 0.10.28 0.10.27 0.10.26 0.10.25 0.10.24 0.8.0 0.9.0 0.9.1 0.9.2 0.9.3 0.9.4 trunk 0.10.0 0.10.1 0.10.10 0.10.11 0.10.12 0.10.13 0.10.14 0.10.15 0.10.16 0.10.17 0.10.18 0.10.19 0.10.2 0.10.20 0.10.21 0.10.22 0.10.23 0.10.3 0.10.4 0.10.5 0.10.6 0.10.7 0.10.8 0.10.9 0.2 0.4 0.5 0.6 0.6.1 0.7 0.7.1 0.7.2 0.7.3 0.7.4 0.7.5
microsoft-clarity / includes / webhooks / cart-updated.php
microsoft-clarity / includes / webhooks Last commit date
cart-updated.php 5 months ago checkout-created.php 5 months ago order-updated.php 5 months ago product-created.php 5 months ago product-deleted.php 5 months ago product-updated.php 5 months ago
cart-updated.php
19 lines
1 <?php
2 /**
3 * BrandAgent Cart Updated Webhook Configuration
4 *
5 * Custom webhook for tracking cart add/remove/update events
6 *
7 * @package MicrosoftClarity
8 * @since 0.10.21
9 */
10
11 // Exit if accessed directly
12 defined( 'ABSPATH' ) || exit;
13
14 return array(
15 'name' => 'BrandAgent Cart Updated',
16 'topic' => 'cart.updated',
17 'endpoint' => BRANDAGENT_WEBHOOK_BASE_URL . 'cart/updated',
18 );
19