diff --git a/changelog.txt b/changelog.txt index 03766081b2..24e282317f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,9 @@ *** Google for WooCommerce Changelog *** += 2.8.0 - 2024-07-31 = +* Add Google API Pull method. +* Rebranding Google Listings and Ads with Google for WooCommerce. + = 2.7.7 - 2024-07-24 = * Dev - Fix E2E tests failed with WC 9.1. * Tweak - Make campaign preview card responsive. diff --git a/google-listings-and-ads.php b/google-listings-and-ads.php index 243f1c48e9..10857a31bd 100644 --- a/google-listings-and-ads.php +++ b/google-listings-and-ads.php @@ -3,7 +3,7 @@ * Plugin Name: Google for WooCommerce * Plugin URL: https://wordpress.org/plugins/google-listings-and-ads/ * Description: Native integration with Google that allows merchants to easily display their products across Google’s network. - * Version: 2.7.7 + * Version: 2.8.0 * Author: WooCommerce * Author URI: https://woocommerce.com/ * Text Domain: google-listings-and-ads @@ -30,7 +30,7 @@ defined( 'ABSPATH' ) || exit; -define( 'WC_GLA_VERSION', '2.7.7' ); // WRCS: DEFINED_VERSION. +define( 'WC_GLA_VERSION', '2.8.0' ); // WRCS: DEFINED_VERSION. define( 'WC_GLA_MIN_PHP_VER', '7.4' ); define( 'WC_GLA_MIN_WC_VER', '6.9' ); diff --git a/package-lock.json b/package-lock.json index fba28e05e9..afc2dd60fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "google-listings-and-ads", - "version": "2.7.7", + "version": "2.8.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 93be7c9295..47d2e1b0d7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "google-listings-and-ads", "title": "Google for WooCommerce", - "version": "2.7.7", + "version": "2.8.0", "description": "Google for WooCommerce", "author": "Automattic", "license": "GPL-3.0-or-later", diff --git a/readme.txt b/readme.txt index 6dd1d2428c..445dcdd876 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Requires at least: 5.9 Tested up to: 6.6 Requires PHP: 7.4 Requires PHP Architecture: 64 Bits -Stable tag: 2.7.7 +Stable tag: 2.8.0 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -111,6 +111,10 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis == Changelog == += 2.8.0 - 2024-07-31 = +* Add Google API Pull method. +* Rebranding Google Listings and Ads with Google for WooCommerce. + = 2.7.7 - 2024-07-24 = * Dev - Fix E2E tests failed with WC 9.1. * Tweak - Make campaign preview card responsive. @@ -120,7 +124,4 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis * Tweak - WC 9.1 compatibility. * Tweak - WP 6.6 compatibility. -= 2.7.5 - 2024-06-26 = -* Add - Add an query parameter `campaign=saved` to the dashboard URL after the campaign was created. - [See changelog for all versions](https://raw.githubusercontent.com/woocommerce/google-listings-and-ads/trunk/changelog.txt). diff --git a/src/API/Site/Controllers/RestAPI/AuthController.php b/src/API/Site/Controllers/RestAPI/AuthController.php index 66b49592f8..38bb9eecec 100644 --- a/src/API/Site/Controllers/RestAPI/AuthController.php +++ b/src/API/Site/Controllers/RestAPI/AuthController.php @@ -18,7 +18,7 @@ * * @package Automattic\WooCommerce\GoogleListingsAndAds\API\Site\Controllers\RestAPI * - * @since x.x.x + * @since 2.8.0 */ class AuthController extends BaseController { diff --git a/src/API/WP/NotificationsService.php b/src/API/WP/NotificationsService.php index 3545d08f91..b1892e7de2 100644 --- a/src/API/WP/NotificationsService.php +++ b/src/API/WP/NotificationsService.php @@ -16,7 +16,7 @@ * Class NotificationsService * This class implements a service to Notify a partner about Shop Data Updates * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\API\WP */ class NotificationsService implements Service, OptionsAwareInterface { @@ -84,7 +84,7 @@ public function notify( string $topic, $item_id = null, $data = [] ): bool { /** * Allow users to disable the notification request. * - * @since x.x.x + * @since 2.8.0 * * @param bool $value The current filter value. True by default. * @param int $item_id The item_id for the notification. diff --git a/src/API/WP/OAuthService.php b/src/API/WP/OAuthService.php index 5b110786e8..768fb477c0 100644 --- a/src/API/WP/OAuthService.php +++ b/src/API/WP/OAuthService.php @@ -24,7 +24,7 @@ * Class OAuthService * This class implements a service to handle WordPress.com OAuth. * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\API\WP */ class OAuthService implements Service, OptionsAwareInterface, Deactivateable, ContainerAwareInterface { diff --git a/src/Coupon/CouponHelper.php b/src/Coupon/CouponHelper.php index 7a02b25ce2..6ea601eb00 100644 --- a/src/Coupon/CouponHelper.php +++ b/src/Coupon/CouponHelper.php @@ -351,7 +351,7 @@ public function is_ready_to_notify( WC_Coupon $coupon ): bool { /** * Allow users to filter if a coupon is ready to notify. * - * @since x.x.x + * @since 2.8.0 * * @param bool $value The current filter value. * @param WC_Coupon $coupon The coupon for the notification. diff --git a/src/Coupon/SyncerHooks.php b/src/Coupon/SyncerHooks.php index 1638603090..3c165ea8ef 100644 --- a/src/Coupon/SyncerHooks.php +++ b/src/Coupon/SyncerHooks.php @@ -287,7 +287,7 @@ protected function handle_delete_coupon( int $coupon_id ) { /** * Send the notification for coupon deletion * - * @since x.x.x + * @since 2.8.0 * @param int $coupon_id */ protected function maybe_send_delete_notification( int $coupon_id ): void { diff --git a/src/DB/Query/ShippingTimeQuery.php b/src/DB/Query/ShippingTimeQuery.php index ce2089cc4c..49ce9ef485 100644 --- a/src/DB/Query/ShippingTimeQuery.php +++ b/src/DB/Query/ShippingTimeQuery.php @@ -47,7 +47,7 @@ protected function sanitize_value( string $column, $value ) { /** * Get all shipping times. * - * @since x.x.x + * @since 2.8.0 * * @return array */ diff --git a/src/HelperTraits/Utilities.php b/src/HelperTraits/Utilities.php index 40f90b8867..1840a20cb9 100644 --- a/src/HelperTraits/Utilities.php +++ b/src/HelperTraits/Utilities.php @@ -82,7 +82,7 @@ protected function is_jetpack_connected(): bool { /** * Encode data to Base64URL * - * @since x.x.x + * @since 2.8.0 * * @param string $data The string that will be base64 URL encoded. * @@ -101,7 +101,7 @@ protected function base64url_encode( $data ): string { /** * Decode Base64URL string * - * @since x.x.x + * @since 2.8.0 * * @param string $data The data that will be base64 URL encoded. * diff --git a/src/Hooks/README.md b/src/Hooks/README.md index 62852a2dc8..39dc33da4c 100644 --- a/src/Hooks/README.md +++ b/src/Hooks/README.md @@ -8,7 +8,15 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [BulkEditInitializer.php#L36](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/BulkEdit/BulkEditInitializer.php#L36) +- [BulkEditInitializer.php#L36](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/BulkEdit/BulkEditInitializer.php#L36) + +## jetpack_verify_api_authorization_request_error_double_encode + +**Type**: action + +**Used in**: + +- [JetpackWPCOM.php#L223](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Integration/JetpackWPCOM.php#L223) ## woocommerce_admin_disabled @@ -16,7 +24,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCAdminValidator.php#L38](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Internal/Requirements/WCAdminValidator.php#L38) +- [WCAdminValidator.php#L38](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Internal/Requirements/WCAdminValidator.php#L38) ## woocommerce_gla_ads_billing_setup_status @@ -24,8 +32,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Ads.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L113) -- [Ads.php#L122](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L122) +- [Ads.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L113) +- [Ads.php#L122](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L122) ## woocommerce_gla_ads_client_exception @@ -33,24 +41,24 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AdsAssetGroupAsset.php#L135](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsAssetGroupAsset.php#L135) -- [AdsAssetGroupAsset.php#L201](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsAssetGroupAsset.php#L201) -- [Ads.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L74) -- [Ads.php#L118](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L118) -- [Ads.php#L167](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L167) -- [Ads.php#L209](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L209) -- [Ads.php#L319](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Ads.php#L319) -- [AdsReport.php#L105](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsReport.php#L105) -- [AdsAssetGroup.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsAssetGroup.php#L113) -- [AdsAssetGroup.php#L261](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsAssetGroup.php#L261) -- [AdsAssetGroup.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsAssetGroup.php#L325) -- [AdsCampaign.php#L141](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsCampaign.php#L141) -- [AdsCampaign.php#L184](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsCampaign.php#L184) -- [AdsCampaign.php#L247](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsCampaign.php#L247) -- [AdsCampaign.php#L302](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsCampaign.php#L302) -- [AdsCampaign.php#L339](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsCampaign.php#L339) -- [AdsConversionAction.php#L100](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsConversionAction.php#L100) -- [AdsConversionAction.php#L146](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsConversionAction.php#L146) +- [AdsAssetGroupAsset.php#L135](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsAssetGroupAsset.php#L135) +- [AdsAssetGroupAsset.php#L201](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsAssetGroupAsset.php#L201) +- [Ads.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L74) +- [Ads.php#L118](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L118) +- [Ads.php#L167](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L167) +- [Ads.php#L209](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L209) +- [Ads.php#L319](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Ads.php#L319) +- [AdsReport.php#L105](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsReport.php#L105) +- [AdsAssetGroup.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsAssetGroup.php#L113) +- [AdsAssetGroup.php#L261](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsAssetGroup.php#L261) +- [AdsAssetGroup.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsAssetGroup.php#L325) +- [AdsCampaign.php#L141](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsCampaign.php#L141) +- [AdsCampaign.php#L184](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsCampaign.php#L184) +- [AdsCampaign.php#L247](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsCampaign.php#L247) +- [AdsCampaign.php#L302](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsCampaign.php#L302) +- [AdsCampaign.php#L339](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsCampaign.php#L339) +- [AdsConversionAction.php#L100](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsConversionAction.php#L100) +- [AdsConversionAction.php#L146](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsConversionAction.php#L146) ## woocommerce_gla_ads_setup_completed @@ -58,7 +66,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [SetupCompleteController.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/Ads/SetupCompleteController.php#L66) +- [SetupCompleteController.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/Ads/SetupCompleteController.php#L66) ## woocommerce_gla_attribute_applicable_product_types_ @@ -66,8 +74,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributesForm.php#L98](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Product/Attributes/AttributesForm.php#L98) -- [AttributeManager.php#L295](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/Attributes/AttributeManager.php#L295) +- [AttributesForm.php#L98](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Product/Attributes/AttributesForm.php#L98) +- [AttributeManager.php#L368](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/Attributes/AttributeManager.php#L368) ## woocommerce_gla_attribute_hidden_product_types_ @@ -75,7 +83,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributesForm.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Product/Attributes/AttributesForm.php#L103) +- [AttributesForm.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Product/Attributes/AttributesForm.php#L103) ## woocommerce_gla_attribute_mapping_sources @@ -83,7 +91,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IsFieldTrait.php#L31](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L31) +- [IsFieldTrait.php#L31](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L31) ## woocommerce_gla_attribute_mapping_sources_custom_attributes @@ -91,7 +99,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IsFieldTrait.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L125) +- [IsFieldTrait.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L125) ## woocommerce_gla_attribute_mapping_sources_global_attributes @@ -99,7 +107,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IsFieldTrait.php#L64](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L64) +- [IsFieldTrait.php#L64](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L64) ## woocommerce_gla_attribute_mapping_sources_product_fields @@ -107,7 +115,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IsFieldTrait.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L115) +- [IsFieldTrait.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L115) ## woocommerce_gla_attribute_mapping_sources_taxonomies @@ -115,7 +123,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IsFieldTrait.php#L65](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L65) +- [IsFieldTrait.php#L65](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L65) ## woocommerce_gla_attributes_tab_applicable_product_types @@ -123,7 +131,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributesTrait.php#L18](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Product/Attributes/AttributesTrait.php#L18) +- [AttributesTrait.php#L18](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Product/Attributes/AttributesTrait.php#L18) ## woocommerce_gla_batch_deleted_products @@ -131,7 +139,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L229](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L229) +- [ProductSyncer.php#L228](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L228) ## woocommerce_gla_batch_retry_delete_products @@ -139,7 +147,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L343](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L343) +- [ProductSyncer.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L342) ## woocommerce_gla_batch_retry_update_products @@ -147,7 +155,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L287](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L287) +- [ProductSyncer.php#L286](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L286) ## woocommerce_gla_batch_updated_products @@ -155,7 +163,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L143) +- [ProductSyncer.php#L142](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L142) ## woocommerce_gla_batched_job_size @@ -163,8 +171,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AbstractBatchedActionSchedulerJob.php#L104](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/AbstractBatchedActionSchedulerJob.php#L104) -- [UpdateSyncableProductsCount.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/UpdateSyncableProductsCount.php#L74) +- [AbstractBatchedActionSchedulerJob.php#L104](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/AbstractBatchedActionSchedulerJob.php#L104) +- [UpdateSyncableProductsCount.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/UpdateSyncableProductsCount.php#L74) ## woocommerce_gla_bulk_update_coupon @@ -172,7 +180,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponBulkEdit.php#L133](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/BulkEdit/CouponBulkEdit.php#L133) +- [CouponBulkEdit.php#L133](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/BulkEdit/CouponBulkEdit.php#L133) ## woocommerce_gla_conversion_action_name @@ -180,7 +188,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AdsConversionAction.php#L67](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/AdsConversionAction.php#L67) +- [AdsConversionAction.php#L67](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/AdsConversionAction.php#L67) ## woocommerce_gla_coupon_destinations @@ -188,7 +196,15 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCCouponAdapter.php#L391](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/WCCouponAdapter.php#L391) +- [WCCouponAdapter.php#L391](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/WCCouponAdapter.php#L391) + +## woocommerce_gla_coupon_is_ready_to_notify + +**Type**: filter + +**Used in**: + +- [CouponHelper.php#L359](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponHelper.php#L359) ## woocommerce_gla_coupons_delete_retry_on_failure @@ -196,7 +212,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L438](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L438) +- [CouponSyncer.php#L438](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L438) ## woocommerce_gla_coupons_update_retry_on_failure @@ -204,7 +220,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L400](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L400) +- [CouponSyncer.php#L400](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L400) ## woocommerce_gla_custom_merchant_issues @@ -212,7 +228,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantStatuses.php#L538](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantStatuses.php#L538) +- [MerchantStatuses.php#L538](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantStatuses.php#L538) ## woocommerce_gla_debug_message @@ -220,39 +236,40 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IssuesController.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L95) -- [CouponSyncer.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L103) -- [CouponSyncer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L116) -- [CouponSyncer.php#L141](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L141) -- [CouponSyncer.php#L155](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L155) -- [CouponSyncer.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L172) -- [CouponSyncer.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L195) -- [CouponSyncer.php#L260](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L260) -- [CouponSyncer.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L309) -- [CouponSyncer.php#L328](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L328) -- [CouponHelper.php#L257](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponHelper.php#L257) -- [CouponHelper.php#L294](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponHelper.php#L294) -- [SyncerHooks.php#L178](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/SyncerHooks.php#L178) -- [ProductMetaQueryHelper.php#L109](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/DB/ProductMetaQueryHelper.php#L109) -- [ProductMetaQueryHelper.php#L140](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/DB/ProductMetaQueryHelper.php#L140) -- [ActionSchedulerJobMonitor.php#L117](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/ActionSchedulerJobMonitor.php#L117) -- [ActionSchedulerJobMonitor.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/ActionSchedulerJobMonitor.php#L126) -- [CleanupSyncedProducts.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/CleanupSyncedProducts.php#L74) -- [MerchantCenterService.php#L311](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantCenterService.php#L311) -- [MerchantStatuses.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantStatuses.php#L413) -- [MerchantStatuses.php#L667](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantStatuses.php#L667) -- [MerchantStatuses.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantStatuses.php#L916) -- [WCProductAdapter.php#L205](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L205) -- [BatchProductHelper.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/BatchProductHelper.php#L208) -- [BatchProductHelper.php#L231](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/BatchProductHelper.php#L231) -- [ProductSyncer.php#L149](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L149) -- [ProductSyncer.php#L159](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L159) -- [ProductSyncer.php#L235](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L235) -- [ProductSyncer.php#L245](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L245) -- [ProductRepository.php#L315](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductRepository.php#L315) -- [ProductHelper.php#L483](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L483) -- [ProductHelper.php#L516](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L516) -- [SyncerHooks.php#L197](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/SyncerHooks.php#L197) +- [IssuesController.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L95) +- [NotificationsService.php#L118](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/NotificationsService.php#L118) +- [CouponSyncer.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L103) +- [CouponSyncer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L116) +- [CouponSyncer.php#L141](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L141) +- [CouponSyncer.php#L155](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L155) +- [CouponSyncer.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L172) +- [CouponSyncer.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L195) +- [CouponSyncer.php#L260](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L260) +- [CouponSyncer.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L309) +- [CouponSyncer.php#L328](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L328) +- [CouponHelper.php#L272](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponHelper.php#L272) +- [CouponHelper.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponHelper.php#L309) +- [SyncerHooks.php#L210](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/SyncerHooks.php#L210) +- [ProductMetaQueryHelper.php#L109](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/DB/ProductMetaQueryHelper.php#L109) +- [ProductMetaQueryHelper.php#L140](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/DB/ProductMetaQueryHelper.php#L140) +- [ActionSchedulerJobMonitor.php#L117](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/ActionSchedulerJobMonitor.php#L117) +- [ActionSchedulerJobMonitor.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/ActionSchedulerJobMonitor.php#L126) +- [CleanupSyncedProducts.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/CleanupSyncedProducts.php#L74) +- [MerchantCenterService.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantCenterService.php#L325) +- [MerchantStatuses.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantStatuses.php#L413) +- [MerchantStatuses.php#L667](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantStatuses.php#L667) +- [MerchantStatuses.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantStatuses.php#L916) +- [WCProductAdapter.php#L205](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L205) +- [BatchProductHelper.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/BatchProductHelper.php#L208) +- [BatchProductHelper.php#L231](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/BatchProductHelper.php#L231) +- [ProductSyncer.php#L148](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L148) +- [ProductSyncer.php#L158](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L158) +- [ProductSyncer.php#L234](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L234) +- [ProductSyncer.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L244) +- [ProductRepository.php#L315](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductRepository.php#L315) +- [ProductHelper.php#L612](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L612) +- [ProductHelper.php#L645](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L645) +- [SyncerHooks.php#L251](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/SyncerHooks.php#L251) ## woocommerce_gla_deleted_promotions @@ -260,7 +277,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L322](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L322) +- [CouponSyncer.php#L322](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L322) ## woocommerce_gla_dimension_unit @@ -268,7 +285,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L431](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L431) +- [WCProductAdapter.php#L431](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L431) ## woocommerce_gla_disable_gtag_tracking @@ -276,7 +293,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [GlobalSiteTag.php#L545](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Google/GlobalSiteTag.php#L545) +- [GlobalSiteTag.php#L545](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Google/GlobalSiteTag.php#L545) ## woocommerce_gla_enable_connection_test @@ -284,7 +301,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ConnectionTest.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/ConnectionTest.php#L87) +- [ConnectionTest.php#L97](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/ConnectionTest.php#L97) ## woocommerce_gla_enable_debug_logging @@ -292,7 +309,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [DebugLogger.php#L33](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Logging/DebugLogger.php#L33) +- [DebugLogger.php#L33](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Logging/DebugLogger.php#L33) ## woocommerce_gla_enable_mcm @@ -300,7 +317,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [GLAChannel.php#L86](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MultichannelMarketing/GLAChannel.php#L86) +- [GLAChannel.php#L86](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MultichannelMarketing/GLAChannel.php#L86) ## woocommerce_gla_enable_reports @@ -308,7 +325,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Admin.php#L271](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Admin.php#L271) +- [Admin.php#L271](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Admin.php#L271) ## woocommerce_gla_error @@ -316,23 +333,29 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponMetaHandler.php#L220](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponMetaHandler.php#L220) -- [CouponSyncer.php#L410](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L410) -- [CouponSyncer.php#L448](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L448) -- [CouponSyncer.php#L466](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L466) -- [ProductMetaQueryHelper.php#L156](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/DB/ProductMetaQueryHelper.php#L156) -- [PHPView.php#L136](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/View/PHPView.php#L136) -- [PHPView.php#L164](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/View/PHPView.php#L164) -- [PHPView.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/View/PHPView.php#L208) -- [BatchProductHelper.php#L248](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/BatchProductHelper.php#L248) -- [ProductSyncer.php#L290](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L290) -- [ProductSyncer.php#L313](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L313) -- [ProductSyncer.php#L346](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L346) -- [ProductSyncer.php#L361](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L361) -- [ProductHelper.php#L375](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L375) -- [ProductHelper.php#L592](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L592) -- [AttributeManager.php#L269](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/Attributes/AttributeManager.php#L269) -- [ProductMetaHandler.php#L173](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductMetaHandler.php#L173) +- [NotificationsService.php#L135](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/NotificationsService.php#L135) +- [OAuthService.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/OAuthService.php#L244) +- [CouponMetaHandler.php#L227](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponMetaHandler.php#L227) +- [CouponSyncer.php#L410](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L410) +- [CouponSyncer.php#L448](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L448) +- [CouponSyncer.php#L466](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L466) +- [CouponSyncer.php#L481](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L481) +- [ProductMetaQueryHelper.php#L156](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/DB/ProductMetaQueryHelper.php#L156) +- [AbstractItemNotificationJob.php#L28](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/Notifications/AbstractItemNotificationJob.php#L28) +- [AbstractItemNotificationJob.php#L46](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/Notifications/AbstractItemNotificationJob.php#L46) +- [PHPView.php#L136](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/View/PHPView.php#L136) +- [PHPView.php#L164](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/View/PHPView.php#L164) +- [PHPView.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/View/PHPView.php#L208) +- [BatchProductHelper.php#L248](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/BatchProductHelper.php#L248) +- [ProductSyncer.php#L289](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L289) +- [ProductSyncer.php#L312](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L312) +- [ProductSyncer.php#L345](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L345) +- [ProductSyncer.php#L360](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L360) +- [ProductSyncer.php#L367](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L367) +- [ProductHelper.php#L504](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L504) +- [ProductHelper.php#L721](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L721) +- [AttributeManager.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/Attributes/AttributeManager.php#L342) +- [ProductMetaHandler.php#L178](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductMetaHandler.php#L178) ## woocommerce_gla_exception @@ -340,32 +363,32 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [SettingsSyncController.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L96) -- [RequestReviewController.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L284) -- [RequestReviewController.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L329) -- [ContactInformationController.php#L242](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/ContactInformationController.php#L242) -- [ProductVisibilityController.php#L193](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/ProductVisibilityController.php#L193) -- [Connection.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Connection.php#L95) -- [Middleware.php#L456](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L456) -- [ClearProductStatsCache.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Event/ClearProductStatsCache.php#L61) -- [NoteInitializer.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Notes/NoteInitializer.php#L74) -- [NoteInitializer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Notes/NoteInitializer.php#L116) -- [CouponChannelVisibilityMetaBox.php#L197](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/MetaBox/CouponChannelVisibilityMetaBox.php#L197) -- [ChannelVisibilityMetaBox.php#L176](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/MetaBox/ChannelVisibilityMetaBox.php#L176) -- [DateTime.php#L44](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Input/DateTime.php#L44) -- [DateTime.php#L80](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Input/DateTime.php#L80) -- [ScriptWithBuiltDependenciesAsset.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Assets/ScriptWithBuiltDependenciesAsset.php#L66) -- [CouponSyncer.php#L203](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L203) -- [CouponSyncer.php#L293](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L293) -- [WooCommercePreOrders.php#L111](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Integration/WooCommercePreOrders.php#L111) -- [WooCommercePreOrders.php#L131](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Integration/WooCommercePreOrders.php#L131) -- [PluginUpdate.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/Update/PluginUpdate.php#L75) -- [PHPView.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/View/PHPView.php#L87) -- [ProductSyncer.php#L134](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L134) -- [ProductSyncer.php#L220](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L220) -- [ProductHelper.php#L257](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L257) -- [GoogleServiceProvider.php#L234](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Internal/DependencyManagement/GoogleServiceProvider.php#L234) -- [GoogleServiceProvider.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Internal/DependencyManagement/GoogleServiceProvider.php#L244) +- [SettingsSyncController.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L96) +- [RequestReviewController.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L284) +- [RequestReviewController.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L329) +- [ContactInformationController.php#L242](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/ContactInformationController.php#L242) +- [ProductVisibilityController.php#L193](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/ProductVisibilityController.php#L193) +- [Connection.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Connection.php#L95) +- [Middleware.php#L458](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L458) +- [ClearProductStatsCache.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Event/ClearProductStatsCache.php#L61) +- [NoteInitializer.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Notes/NoteInitializer.php#L74) +- [NoteInitializer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Notes/NoteInitializer.php#L116) +- [CouponChannelVisibilityMetaBox.php#L197](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/MetaBox/CouponChannelVisibilityMetaBox.php#L197) +- [ChannelVisibilityMetaBox.php#L176](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/MetaBox/ChannelVisibilityMetaBox.php#L176) +- [DateTime.php#L44](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Input/DateTime.php#L44) +- [DateTime.php#L80](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Input/DateTime.php#L80) +- [ScriptWithBuiltDependenciesAsset.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Assets/ScriptWithBuiltDependenciesAsset.php#L66) +- [CouponSyncer.php#L203](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L203) +- [CouponSyncer.php#L293](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L293) +- [WooCommercePreOrders.php#L111](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Integration/WooCommercePreOrders.php#L111) +- [WooCommercePreOrders.php#L131](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Integration/WooCommercePreOrders.php#L131) +- [PluginUpdate.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/Update/PluginUpdate.php#L75) +- [PHPView.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/View/PHPView.php#L87) +- [ProductSyncer.php#L133](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L133) +- [ProductSyncer.php#L219](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L219) +- [ProductHelper.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L284) +- [GoogleServiceProvider.php#L234](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Internal/DependencyManagement/GoogleServiceProvider.php#L234) +- [GoogleServiceProvider.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Internal/DependencyManagement/GoogleServiceProvider.php#L244) ## woocommerce_gla_force_run_install @@ -373,7 +396,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Installer.php#L82](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Installer.php#L82) +- [Installer.php#L82](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Installer.php#L82) ## woocommerce_gla_get_google_product_offer_id @@ -381,7 +404,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L284) +- [WCProductAdapter.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L284) ## woocommerce_gla_get_sync_ready_products_filter @@ -389,7 +412,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductFilter.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductFilter.php#L61) +- [ProductFilter.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductFilter.php#L61) ## woocommerce_gla_get_sync_ready_products_pre_filter @@ -397,7 +420,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductFilter.php#L47](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductFilter.php#L47) +- [ProductFilter.php#L47](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductFilter.php#L47) ## woocommerce_gla_get_wc_product_id @@ -405,7 +428,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductHelper.php#L302](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L302) +- [ProductHelper.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L329) ## woocommerce_gla_gtag_consent @@ -413,7 +436,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [GlobalSiteTag.php#L321](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Google/GlobalSiteTag.php#L321) +- [GlobalSiteTag.php#L321](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Google/GlobalSiteTag.php#L321) ## woocommerce_gla_guzzle_client_exception @@ -421,18 +444,19 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Connection.php#L70](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Connection.php#L70) -- [Connection.php#L91](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Connection.php#L91) -- [Connection.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Connection.php#L126) -- [Middleware.php#L80](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L80) -- [Middleware.php#L178](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L178) -- [Middleware.php#L228](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L228) -- [Middleware.php#L273](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L273) -- [Middleware.php#L345](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L345) -- [Middleware.php#L395](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L395) -- [Middleware.php#L419](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L419) -- [Middleware.php#L453](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L453) -- [GoogleServiceProvider.php#L263](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Internal/DependencyManagement/GoogleServiceProvider.php#L263) +- [Connection.php#L70](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Connection.php#L70) +- [Connection.php#L91](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Connection.php#L91) +- [Connection.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Connection.php#L126) +- [Middleware.php#L82](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L82) +- [Middleware.php#L180](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L180) +- [Middleware.php#L230](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L230) +- [Middleware.php#L275](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L275) +- [Middleware.php#L347](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L347) +- [Middleware.php#L397](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L397) +- [Middleware.php#L421](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L421) +- [Middleware.php#L455](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L455) +- [Middleware.php#L603](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L603) +- [GoogleServiceProvider.php#L263](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Internal/DependencyManagement/GoogleServiceProvider.php#L263) ## woocommerce_gla_guzzle_invalid_response @@ -440,14 +464,15 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [RequestReviewController.php#L317](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L317) -- [Connection.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Connection.php#L66) -- [Connection.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Connection.php#L121) -- [Middleware.php#L159](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L159) -- [Middleware.php#L223](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L223) -- [Middleware.php#L267](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L267) -- [Middleware.php#L340](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L340) -- [Middleware.php#L390](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L390) +- [RequestReviewController.php#L317](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L317) +- [Connection.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Connection.php#L66) +- [Connection.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Connection.php#L121) +- [Middleware.php#L161](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L161) +- [Middleware.php#L225](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L225) +- [Middleware.php#L269](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L269) +- [Middleware.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L342) +- [Middleware.php#L392](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L392) +- [Middleware.php#L595](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L595) ## woocommerce_gla_handle_shipping_method_to_rates @@ -455,7 +480,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ZoneMethodsParser.php#L106](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Shipping/ZoneMethodsParser.php#L106) +- [ZoneMethodsParser.php#L106](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Shipping/ZoneMethodsParser.php#L106) ## woocommerce_gla_hidden_coupon_types @@ -463,7 +488,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L379](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L379) +- [CouponSyncer.php#L379](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L379) ## woocommerce_gla_job_failure_rate_threshold @@ -471,7 +496,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ActionSchedulerJobMonitor.php#L186](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/ActionSchedulerJobMonitor.php#L186) +- [ActionSchedulerJobMonitor.php#L186](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/ActionSchedulerJobMonitor.php#L186) ## woocommerce_gla_job_failure_timeframe @@ -479,7 +504,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ActionSchedulerJobMonitor.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Jobs/ActionSchedulerJobMonitor.php#L195) +- [ActionSchedulerJobMonitor.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/ActionSchedulerJobMonitor.php#L195) ## woocommerce_gla_mapping_rules_change @@ -487,9 +512,9 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributeMappingRulesController.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L143) -- [AttributeMappingRulesController.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L166) -- [AttributeMappingRulesController.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L188) +- [AttributeMappingRulesController.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L143) +- [AttributeMappingRulesController.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L166) +- [AttributeMappingRulesController.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L188) ## woocommerce_gla_mc_account_review_lifetime @@ -497,7 +522,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [RequestReviewStatuses.php#L157](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Google/RequestReviewStatuses.php#L157) +- [RequestReviewStatuses.php#L157](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Google/RequestReviewStatuses.php#L157) ## woocommerce_gla_mc_client_exception @@ -505,17 +530,17 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Merchant.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L95) -- [Merchant.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L143) -- [Merchant.php#L175](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L175) -- [Merchant.php#L194](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L194) -- [Merchant.php#L250](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L250) -- [Merchant.php#L295](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L295) -- [Merchant.php#L357](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L357) -- [Merchant.php#L390](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L390) -- [Merchant.php#L423](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L423) -- [MerchantReport.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/MerchantReport.php#L115) -- [MerchantReport.php#L183](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/MerchantReport.php#L183) +- [Merchant.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L95) +- [Merchant.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L143) +- [Merchant.php#L175](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L175) +- [Merchant.php#L194](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L194) +- [Merchant.php#L250](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L250) +- [Merchant.php#L295](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L295) +- [Merchant.php#L357](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L357) +- [Merchant.php#L390](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L390) +- [Merchant.php#L423](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L423) +- [MerchantReport.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/MerchantReport.php#L115) +- [MerchantReport.php#L183](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/MerchantReport.php#L183) ## woocommerce_gla_mc_settings_sync @@ -523,7 +548,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [SettingsSyncController.php#L69](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L69) +- [SettingsSyncController.php#L69](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L69) ## woocommerce_gla_mc_status_lifetime @@ -531,7 +556,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantStatuses.php#L935](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantStatuses.php#L935) +- [MerchantStatuses.php#L935](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantStatuses.php#L935) ## woocommerce_gla_merchant_issue_override @@ -539,7 +564,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [IssuesController.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L85) +- [IssuesController.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L85) ## woocommerce_gla_merchant_status_presync_issues_chunk @@ -547,7 +572,31 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantStatuses.php#L596](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantStatuses.php#L596) +- [MerchantStatuses.php#L596](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantStatuses.php#L596) + +## woocommerce_gla_notification_job_can_schedule + +**Type**: filter + +**Used in**: + +- [AbstractNotificationJob.php#L86](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Jobs/Notifications/AbstractNotificationJob.php#L86) + +## woocommerce_gla_notifications_enabled + +**Type**: filter + +**Used in**: + +- [NotificationsService.php#L176](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/NotificationsService.php#L176) + +## woocommerce_gla_notify + +**Type**: filter + +**Used in**: + +- [NotificationsService.php#L93](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/NotificationsService.php#L93) ## woocommerce_gla_options_deleted_ @@ -555,7 +604,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Options.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Options/Options.php#L103) +- [Options.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Options/Options.php#L103) ## woocommerce_gla_options_updated_ @@ -563,8 +612,16 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Options.php#L65](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Options/Options.php#L65) -- [Options.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Options/Options.php#L85) +- [Options.php#L65](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Options/Options.php#L65) +- [Options.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Options/Options.php#L85) + +## woocommerce_gla_partner_app_auth_failure + +**Type**: action + +**Used in**: + +- [Middleware.php#L589](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L589) ## woocommerce_gla_prepared_response_->GET_ROUTE_NAME @@ -572,7 +629,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [BaseController.php#L160](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/BaseController.php#L160) +- [BaseController.php#L160](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/BaseController.php#L160) ## woocommerce_gla_product_attribute_types @@ -580,7 +637,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributeManager.php#L243](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/Attributes/AttributeManager.php#L243) +- [AttributeManager.php#L316](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/Attributes/AttributeManager.php#L316) ## woocommerce_gla_product_attribute_value_ @@ -588,8 +645,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L916) -- [WCProductAdapter.php#L967](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L967) +- [WCProductAdapter.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L916) +- [WCProductAdapter.php#L967](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L967) ## woocommerce_gla_product_attribute_value_description @@ -597,7 +654,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L352](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L352) +- [WCProductAdapter.php#L352](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L352) ## woocommerce_gla_product_attribute_value_options_::get_id @@ -605,7 +662,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributesForm.php#L127](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Admin/Product/Attributes/AttributesForm.php#L127) +- [AttributesForm.php#L127](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Admin/Product/Attributes/AttributesForm.php#L127) ## woocommerce_gla_product_attribute_value_price @@ -613,7 +670,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L640](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L640) +- [WCProductAdapter.php#L640](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L640) ## woocommerce_gla_product_attribute_value_sale_price @@ -621,7 +678,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L692](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L692) +- [WCProductAdapter.php#L692](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L692) ## woocommerce_gla_product_attribute_values @@ -629,7 +686,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L166) +- [WCProductAdapter.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L166) ## woocommerce_gla_product_description_apply_shortcodes @@ -637,7 +694,15 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L321](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L321) +- [WCProductAdapter.php#L321](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L321) + +## woocommerce_gla_product_is_ready_to_notify + +**Type**: filter + +**Used in**: + +- [ProductHelper.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L413) ## woocommerce_gla_product_property_value_is_virtual @@ -645,7 +710,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L782](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L782) +- [WCProductAdapter.php#L782](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L782) ## woocommerce_gla_product_query_args @@ -653,7 +718,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductRepository.php#L376](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductRepository.php#L376) +- [ProductRepository.php#L376](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductRepository.php#L376) ## woocommerce_gla_product_view_report_page_size @@ -661,7 +726,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantReport.php#L68](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/MerchantReport.php#L68) +- [MerchantReport.php#L68](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/MerchantReport.php#L68) ## woocommerce_gla_products_delete_retry_on_failure @@ -669,7 +734,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L342) +- [ProductSyncer.php#L341](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L341) ## woocommerce_gla_products_update_retry_on_failure @@ -677,7 +742,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L286](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L286) +- [ProductSyncer.php#L285](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L285) ## woocommerce_gla_ready_for_syncing @@ -685,7 +750,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantCenterService.php#L120](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/MerchantCenterService.php#L120) +- [MerchantCenterService.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/MerchantCenterService.php#L121) ## woocommerce_gla_request_review_failure @@ -693,9 +758,9 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [RequestReviewController.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L113) -- [RequestReviewController.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L125) -- [RequestReviewController.php#L310](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L310) +- [RequestReviewController.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L113) +- [RequestReviewController.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L125) +- [RequestReviewController.php#L310](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L310) ## woocommerce_gla_request_review_response @@ -703,7 +768,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [RequestReviewController.php#L281](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L281) +- [RequestReviewController.php#L281](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L281) ## woocommerce_gla_retry_delete_coupons @@ -711,7 +776,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L443](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L443) +- [CouponSyncer.php#L443](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L443) ## woocommerce_gla_retry_update_coupons @@ -719,7 +784,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L405](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L405) +- [CouponSyncer.php#L405](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L405) ## woocommerce_gla_site_claim_failure @@ -727,10 +792,10 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Merchant.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L96) -- [Middleware.php#L268](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L268) -- [Middleware.php#L274](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L274) -- [AccountService.php#L380](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/AccountService.php#L380) +- [Merchant.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L96) +- [Middleware.php#L270](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L270) +- [Middleware.php#L276](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L276) +- [AccountService.php#L388](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/AccountService.php#L388) ## woocommerce_gla_site_claim_overwrite_required @@ -738,7 +803,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L375](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/AccountService.php#L375) +- [AccountService.php#L383](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/AccountService.php#L383) ## woocommerce_gla_site_claim_success @@ -746,8 +811,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Merchant.php#L93](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Merchant.php#L93) -- [Middleware.php#L263](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/Middleware.php#L263) +- [Merchant.php#L93](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Merchant.php#L93) +- [Middleware.php#L265](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/Middleware.php#L265) ## woocommerce_gla_site_url @@ -755,7 +820,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [PluginHelper.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/PluginHelper.php#L188) +- [PluginHelper.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/PluginHelper.php#L188) ## woocommerce_gla_site_verify_failure @@ -763,9 +828,9 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [SiteVerification.php#L58](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/SiteVerification.php#L58) -- [SiteVerification.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/SiteVerification.php#L66) -- [SiteVerification.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/SiteVerification.php#L87) +- [SiteVerification.php#L58](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/SiteVerification.php#L58) +- [SiteVerification.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/SiteVerification.php#L66) +- [SiteVerification.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/SiteVerification.php#L87) ## woocommerce_gla_site_verify_success @@ -773,7 +838,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [SiteVerification.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/SiteVerification.php#L85) +- [SiteVerification.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/SiteVerification.php#L85) ## woocommerce_gla_supported_coupon_types @@ -781,7 +846,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L366](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L366) +- [CouponSyncer.php#L366](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L366) ## woocommerce_gla_supported_product_types @@ -789,7 +854,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L264](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductSyncer.php#L264) +- [ProductSyncer.php#L263](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductSyncer.php#L263) ## woocommerce_gla_sv_client_exception @@ -797,8 +862,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [SiteVerification.php#L120](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/SiteVerification.php#L120) -- [SiteVerification.php#L162](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Google/SiteVerification.php#L162) +- [SiteVerification.php#L120](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/SiteVerification.php#L120) +- [SiteVerification.php#L162](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Google/SiteVerification.php#L162) ## woocommerce_gla_tax_excluded @@ -806,7 +871,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L601](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L601) +- [WCProductAdapter.php#L601](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L601) ## woocommerce_gla_track_event @@ -814,11 +879,16 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CampaignController.php#L151](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/Ads/CampaignController.php#L151) -- [CampaignController.php#L229](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/Ads/CampaignController.php#L229) -- [CampaignController.php#L267](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/Ads/CampaignController.php#L267) -- [SetupCompleteController.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/Ads/SetupCompleteController.php#L75) -- [SettingsSyncController.php#L83](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L83) +- [CampaignController.php#L151](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/Ads/CampaignController.php#L151) +- [CampaignController.php#L229](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/Ads/CampaignController.php#L229) +- [CampaignController.php#L267](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/Ads/CampaignController.php#L267) +- [SetupCompleteController.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/Ads/SetupCompleteController.php#L75) +- [SettingsSyncController.php#L83](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L83) +- [OAuthService.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/OAuthService.php#L172) +- [OAuthService.php#L200](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/OAuthService.php#L200) +- [OAuthService.php#L220](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/API/WP/OAuthService.php#L220) +- [AccountService.php#L587](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/AccountService.php#L587) +- [AccountService.php#L606](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/AccountService.php#L606) ## woocommerce_gla_updated_coupon @@ -826,7 +896,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponSyncer.php#L169](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Coupon/CouponSyncer.php#L169) +- [CouponSyncer.php#L169](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Coupon/CouponSyncer.php#L169) ## woocommerce_gla_url_switch_required @@ -834,7 +904,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L460](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/AccountService.php#L460) +- [AccountService.php#L468](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/AccountService.php#L468) ## woocommerce_gla_url_switch_success @@ -842,7 +912,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L483](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/MerchantCenter/AccountService.php#L483) +- [AccountService.php#L491](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/MerchantCenter/AccountService.php#L491) ## woocommerce_gla_use_short_description @@ -850,7 +920,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L298](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L298) +- [WCProductAdapter.php#L298](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L298) ## woocommerce_gla_wcs_url @@ -858,8 +928,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [PluginHelper.php#L174](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/PluginHelper.php#L174) -- [PluginHelper.php#L177](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/PluginHelper.php#L177) +- [PluginHelper.php#L174](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/PluginHelper.php#L174) +- [PluginHelper.php#L177](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/PluginHelper.php#L177) ## woocommerce_gla_weight_unit @@ -867,7 +937,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [WCProductAdapter.php#L432](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/WCProductAdapter.php#L432) +- [WCProductAdapter.php#L432](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/WCProductAdapter.php#L432) ## woocommerce_hide_invisible_variations @@ -875,5 +945,5 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductHelper.php#L390](https://github.com/woocommerce/google-listings-and-ads/blob/c83eb2a32997f12ff958616082e82b3edcd3e0b2/src/Product/ProductHelper.php#L390) +- [ProductHelper.php#L519](https://github.com/woocommerce/google-listings-and-ads/blob/5dc1a012c9f2175c377eefdd4df43ff75c600d7f/src/Product/ProductHelper.php#L519) diff --git a/src/Integration/WPCOMProxy.php b/src/Integration/WPCOMProxy.php index 299dfc586c..7193e0b57e 100644 --- a/src/Integration/WPCOMProxy.php +++ b/src/Integration/WPCOMProxy.php @@ -22,7 +22,7 @@ * * Initializes the hooks to filter the data sent to the WPCOM proxy depending on the query parameter gla_syncable. * - * @since x.x.x + * @since 2.8.0 * * @package Automattic\WooCommerce\GoogleListingsAndAds\Integration */ diff --git a/src/Jobs/Notifications/AbstractItemNotificationJob.php b/src/Jobs/Notifications/AbstractItemNotificationJob.php index 6869e9fc39..eada23535f 100644 --- a/src/Jobs/Notifications/AbstractItemNotificationJob.php +++ b/src/Jobs/Notifications/AbstractItemNotificationJob.php @@ -12,7 +12,7 @@ * Class AbstractItemNotificationJob * Generic class for the Notification Jobs containing items * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ abstract class AbstractItemNotificationJob extends AbstractNotificationJob { diff --git a/src/Jobs/Notifications/AbstractNotificationJob.php b/src/Jobs/Notifications/AbstractNotificationJob.php index 8a7e88a57a..97144f5dec 100644 --- a/src/Jobs/Notifications/AbstractNotificationJob.php +++ b/src/Jobs/Notifications/AbstractNotificationJob.php @@ -15,7 +15,7 @@ * Class AbstractNotificationJob * Generic class for the Notifications Jobs * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ abstract class AbstractNotificationJob extends AbstractActionSchedulerJob implements JobInterface { @@ -77,7 +77,7 @@ public function can_schedule( $args = [] ): bool { /** * Allow users to disable the notification job schedule. * - * @since x.x.x + * @since 2.8.0 * * @param bool $value The current filter value. By default, it is the result of `$this->can_schedule` function. * @param string $job_name The current Job name. diff --git a/src/Jobs/Notifications/CouponNotificationJob.php b/src/Jobs/Notifications/CouponNotificationJob.php index 0d0bcc35a3..c03c21c43e 100644 --- a/src/Jobs/Notifications/CouponNotificationJob.php +++ b/src/Jobs/Notifications/CouponNotificationJob.php @@ -15,7 +15,7 @@ * Class CouponNotificationJob * Class for the Coupons Notifications Jobs * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ class CouponNotificationJob extends AbstractItemNotificationJob { diff --git a/src/Jobs/Notifications/HelperNotificationInterface.php b/src/Jobs/Notifications/HelperNotificationInterface.php index 5fe61b6db7..e9a29d67f5 100644 --- a/src/Jobs/Notifications/HelperNotificationInterface.php +++ b/src/Jobs/Notifications/HelperNotificationInterface.php @@ -8,7 +8,7 @@ /** * Interface HelperNotificationInterface * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ interface HelperNotificationInterface { diff --git a/src/Jobs/Notifications/ProductNotificationJob.php b/src/Jobs/Notifications/ProductNotificationJob.php index e52783ac52..0622d79ac0 100644 --- a/src/Jobs/Notifications/ProductNotificationJob.php +++ b/src/Jobs/Notifications/ProductNotificationJob.php @@ -16,7 +16,7 @@ * Class ProductNotificationJob * Class for the Product Notifications Jobs * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ class ProductNotificationJob extends AbstractItemNotificationJob { diff --git a/src/Jobs/Notifications/SettingsNotificationJob.php b/src/Jobs/Notifications/SettingsNotificationJob.php index 29a4ea41bd..0e8f76bd59 100644 --- a/src/Jobs/Notifications/SettingsNotificationJob.php +++ b/src/Jobs/Notifications/SettingsNotificationJob.php @@ -9,7 +9,7 @@ * Class SettingsNotificationJob * Class for the Settings Notifications * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ class SettingsNotificationJob extends AbstractNotificationJob { diff --git a/src/Jobs/Notifications/ShippingNotificationJob.php b/src/Jobs/Notifications/ShippingNotificationJob.php index fe4c5e7ddd..41ed4a210d 100644 --- a/src/Jobs/Notifications/ShippingNotificationJob.php +++ b/src/Jobs/Notifications/ShippingNotificationJob.php @@ -9,7 +9,7 @@ * Class ShippingNotificationJob * Class for the Shipping Notifications * - * @since x.x.x + * @since 2.8.0 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Notifications */ class ShippingNotificationJob extends AbstractNotificationJob { diff --git a/src/MerchantCenter/MerchantCenterService.php b/src/MerchantCenter/MerchantCenterService.php index 1e3eba6ae1..0ad9740f8d 100644 --- a/src/MerchantCenter/MerchantCenterService.php +++ b/src/MerchantCenter/MerchantCenterService.php @@ -131,7 +131,7 @@ public function is_ready_for_syncing(): bool { * - Notifications Service is not enabled * * @return bool - * @since x.x.x + * @since 2.8.0 */ public function should_push(): bool { return $this->is_ready_for_syncing(); diff --git a/src/Product/Attributes/AttributeManager.php b/src/Product/Attributes/AttributeManager.php index e88aabc9d9..ebabb95175 100644 --- a/src/Product/Attributes/AttributeManager.php +++ b/src/Product/Attributes/AttributeManager.php @@ -122,7 +122,7 @@ public function get( WC_Product $product, string $attribute_id ): ?AttributeInte * Return all attribute values for the given product, after the mapping rules, GLA attributes, and filters have been applied. * GLA Attributes has priority over the product attributes. * - * @since x.x.x + * @since 2.8.0 * * @param WC_Product $product * diff --git a/src/Product/ProductHelper.php b/src/Product/ProductHelper.php index 37a80b9780..3982a03f3a 100644 --- a/src/Product/ProductHelper.php +++ b/src/Product/ProductHelper.php @@ -405,7 +405,7 @@ public function is_ready_to_notify( WC_Product $product ): bool { /** * Allow users to filter if a product is ready to notify. * - * @since x.x.x + * @since 2.8.0 * * @param bool $value The current filter value. * @param WC_Product $product The product for the notification. @@ -764,7 +764,7 @@ public function get_categories( WC_Product $product ): array { /** * Get the offer id for a product * - * @since x.x.x + * @since 2.8.0 * @param int $product_id The product id to get the offer id. * * @return string The offer id diff --git a/src/Product/SyncerHooks.php b/src/Product/SyncerHooks.php index b719ad1830..40aa3cccb3 100644 --- a/src/Product/SyncerHooks.php +++ b/src/Product/SyncerHooks.php @@ -327,7 +327,7 @@ protected function handle_delete_product( int $product_id ) { * Maybe send the product deletion notification * and mark the product as un-synced after. * - * @since x.x.x + * @since 2.8.0 * @param int $product_id */ protected function maybe_send_delete_notification( int $product_id ) { @@ -345,7 +345,7 @@ protected function maybe_send_delete_notification( int $product_id ) { /** * Schedules a job to send the product deletion notification * - * @since x.x.x + * @since 2.8.0 * @param WC_Product $product */ protected function schedule_delete_notification( $product ) { diff --git a/src/Proxies/Jetpack.php b/src/Proxies/Jetpack.php index e6e29a5a29..f81d8555ed 100644 --- a/src/Proxies/Jetpack.php +++ b/src/Proxies/Jetpack.php @@ -10,7 +10,7 @@ * * This class provides proxy methods to wrap around Jetpack functions. * - * @since x.x.x + * @since 2.8.0 * * @package Automattic\WooCommerce\GoogleListingsAndAds\Proxies */ diff --git a/src/Settings/SyncerHooks.php b/src/Settings/SyncerHooks.php index ae38fb7a23..5e4e8fb040 100644 --- a/src/Settings/SyncerHooks.php +++ b/src/Settings/SyncerHooks.php @@ -18,7 +18,7 @@ * * @package Automattic\WooCommerce\GoogleListingsAndAds\Settings * - * @since x.x.x + * @since 2.8.0 */ class SyncerHooks implements Service, Registerable {