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 / product-deleted.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
product-deleted.php
17 lines
1 <?php
2 /**
3 * Product Deleted Webhook Configuration
4 *
5 * @package MicrosoftClarity
6 * @since 0.10.21
7 */
8
9 // Exit if accessed directly
10 defined( 'ABSPATH' ) || exit;
11
12 return array(
13 'name' => 'BrandAgent Product Deleted',
14 'topic' => 'product.deleted',
15 'endpoint' => BRANDAGENT_WEBHOOK_BASE_URL . 'products/deleted',
16 );
17