API
8 months ago
mu-plugin
5 months ago
class-consent-manager.php
8 months ago
class-features.php
5 months ago
class-my-account.php
8 months ago
class-pixel-builder.php
5 months ago
class-universal.php
3 weeks ago
class-wc-analytics-tracking.php
3 weeks ago
class-woo-analytics-trait.php
3 weeks ago
class-woocommerce-analytics.php
3 weeks ago
class-consent-manager.php
34 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Consent management for WP Consent API integration |
| 4 | * |
| 5 | * @package automattic/woocommerce-analytics |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Woocommerce_Analytics; |
| 9 | |
| 10 | /** |
| 11 | * Manages consent checking for WooCommerce Analytics |
| 12 | */ |
| 13 | class Consent_Manager { |
| 14 | |
| 15 | /** |
| 16 | * WP Consent API's consent type we check for analytics tracking |
| 17 | */ |
| 18 | const WP_CONSENT_API_STATISTICS_TYPE = 'statistics'; |
| 19 | |
| 20 | /** |
| 21 | * Check if user has consent for analytics tracking |
| 22 | * |
| 23 | * @return bool |
| 24 | */ |
| 25 | public static function has_analytics_consent() { |
| 26 | if ( ! function_exists( 'wp_has_consent' ) ) { |
| 27 | // If WP Consent API is not available, default to true for backward compatibility |
| 28 | return true; |
| 29 | } |
| 30 | |
| 31 | return \wp_has_consent( self::WP_CONSENT_API_STATISTICS_TYPE ); |
| 32 | } |
| 33 | } |
| 34 |