From a37c974a4ffee67bddc90186953c4879b17d8dbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20P=C3=A9rez=20Pellicer?= <5908855+puntope@users.noreply.github.com> Date: Wed, 25 Sep 2024 18:14:21 +0400 Subject: [PATCH 01/10] Tweak WP Proxy Response to force the types of the fields --- src/Integration/WPCOMProxy.php | 9 ++++- tests/Unit/Integration/WPCOMProxyTest.php | 45 +++++++++++++++++++++++ 2 files changed, 52 insertions(+), 2 deletions(-) diff --git a/src/Integration/WPCOMProxy.php b/src/Integration/WPCOMProxy.php index 5109bbd4b7..e20b1088ab 100644 --- a/src/Integration/WPCOMProxy.php +++ b/src/Integration/WPCOMProxy.php @@ -132,14 +132,14 @@ protected function register_object_types_filter( string $object_type ): void { add_filter( 'woocommerce_rest_prepare_' . $object_type . '_object', [ $this, 'filter_response_by_syncable_item' ], - 1000, // Run this filter last to override any other response. + PHP_INT_MAX, // Run this filter last to override any other response. 3 ); add_filter( 'woocommerce_rest_prepare_' . $object_type . '_object', [ $this, 'prepare_response' ], - 10, + PHP_INT_MAX - 1, 3 ); @@ -338,6 +338,11 @@ public function prepare_response( WP_REST_Response $response, $item, WP_REST_Req $attr = $this->attribute_manager->get_all_aggregated_values( $item ); // In case of empty array, convert to object to keep the response consistent. $data['gla_attributes'] = (object) $attr; + + // Force types and prevent user type change for fields as Google has strict type requirements. + $data['price'] = strval( $data['price'] ?? null ); + $data['regular_price'] = strval( $data['regular_price'] ?? null ); + $data['sale_price'] = strval( $data['sale_price'] ?? null ); } foreach ( $data['meta_data'] ?? [] as $key => $meta ) { diff --git a/tests/Unit/Integration/WPCOMProxyTest.php b/tests/Unit/Integration/WPCOMProxyTest.php index 8af32bf0c2..403aa18ed5 100644 --- a/tests/Unit/Integration/WPCOMProxyTest.php +++ b/tests/Unit/Integration/WPCOMProxyTest.php @@ -498,4 +498,49 @@ public function test_get_empty_settings_for_shipping_zone_methods_as_object() { $proxy->prepare_data( $data, $request ) ); } + + public function test_product_types() { + add_filter( 'woocommerce_rest_prepare_product_object', [ $this, 'alter_product_price_types' ], 10, 3 ); + + $product = ProductHelper::create_simple_product(); + $product_variable = ProductHelper::create_variation_product(); + $variation = $product_variable->get_available_variations()[0]; + $this->add_metadata( $product->get_id(), $this->get_test_metadata() ); + + $request = $this->do_request( '/wc/v3/products', 'GET', [ 'gla_syncable' => '1' ] ); + $this->assertEquals( 'string', gettype( $request->get_data()[0]['price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()[0]['regular_price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()[0]['sale_price'] ) ); + + $request = $this->do_request( '/wc/v3/products/' . $product->get_id(), 'GET', [ 'gla_syncable' => '1' ] ); + $this->assertEquals( 'string', gettype( $request->get_data()['price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()['regular_price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()['sale_price'] ) ); + + $request = $this->do_request( '/wc/v3/products/' . $product_variable->get_id() . '/variations', 'GET', [ 'gla_syncable' => '1' ] ); + $this->assertEquals( 'string', gettype( $request->get_data()[0]['price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()[0]['regular_price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()[0]['sale_price'] ) ); + + $request = $this->do_request( '/wc/v3/products/' . $product_variable->get_id() . '/variations/' . $variation['variation_id'], 'GET', [ 'gla_syncable' => '1' ] ); + $this->assertEquals( 'string', gettype( $request->get_data()['price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()['regular_price'] ) ); + $this->assertEquals( 'string', gettype( $request->get_data()['sale_price'] ) ); + + // Doesn't apply if here is not 'gla_syncable' + $request = $this->do_request( '/wc/v3/products' ); + $this->assertEquals( 'integer', gettype( $request->get_data()[0]['price'] ) ); + $this->assertEquals( 'integer', gettype( $request->get_data()[0]['regular_price'] ) ); + $this->assertEquals( 'integer', gettype( $request->get_data()[0]['sale_price'] ) ); + + remove_filter( 'woocommerce_rest_prepare_product_object', [ $this, 'alter_product_price_types' ] ); + } + + public function alter_product_price_types( $response ) { + $response->data['price'] = intval( $response->data['price'] ); + $response->data['regular_price'] = intval( $response->data['regular_price'] ); + $response->data['sale_price'] = intval( $response->data['sale_price'] ); + + return $response; + } } From 7cb753161e8483ba337570e69aad2e7a489b44ba Mon Sep 17 00:00:00 2001 From: Jorge M Date: Wed, 25 Sep 2024 19:39:55 +0200 Subject: [PATCH 02/10] Symlink WC instead of moving the WC folder --- bin/install-wp-tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 5883078613..859eda181b 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -196,14 +196,14 @@ install_wc() { if [ ! -f "$WC_VERSION_FILE" ]; then # set up testing suite rm -rf "$WC_DIR" - mkdir -p "$WC_DIR" echo "Installing WooCommerce ($WC_VERSION)." # Grab the necessary plugins. WC_TMPDIR="${TMPDIR}/woocommerce-${WC_VERSION}" rm -rf "${WC_TMPDIR}" git clone --quiet --depth=1 --branch="${WC_VERSION}" https://github.com/woocommerce/woocommerce.git "${WC_TMPDIR}" - mv "${WC_TMPDIR}"/plugins/woocommerce/* "$WC_DIR" - touch "$WC_VERSION_FILE" + + ln -s "${WC_TMPDIR}"/plugins/woocommerce "$WC_DIR" + touch "$WC_VERSION_FILE" # Install composer for WooCommerce cd "${WC_DIR}" From 2583950f750d5f03e270290bab919c04f9faf542 Mon Sep 17 00:00:00 2001 From: Jorge M Date: Thu, 26 Sep 2024 10:15:48 +0200 Subject: [PATCH 03/10] Fix mixed spacing --- bin/install-wp-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 859eda181b..7eb5d01f1a 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -203,7 +203,7 @@ install_wc() { git clone --quiet --depth=1 --branch="${WC_VERSION}" https://github.com/woocommerce/woocommerce.git "${WC_TMPDIR}" ln -s "${WC_TMPDIR}"/plugins/woocommerce "$WC_DIR" - touch "$WC_VERSION_FILE" + touch "$WC_VERSION_FILE" # Install composer for WooCommerce cd "${WC_DIR}" From 4b4c04ac14e76b84e3e76262cd2db4bf5964da11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20P=C3=A9rez=20Pellicer?= <5908855+puntope@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:24:46 +0400 Subject: [PATCH 04/10] Send delete notification on pre-delete --- src/Product/SyncerHooks.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/Product/SyncerHooks.php b/src/Product/SyncerHooks.php index 40aa3cccb3..1d5ba6de72 100644 --- a/src/Product/SyncerHooks.php +++ b/src/Product/SyncerHooks.php @@ -306,14 +306,6 @@ protected function handle_update_product_notification( WC_Product $product ) { * @param int $product_id */ protected function handle_delete_product( int $product_id ) { - if ( $this->notifications_service->is_ready() ) { - /** - * For deletions, we do send directly the notification instead of scheduling it. - * This is because we want to avoid that the product is not in the database anymore when the scheduled action runs. - */ - $this->maybe_send_delete_notification( $product_id ); - } - if ( isset( $this->delete_requests_map[ $product_id ] ) ) { $product_id_map = BatchProductIDRequestEntry::convert_to_id_map( $this->delete_requests_map[ $product_id ] )->get(); if ( ! empty( $product_id_map ) && ! $this->is_already_scheduled_to_delete( $product_id ) ) { @@ -331,7 +323,8 @@ protected function handle_delete_product( int $product_id ) { * @param int $product_id */ protected function maybe_send_delete_notification( int $product_id ) { - $product = wc_get_product( $product_id ); + $product = $this->wc->maybe_get_product( $product_id ); + var_dump( $product->get_meta('_wc_gla_notification_status') ); if ( $product instanceof WC_Product && $this->product_helper->has_notified_creation( $product ) ) { $result = $this->notifications_service->notify( NotificationsService::TOPIC_PRODUCT_DELETED, $product_id, [ 'offer_id' => $this->product_helper->get_offer_id( $product_id ) ] ); @@ -365,6 +358,14 @@ protected function schedule_delete_notification( $product ) { * @param int $product_id */ protected function handle_pre_delete_product( int $product_id ) { + if ( $this->notifications_service->is_ready() ) { + /** + * For deletions, we do send directly the notification instead of scheduling it. + * This is because we want to avoid that the product is not in the database anymore when the scheduled action runs. + */ + $this->maybe_send_delete_notification( $product_id ); + } + $product = $this->wc->maybe_get_product( $product_id ); // each variation is passed to this method separately so we don't need to delete the variable product From 5b6924f29639b15c218e477c9598283d58f81b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20P=C3=A9rez=20Pellicer?= <5908855+puntope@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:25:22 +0400 Subject: [PATCH 05/10] Send delete notification on pre-delete --- src/Product/SyncerHooks.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Product/SyncerHooks.php b/src/Product/SyncerHooks.php index 1d5ba6de72..ae610b951f 100644 --- a/src/Product/SyncerHooks.php +++ b/src/Product/SyncerHooks.php @@ -324,8 +324,6 @@ protected function handle_delete_product( int $product_id ) { */ protected function maybe_send_delete_notification( int $product_id ) { $product = $this->wc->maybe_get_product( $product_id ); - var_dump( $product->get_meta('_wc_gla_notification_status') ); - if ( $product instanceof WC_Product && $this->product_helper->has_notified_creation( $product ) ) { $result = $this->notifications_service->notify( NotificationsService::TOPIC_PRODUCT_DELETED, $product_id, [ 'offer_id' => $this->product_helper->get_offer_id( $product_id ) ] ); if ( $result ) { From f8116079a314fa3f4d9fd2d783e8f8c27380f24d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:22:24 +0000 Subject: [PATCH 06/10] Start `release/2.8.6`. From 364e590adc20b2dfe78df6be3823165a72f89d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20Wytr=C4=99bowicz?= Date: Wed, 2 Oct 2024 16:24:39 +0200 Subject: [PATCH 07/10] remove older changelog entries --- readme.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/readme.txt b/readme.txt index c96ce67f68..8ea5b1d5e7 100644 --- a/readme.txt +++ b/readme.txt @@ -160,9 +160,4 @@ To allow your products to appear in all relevant locations, make sure you’ve c * Tweak - Replace deprecated event.keyCode with event.code for the verification code inputs in the contact information setting. * Tweak - Update the copy in the "Linked accounts" of the accounts connection setting to include Google Ads account. -= 2.8.3 - 2024-08-20 = -* Fix - Return empty array props as empty objects in WCOM Proxy responses. -* Tweak - Display additional context in error message when Google Ads account limit reached. -* Tweak - Upgrade readme details in WPORG. - [See changelog for all versions](https://raw.githubusercontent.com/woocommerce/google-listings-and-ads/trunk/changelog.txt). From 7390959694b42a6e86bdc288f408c6cb32991547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20Wytr=C4=99bowicz?= Date: Wed, 2 Oct 2024 20:10:15 +0200 Subject: [PATCH 08/10] woorelease: Product version bump update --- google-listings-and-ads.php | 4 ++-- package-lock.json | 2 +- package.json | 2 +- readme.txt | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/google-listings-and-ads.php b/google-listings-and-ads.php index c96514028f..065f349de7 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.8.5 + * Version: 2.8.6 * 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.8.5' ); // WRCS: DEFINED_VERSION. +define( 'WC_GLA_VERSION', '2.8.6' ); // 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 646f4851a0..c607e722e2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "google-listings-and-ads", - "version": "2.8.5", + "version": "2.8.6", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 79a7884e6b..07e10f8590 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "google-listings-and-ads", "title": "Google for WooCommerce", - "version": "2.8.5", + "version": "2.8.6", "description": "Google for WooCommerce", "author": "Automattic", "license": "GPL-3.0-or-later", diff --git a/readme.txt b/readme.txt index 8ea5b1d5e7..f6ca8dbad7 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.8.5 +Stable tag: 2.8.6 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html From f0fda0fb4788f8db25ff43460d7102019f45cb93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20Wytr=C4=99bowicz?= Date: Wed, 2 Oct 2024 20:10:26 +0200 Subject: [PATCH 09/10] woorelease: Changelog update --- changelog.txt | 5 +++++ readme.txt | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/changelog.txt b/changelog.txt index 60557e7548..9adc37cf73 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,10 @@ *** Google for WooCommerce Changelog *** += 2.8.6 - 2024-10-02 = +* Dev - Fix missing blueprint dependency. +* Tweak - Adjust WP Proxy Response to force the string type for the price fields. +* Tweak - Logic for Delete notifications. + = 2.8.5 - 2024-09-05 = * Break - Remove WooCommerce Navigation integration. * Fix - Issue with syncing shipping rates with more than two decimals. diff --git a/readme.txt b/readme.txt index f6ca8dbad7..95ca84946b 100644 --- a/readme.txt +++ b/readme.txt @@ -140,6 +140,11 @@ To allow your products to appear in all relevant locations, make sure you’ve c == Changelog == += 2.8.6 - 2024-10-02 = +* Dev - Fix missing blueprint dependency. +* Tweak - Adjust WP Proxy Response to force the string type for the price fields. +* Tweak - Logic for Delete notifications. + = 2.8.5 - 2024-09-05 = * Break - Remove WooCommerce Navigation integration. * Fix - Issue with syncing shipping rates with more than two decimals. From 53f304377d8ea51d1ac906a0d92a501112403ba3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:10:41 +0000 Subject: [PATCH 10/10] Update hooks documentation from branch. --- src/Hooks/README.md | 506 ++++++++++++++++++++++---------------------- 1 file changed, 253 insertions(+), 253 deletions(-) diff --git a/src/Hooks/README.md b/src/Hooks/README.md index 7454dc1ec7..d62142f9f0 100644 --- a/src/Hooks/README.md +++ b/src/Hooks/README.md @@ -8,7 +8,7 @@ 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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/BulkEdit/BulkEditInitializer.php#L36) +- [BulkEditInitializer.php#L36](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/BulkEdit/BulkEditInitializer.php#L36) ## jetpack_verify_api_authorization_request_error_double_encode @@ -16,7 +16,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [JetpackWPCOM.php#L223](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Integration/JetpackWPCOM.php#L223) +- [JetpackWPCOM.php#L223](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Integration/JetpackWPCOM.php#L223) ## woocommerce_admin_disabled @@ -24,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Internal/Requirements/WCAdminValidator.php#L38) +- [WCAdminValidator.php#L38](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Internal/Requirements/WCAdminValidator.php#L38) ## woocommerce_gla_ads_billing_setup_status @@ -32,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L113) -- [Ads.php#L122](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L122) +- [Ads.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L113) +- [Ads.php#L122](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L122) ## woocommerce_gla_ads_client_exception @@ -41,24 +41,24 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Ads.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L74) -- [Ads.php#L118](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L118) -- [Ads.php#L167](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L167) -- [Ads.php#L209](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L209) -- [Ads.php#L319](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Ads.php#L319) -- [AdsAssetGroupAsset.php#L135](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsAssetGroupAsset.php#L135) -- [AdsAssetGroupAsset.php#L201](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsAssetGroupAsset.php#L201) -- [AdsAssetGroup.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsAssetGroup.php#L113) -- [AdsAssetGroup.php#L261](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsAssetGroup.php#L261) -- [AdsAssetGroup.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsAssetGroup.php#L325) -- [AdsReport.php#L105](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsReport.php#L105) -- [AdsCampaign.php#L163](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsCampaign.php#L163) -- [AdsCampaign.php#L206](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsCampaign.php#L206) -- [AdsCampaign.php#L273](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsCampaign.php#L273) -- [AdsCampaign.php#L328](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsCampaign.php#L328) -- [AdsCampaign.php#L365](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsCampaign.php#L365) -- [AdsConversionAction.php#L100](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsConversionAction.php#L100) -- [AdsConversionAction.php#L146](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsConversionAction.php#L146) +- [Ads.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L74) +- [Ads.php#L118](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L118) +- [Ads.php#L167](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L167) +- [Ads.php#L209](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L209) +- [Ads.php#L319](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Ads.php#L319) +- [AdsReport.php#L105](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsReport.php#L105) +- [AdsAssetGroupAsset.php#L135](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsAssetGroupAsset.php#L135) +- [AdsAssetGroupAsset.php#L201](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsAssetGroupAsset.php#L201) +- [AdsAssetGroup.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsAssetGroup.php#L113) +- [AdsAssetGroup.php#L261](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsAssetGroup.php#L261) +- [AdsAssetGroup.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsAssetGroup.php#L325) +- [AdsCampaign.php#L163](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsCampaign.php#L163) +- [AdsCampaign.php#L206](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsCampaign.php#L206) +- [AdsCampaign.php#L273](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsCampaign.php#L273) +- [AdsCampaign.php#L328](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsCampaign.php#L328) +- [AdsCampaign.php#L365](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsCampaign.php#L365) +- [AdsConversionAction.php#L100](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsConversionAction.php#L100) +- [AdsConversionAction.php#L146](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsConversionAction.php#L146) ## woocommerce_gla_ads_setup_completed @@ -66,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/Ads/SetupCompleteController.php#L66) +- [SetupCompleteController.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/Ads/SetupCompleteController.php#L66) ## woocommerce_gla_attribute_applicable_product_types_ @@ -74,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Product/Attributes/AttributesForm.php#L98) -- [AttributeManager.php#L368](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/Attributes/AttributeManager.php#L368) +- [AttributesForm.php#L98](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Product/Attributes/AttributesForm.php#L98) +- [AttributeManager.php#L368](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/Attributes/AttributeManager.php#L368) ## woocommerce_gla_attribute_hidden_product_types_ @@ -83,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Product/Attributes/AttributesForm.php#L103) +- [AttributesForm.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Product/Attributes/AttributesForm.php#L103) ## woocommerce_gla_attribute_mapping_sources @@ -91,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L31) +- [IsFieldTrait.php#L31](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L31) ## woocommerce_gla_attribute_mapping_sources_custom_attributes @@ -99,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L125) +- [IsFieldTrait.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L125) ## woocommerce_gla_attribute_mapping_sources_global_attributes @@ -107,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L64) +- [IsFieldTrait.php#L64](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L64) ## woocommerce_gla_attribute_mapping_sources_product_fields @@ -115,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L115) +- [IsFieldTrait.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L115) ## woocommerce_gla_attribute_mapping_sources_taxonomies @@ -123,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L65) +- [IsFieldTrait.php#L65](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/AttributeMapping/Traits/IsFieldTrait.php#L65) ## woocommerce_gla_attributes_tab_applicable_product_types @@ -131,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Product/Attributes/AttributesTrait.php#L18) +- [AttributesTrait.php#L18](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Product/Attributes/AttributesTrait.php#L18) ## woocommerce_gla_batch_deleted_products @@ -139,7 +139,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L228](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L228) +- [ProductSyncer.php#L228](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L228) ## woocommerce_gla_batch_retry_delete_products @@ -147,7 +147,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L342) +- [ProductSyncer.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L342) ## woocommerce_gla_batch_retry_update_products @@ -155,7 +155,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L286) +- [ProductSyncer.php#L286](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L286) ## woocommerce_gla_batch_updated_products @@ -163,7 +163,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L142](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L142) +- [ProductSyncer.php#L142](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L142) ## woocommerce_gla_batched_job_size @@ -171,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/AbstractBatchedActionSchedulerJob.php#L104) -- [UpdateSyncableProductsCount.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/UpdateSyncableProductsCount.php#L74) +- [AbstractBatchedActionSchedulerJob.php#L104](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/AbstractBatchedActionSchedulerJob.php#L104) +- [UpdateSyncableProductsCount.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/UpdateSyncableProductsCount.php#L74) ## woocommerce_gla_bulk_update_coupon @@ -180,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/BulkEdit/CouponBulkEdit.php#L133) +- [CouponBulkEdit.php#L133](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/BulkEdit/CouponBulkEdit.php#L133) ## woocommerce_gla_conversion_action_name @@ -188,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/AdsConversionAction.php#L67) +- [AdsConversionAction.php#L67](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/AdsConversionAction.php#L67) ## woocommerce_gla_coupon_destinations @@ -196,7 +196,7 @@ 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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/WCCouponAdapter.php#L391) +- [WCCouponAdapter.php#L391](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/WCCouponAdapter.php#L391) ## woocommerce_gla_coupon_is_ready_to_notify @@ -204,7 +204,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponHelper.php#L359](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponHelper.php#L359) +- [CouponHelper.php#L359](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponHelper.php#L359) ## woocommerce_gla_coupons_delete_retry_on_failure @@ -212,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L438) +- [CouponSyncer.php#L438](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L438) ## woocommerce_gla_coupons_update_retry_on_failure @@ -220,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L400) +- [CouponSyncer.php#L400](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L400) ## woocommerce_gla_custom_merchant_issues @@ -228,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantStatuses.php#L538) +- [MerchantStatuses.php#L538](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantStatuses.php#L538) ## woocommerce_gla_debug_message @@ -236,40 +236,40 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantStatuses.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantStatuses.php#L413) -- [MerchantStatuses.php#L667](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantStatuses.php#L667) -- [MerchantStatuses.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantStatuses.php#L916) -- [MerchantCenterService.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantCenterService.php#L325) -- [ProductMetaQueryHelper.php#L109](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/DB/ProductMetaQueryHelper.php#L109) -- [ProductMetaQueryHelper.php#L140](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/DB/ProductMetaQueryHelper.php#L140) -- [ProductSyncer.php#L148](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L148) -- [ProductSyncer.php#L158](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L158) -- [ProductSyncer.php#L234](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L234) -- [ProductSyncer.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L244) -- [ProductHelper.php#L612](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L612) -- [ProductHelper.php#L645](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L645) -- [WCProductAdapter.php#L205](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L205) -- [ProductRepository.php#L315](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductRepository.php#L315) -- [BatchProductHelper.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/BatchProductHelper.php#L208) -- [BatchProductHelper.php#L231](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/BatchProductHelper.php#L231) -- [SyncerHooks.php#L251](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/SyncerHooks.php#L251) -- [NotificationsService.php#L128](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/NotificationsService.php#L128) -- [IssuesController.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L95) -- [CouponSyncer.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L103) -- [CouponSyncer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L116) -- [CouponSyncer.php#L141](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L141) -- [CouponSyncer.php#L155](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L155) -- [CouponSyncer.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L172) -- [CouponSyncer.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L195) -- [CouponSyncer.php#L260](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L260) -- [CouponSyncer.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L309) -- [CouponSyncer.php#L328](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L328) -- [CouponHelper.php#L272](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponHelper.php#L272) -- [CouponHelper.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponHelper.php#L309) -- [SyncerHooks.php#L210](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/SyncerHooks.php#L210) -- [CleanupSyncedProducts.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/CleanupSyncedProducts.php#L74) -- [ActionSchedulerJobMonitor.php#L117](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/ActionSchedulerJobMonitor.php#L117) -- [ActionSchedulerJobMonitor.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/ActionSchedulerJobMonitor.php#L126) +- [ActionSchedulerJobMonitor.php#L117](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/ActionSchedulerJobMonitor.php#L117) +- [ActionSchedulerJobMonitor.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/ActionSchedulerJobMonitor.php#L126) +- [CleanupSyncedProducts.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/CleanupSyncedProducts.php#L74) +- [MerchantCenterService.php#L325](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantCenterService.php#L325) +- [MerchantStatuses.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantStatuses.php#L413) +- [MerchantStatuses.php#L667](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantStatuses.php#L667) +- [MerchantStatuses.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantStatuses.php#L916) +- [IssuesController.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L95) +- [NotificationsService.php#L128](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/NotificationsService.php#L128) +- [ProductHelper.php#L612](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L612) +- [ProductHelper.php#L645](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L645) +- [ProductSyncer.php#L148](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L148) +- [ProductSyncer.php#L158](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L158) +- [ProductSyncer.php#L234](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L234) +- [ProductSyncer.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L244) +- [ProductRepository.php#L315](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductRepository.php#L315) +- [WCProductAdapter.php#L205](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L205) +- [SyncerHooks.php#L251](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/SyncerHooks.php#L251) +- [BatchProductHelper.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/BatchProductHelper.php#L208) +- [BatchProductHelper.php#L231](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/BatchProductHelper.php#L231) +- [ProductMetaQueryHelper.php#L109](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/DB/ProductMetaQueryHelper.php#L109) +- [ProductMetaQueryHelper.php#L140](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/DB/ProductMetaQueryHelper.php#L140) +- [CouponHelper.php#L272](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponHelper.php#L272) +- [CouponHelper.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponHelper.php#L309) +- [CouponSyncer.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L103) +- [CouponSyncer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L116) +- [CouponSyncer.php#L141](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L141) +- [CouponSyncer.php#L155](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L155) +- [CouponSyncer.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L172) +- [CouponSyncer.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L195) +- [CouponSyncer.php#L260](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L260) +- [CouponSyncer.php#L309](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L309) +- [CouponSyncer.php#L328](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L328) +- [SyncerHooks.php#L210](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/SyncerHooks.php#L210) ## woocommerce_gla_deleted_promotions @@ -277,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L322) +- [CouponSyncer.php#L322](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L322) ## woocommerce_gla_dimension_unit @@ -285,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L431) +- [WCProductAdapter.php#L431](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L431) ## woocommerce_gla_disable_gtag_tracking @@ -293,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Google/GlobalSiteTag.php#L545) +- [GlobalSiteTag.php#L545](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Google/GlobalSiteTag.php#L545) ## woocommerce_gla_enable_connection_test @@ -301,7 +301,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ConnectionTest.php#L98](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/ConnectionTest.php#L98) +- [ConnectionTest.php#L98](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/ConnectionTest.php#L98) ## woocommerce_gla_enable_debug_logging @@ -309,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Logging/DebugLogger.php#L33) +- [DebugLogger.php#L33](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Logging/DebugLogger.php#L33) ## woocommerce_gla_enable_mcm @@ -317,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MultichannelMarketing/GLAChannel.php#L86) +- [GLAChannel.php#L86](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MultichannelMarketing/GLAChannel.php#L86) ## woocommerce_gla_enable_reports @@ -325,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Admin.php#L271) +- [Admin.php#L271](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Admin.php#L271) ## woocommerce_gla_error @@ -333,29 +333,29 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [PHPView.php#L136](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/View/PHPView.php#L136) -- [PHPView.php#L164](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/View/PHPView.php#L164) -- [PHPView.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/View/PHPView.php#L208) -- [ProductMetaQueryHelper.php#L156](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/DB/ProductMetaQueryHelper.php#L156) -- [ProductMetaHandler.php#L178](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductMetaHandler.php#L178) -- [ProductSyncer.php#L289](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L289) -- [ProductSyncer.php#L312](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L312) -- [ProductSyncer.php#L345](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L345) -- [ProductSyncer.php#L360](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L360) -- [ProductSyncer.php#L367](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L367) -- [AttributeManager.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/Attributes/AttributeManager.php#L342) -- [ProductHelper.php#L504](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L504) -- [ProductHelper.php#L721](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L721) -- [BatchProductHelper.php#L248](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/BatchProductHelper.php#L248) -- [OAuthService.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/OAuthService.php#L244) -- [NotificationsService.php#L145](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/NotificationsService.php#L145) -- [CouponSyncer.php#L410](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L410) -- [CouponSyncer.php#L448](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L448) -- [CouponSyncer.php#L466](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L466) -- [CouponSyncer.php#L481](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L481) -- [CouponMetaHandler.php#L227](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponMetaHandler.php#L227) -- [AbstractItemNotificationJob.php#L28](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/Notifications/AbstractItemNotificationJob.php#L28) -- [AbstractItemNotificationJob.php#L46](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/Notifications/AbstractItemNotificationJob.php#L46) +- [AbstractItemNotificationJob.php#L28](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/Notifications/AbstractItemNotificationJob.php#L28) +- [AbstractItemNotificationJob.php#L46](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/Notifications/AbstractItemNotificationJob.php#L46) +- [NotificationsService.php#L145](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/NotificationsService.php#L145) +- [OAuthService.php#L244](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/OAuthService.php#L244) +- [PHPView.php#L136](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/View/PHPView.php#L136) +- [PHPView.php#L164](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/View/PHPView.php#L164) +- [PHPView.php#L208](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/View/PHPView.php#L208) +- [ProductHelper.php#L504](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L504) +- [ProductHelper.php#L721](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L721) +- [ProductSyncer.php#L289](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L289) +- [ProductSyncer.php#L312](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L312) +- [ProductSyncer.php#L345](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L345) +- [ProductSyncer.php#L360](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L360) +- [ProductSyncer.php#L367](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L367) +- [ProductMetaHandler.php#L178](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductMetaHandler.php#L178) +- [AttributeManager.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/Attributes/AttributeManager.php#L342) +- [BatchProductHelper.php#L248](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/BatchProductHelper.php#L248) +- [ProductMetaQueryHelper.php#L156](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/DB/ProductMetaQueryHelper.php#L156) +- [CouponMetaHandler.php#L227](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponMetaHandler.php#L227) +- [CouponSyncer.php#L410](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L410) +- [CouponSyncer.php#L448](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L448) +- [CouponSyncer.php#L466](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L466) +- [CouponSyncer.php#L481](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L481) ## woocommerce_gla_exception @@ -363,33 +363,33 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [CouponChannelVisibilityMetaBox.php#L197](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/MetaBox/CouponChannelVisibilityMetaBox.php#L197) -- [ChannelVisibilityMetaBox.php#L176](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/MetaBox/ChannelVisibilityMetaBox.php#L176) -- [DateTime.php#L44](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Input/DateTime.php#L44) -- [DateTime.php#L80](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Input/DateTime.php#L80) -- [GoogleServiceProvider.php#L237](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Internal/DependencyManagement/GoogleServiceProvider.php#L237) -- [GoogleServiceProvider.php#L247](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Internal/DependencyManagement/GoogleServiceProvider.php#L247) -- [PHPView.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/View/PHPView.php#L87) -- [ProductSyncer.php#L133](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L133) -- [ProductSyncer.php#L219](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L219) -- [ProductHelper.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L284) -- [ScriptWithBuiltDependenciesAsset.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Assets/ScriptWithBuiltDependenciesAsset.php#L66) -- [BaseAsset.php#L218](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Assets/BaseAsset.php#L218) -- [NoteInitializer.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Notes/NoteInitializer.php#L74) -- [NoteInitializer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Notes/NoteInitializer.php#L116) -- [ProductVisibilityController.php#L193](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/ProductVisibilityController.php#L193) -- [ContactInformationController.php#L242](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/ContactInformationController.php#L242) -- [SettingsSyncController.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L96) -- [RequestReviewController.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L284) -- [RequestReviewController.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L329) -- [Connection.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Connection.php#L95) -- [Middleware.php#L458](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L458) -- [CouponSyncer.php#L203](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L203) -- [CouponSyncer.php#L293](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L293) -- [PluginUpdate.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/Update/PluginUpdate.php#L75) -- [ClearProductStatsCache.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Event/ClearProductStatsCache.php#L61) -- [WooCommercePreOrders.php#L111](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Integration/WooCommercePreOrders.php#L111) -- [WooCommercePreOrders.php#L131](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Integration/WooCommercePreOrders.php#L131) +- [PluginUpdate.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/Update/PluginUpdate.php#L75) +- [RequestReviewController.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L284) +- [RequestReviewController.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L329) +- [ProductVisibilityController.php#L193](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/ProductVisibilityController.php#L193) +- [SettingsSyncController.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L96) +- [ContactInformationController.php#L242](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/ContactInformationController.php#L242) +- [Middleware.php#L458](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L458) +- [Connection.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Connection.php#L95) +- [PHPView.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/View/PHPView.php#L87) +- [DateTime.php#L44](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Input/DateTime.php#L44) +- [DateTime.php#L80](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Input/DateTime.php#L80) +- [ChannelVisibilityMetaBox.php#L176](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/MetaBox/ChannelVisibilityMetaBox.php#L176) +- [CouponChannelVisibilityMetaBox.php#L197](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/MetaBox/CouponChannelVisibilityMetaBox.php#L197) +- [BaseAsset.php#L218](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Assets/BaseAsset.php#L218) +- [ScriptWithBuiltDependenciesAsset.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Assets/ScriptWithBuiltDependenciesAsset.php#L66) +- [NoteInitializer.php#L74](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Notes/NoteInitializer.php#L74) +- [NoteInitializer.php#L116](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Notes/NoteInitializer.php#L116) +- [ProductHelper.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L284) +- [ProductSyncer.php#L133](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L133) +- [ProductSyncer.php#L219](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L219) +- [GoogleServiceProvider.php#L237](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Internal/DependencyManagement/GoogleServiceProvider.php#L237) +- [GoogleServiceProvider.php#L247](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Internal/DependencyManagement/GoogleServiceProvider.php#L247) +- [WooCommercePreOrders.php#L111](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Integration/WooCommercePreOrders.php#L111) +- [WooCommercePreOrders.php#L131](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Integration/WooCommercePreOrders.php#L131) +- [ClearProductStatsCache.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Event/ClearProductStatsCache.php#L61) +- [CouponSyncer.php#L203](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L203) +- [CouponSyncer.php#L293](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L293) ## woocommerce_gla_force_run_install @@ -397,7 +397,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Installer.php#L82) +- [Installer.php#L82](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Installer.php#L82) ## woocommerce_gla_get_google_product_offer_id @@ -405,7 +405,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L284) +- [WCProductAdapter.php#L284](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L284) ## woocommerce_gla_get_sync_ready_products_filter @@ -413,7 +413,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductFilter.php#L61) +- [ProductFilter.php#L61](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductFilter.php#L61) ## woocommerce_gla_get_sync_ready_products_pre_filter @@ -421,7 +421,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductFilter.php#L47) +- [ProductFilter.php#L47](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductFilter.php#L47) ## woocommerce_gla_get_wc_product_id @@ -429,7 +429,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductHelper.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L329) +- [ProductHelper.php#L329](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L329) ## woocommerce_gla_gtag_consent @@ -437,7 +437,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Google/GlobalSiteTag.php#L321) +- [GlobalSiteTag.php#L321](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Google/GlobalSiteTag.php#L321) ## woocommerce_gla_guzzle_client_exception @@ -445,19 +445,19 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [GoogleServiceProvider.php#L266](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Internal/DependencyManagement/GoogleServiceProvider.php#L266) -- [Connection.php#L70](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Connection.php#L70) -- [Connection.php#L91](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Connection.php#L91) -- [Connection.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Connection.php#L126) -- [Middleware.php#L82](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L82) -- [Middleware.php#L180](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L180) -- [Middleware.php#L230](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L230) -- [Middleware.php#L275](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L275) -- [Middleware.php#L347](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L347) -- [Middleware.php#L397](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L397) -- [Middleware.php#L421](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L421) -- [Middleware.php#L455](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L455) -- [Middleware.php#L603](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L603) +- [Middleware.php#L82](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L82) +- [Middleware.php#L180](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L180) +- [Middleware.php#L230](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L230) +- [Middleware.php#L275](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L275) +- [Middleware.php#L347](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L347) +- [Middleware.php#L397](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L397) +- [Middleware.php#L421](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L421) +- [Middleware.php#L455](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L455) +- [Middleware.php#L603](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L603) +- [Connection.php#L70](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Connection.php#L70) +- [Connection.php#L91](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Connection.php#L91) +- [Connection.php#L126](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Connection.php#L126) +- [GoogleServiceProvider.php#L266](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Internal/DependencyManagement/GoogleServiceProvider.php#L266) ## woocommerce_gla_guzzle_invalid_response @@ -465,15 +465,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L317) -- [Connection.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Connection.php#L66) -- [Connection.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Connection.php#L121) -- [Middleware.php#L161](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L161) -- [Middleware.php#L225](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L225) -- [Middleware.php#L269](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L269) -- [Middleware.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L342) -- [Middleware.php#L392](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L392) -- [Middleware.php#L595](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L595) +- [RequestReviewController.php#L317](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L317) +- [Middleware.php#L161](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L161) +- [Middleware.php#L225](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L225) +- [Middleware.php#L269](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L269) +- [Middleware.php#L342](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L342) +- [Middleware.php#L392](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L392) +- [Middleware.php#L595](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L595) +- [Connection.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Connection.php#L66) +- [Connection.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Connection.php#L121) ## woocommerce_gla_handle_shipping_method_to_rates @@ -481,7 +481,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ZoneMethodsParser.php#L109](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Shipping/ZoneMethodsParser.php#L109) +- [ZoneMethodsParser.php#L109](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Shipping/ZoneMethodsParser.php#L109) ## woocommerce_gla_hidden_coupon_types @@ -489,7 +489,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L379) +- [CouponSyncer.php#L379](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L379) ## woocommerce_gla_job_failure_rate_threshold @@ -497,7 +497,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/ActionSchedulerJobMonitor.php#L186) +- [ActionSchedulerJobMonitor.php#L186](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/ActionSchedulerJobMonitor.php#L186) ## woocommerce_gla_job_failure_timeframe @@ -505,7 +505,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/ActionSchedulerJobMonitor.php#L195) +- [ActionSchedulerJobMonitor.php#L195](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/ActionSchedulerJobMonitor.php#L195) ## woocommerce_gla_mapping_rules_change @@ -513,9 +513,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L143) -- [AttributeMappingRulesController.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L166) -- [AttributeMappingRulesController.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L188) +- [AttributeMappingRulesController.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L143) +- [AttributeMappingRulesController.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L166) +- [AttributeMappingRulesController.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/AttributeMapping/AttributeMappingRulesController.php#L188) ## woocommerce_gla_mc_account_review_lifetime @@ -523,7 +523,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Google/RequestReviewStatuses.php#L157) +- [RequestReviewStatuses.php#L157](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Google/RequestReviewStatuses.php#L157) ## woocommerce_gla_mc_client_exception @@ -531,17 +531,17 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantReport.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/MerchantReport.php#L115) -- [MerchantReport.php#L183](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/MerchantReport.php#L183) -- [Merchant.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L95) -- [Merchant.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L143) -- [Merchant.php#L175](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L175) -- [Merchant.php#L194](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L194) -- [Merchant.php#L250](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L250) -- [Merchant.php#L295](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L295) -- [Merchant.php#L357](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L357) -- [Merchant.php#L390](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L390) -- [Merchant.php#L423](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L423) +- [MerchantReport.php#L115](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/MerchantReport.php#L115) +- [MerchantReport.php#L183](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/MerchantReport.php#L183) +- [Merchant.php#L95](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L95) +- [Merchant.php#L143](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L143) +- [Merchant.php#L175](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L175) +- [Merchant.php#L194](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L194) +- [Merchant.php#L250](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L250) +- [Merchant.php#L295](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L295) +- [Merchant.php#L357](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L357) +- [Merchant.php#L390](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L390) +- [Merchant.php#L423](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L423) ## woocommerce_gla_mc_settings_sync @@ -549,7 +549,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L69) +- [SettingsSyncController.php#L69](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L69) ## woocommerce_gla_mc_status_lifetime @@ -557,7 +557,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantStatuses.php#L935) +- [MerchantStatuses.php#L935](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantStatuses.php#L935) ## woocommerce_gla_merchant_issue_override @@ -565,7 +565,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L85) +- [IssuesController.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/IssuesController.php#L85) ## woocommerce_gla_merchant_status_presync_issues_chunk @@ -573,7 +573,7 @@ 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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantStatuses.php#L596) +- [MerchantStatuses.php#L596](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantStatuses.php#L596) ## woocommerce_gla_notification_job_can_schedule @@ -581,7 +581,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AbstractNotificationJob.php#L86](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Jobs/Notifications/AbstractNotificationJob.php#L86) +- [AbstractNotificationJob.php#L86](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Jobs/Notifications/AbstractNotificationJob.php#L86) ## woocommerce_gla_notifications_enabled @@ -589,7 +589,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [NotificationsService.php#L187](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/NotificationsService.php#L187) +- [NotificationsService.php#L187](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/NotificationsService.php#L187) ## woocommerce_gla_notify @@ -597,7 +597,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [NotificationsService.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/NotificationsService.php#L103) +- [NotificationsService.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/NotificationsService.php#L103) ## woocommerce_gla_options_deleted_ @@ -605,7 +605,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Options/Options.php#L103) +- [Options.php#L103](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Options/Options.php#L103) ## woocommerce_gla_options_updated_ @@ -613,8 +613,8 @@ 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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Options/Options.php#L65) -- [Options.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Options/Options.php#L85) +- [Options.php#L65](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Options/Options.php#L65) +- [Options.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Options/Options.php#L85) ## woocommerce_gla_partner_app_auth_failure @@ -622,7 +622,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Middleware.php#L589](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L589) +- [Middleware.php#L589](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L589) ## woocommerce_gla_prepared_response_->GET_ROUTE_NAME @@ -630,7 +630,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/BaseController.php#L160) +- [BaseController.php#L160](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/BaseController.php#L160) ## woocommerce_gla_product_attribute_types @@ -638,7 +638,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AttributeManager.php#L316](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/Attributes/AttributeManager.php#L316) +- [AttributeManager.php#L316](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/Attributes/AttributeManager.php#L316) ## woocommerce_gla_product_attribute_value_ @@ -646,8 +646,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L916) -- [WCProductAdapter.php#L967](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L967) +- [WCProductAdapter.php#L916](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L916) +- [WCProductAdapter.php#L967](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L967) ## woocommerce_gla_product_attribute_value_description @@ -655,7 +655,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L352) +- [WCProductAdapter.php#L352](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L352) ## woocommerce_gla_product_attribute_value_options_::get_id @@ -663,7 +663,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Admin/Product/Attributes/AttributesForm.php#L127) +- [AttributesForm.php#L127](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Admin/Product/Attributes/AttributesForm.php#L127) ## woocommerce_gla_product_attribute_value_price @@ -671,7 +671,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L640) +- [WCProductAdapter.php#L640](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L640) ## woocommerce_gla_product_attribute_value_sale_price @@ -679,7 +679,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L692) +- [WCProductAdapter.php#L692](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L692) ## woocommerce_gla_product_attribute_values @@ -687,7 +687,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L166) +- [WCProductAdapter.php#L166](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L166) ## woocommerce_gla_product_description_apply_shortcodes @@ -695,7 +695,7 @@ 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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L321) +- [WCProductAdapter.php#L321](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L321) ## woocommerce_gla_product_is_ready_to_notify @@ -703,7 +703,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductHelper.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L413) +- [ProductHelper.php#L413](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L413) ## woocommerce_gla_product_property_value_is_virtual @@ -711,7 +711,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L782) +- [WCProductAdapter.php#L782](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L782) ## woocommerce_gla_product_query_args @@ -719,7 +719,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductRepository.php#L376) +- [ProductRepository.php#L376](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductRepository.php#L376) ## woocommerce_gla_product_view_report_page_size @@ -727,7 +727,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/MerchantReport.php#L68) +- [MerchantReport.php#L68](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/MerchantReport.php#L68) ## woocommerce_gla_products_delete_retry_on_failure @@ -735,7 +735,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L341](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L341) +- [ProductSyncer.php#L341](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L341) ## woocommerce_gla_products_update_retry_on_failure @@ -743,7 +743,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L285](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L285) +- [ProductSyncer.php#L285](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L285) ## woocommerce_gla_ready_for_syncing @@ -751,7 +751,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [MerchantCenterService.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/MerchantCenterService.php#L121) +- [MerchantCenterService.php#L121](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/MerchantCenterService.php#L121) ## woocommerce_gla_request_review_failure @@ -759,9 +759,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L113) -- [RequestReviewController.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L125) -- [RequestReviewController.php#L310](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L310) +- [RequestReviewController.php#L113](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L113) +- [RequestReviewController.php#L125](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L125) +- [RequestReviewController.php#L310](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L310) ## woocommerce_gla_request_review_response @@ -769,7 +769,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L281) +- [RequestReviewController.php#L281](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/RequestReviewController.php#L281) ## woocommerce_gla_retry_delete_coupons @@ -777,7 +777,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L443) +- [CouponSyncer.php#L443](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L443) ## woocommerce_gla_retry_update_coupons @@ -785,7 +785,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L405) +- [CouponSyncer.php#L405](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L405) ## woocommerce_gla_site_claim_failure @@ -793,10 +793,10 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L396](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/AccountService.php#L396) -- [Middleware.php#L270](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L270) -- [Middleware.php#L276](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L276) -- [Merchant.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L96) +- [AccountService.php#L396](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/AccountService.php#L396) +- [Middleware.php#L270](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L270) +- [Middleware.php#L276](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L276) +- [Merchant.php#L96](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L96) ## woocommerce_gla_site_claim_overwrite_required @@ -804,7 +804,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L391](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/AccountService.php#L391) +- [AccountService.php#L391](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/AccountService.php#L391) ## woocommerce_gla_site_claim_success @@ -812,8 +812,8 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [Middleware.php#L265](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Middleware.php#L265) -- [Merchant.php#L93](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/Merchant.php#L93) +- [Middleware.php#L265](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Middleware.php#L265) +- [Merchant.php#L93](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/Merchant.php#L93) ## woocommerce_gla_site_url @@ -821,7 +821,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/PluginHelper.php#L188) +- [PluginHelper.php#L188](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/PluginHelper.php#L188) ## woocommerce_gla_site_verify_failure @@ -829,9 +829,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/SiteVerification.php#L58) -- [SiteVerification.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/SiteVerification.php#L66) -- [SiteVerification.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/SiteVerification.php#L87) +- [SiteVerification.php#L58](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/SiteVerification.php#L58) +- [SiteVerification.php#L66](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/SiteVerification.php#L66) +- [SiteVerification.php#L87](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/SiteVerification.php#L87) ## woocommerce_gla_site_verify_success @@ -839,7 +839,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/SiteVerification.php#L85) +- [SiteVerification.php#L85](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/SiteVerification.php#L85) ## woocommerce_gla_supported_coupon_types @@ -847,7 +847,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L366) +- [CouponSyncer.php#L366](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L366) ## woocommerce_gla_supported_product_types @@ -855,7 +855,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductSyncer.php#L263](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductSyncer.php#L263) +- [ProductSyncer.php#L263](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductSyncer.php#L263) ## woocommerce_gla_sv_client_exception @@ -863,8 +863,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/SiteVerification.php#L120) -- [SiteVerification.php#L162](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Google/SiteVerification.php#L162) +- [SiteVerification.php#L120](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/SiteVerification.php#L120) +- [SiteVerification.php#L162](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Google/SiteVerification.php#L162) ## woocommerce_gla_tax_excluded @@ -872,7 +872,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L601) +- [WCProductAdapter.php#L601](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L601) ## woocommerce_gla_track_event @@ -880,16 +880,16 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L596](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/AccountService.php#L596) -- [AccountService.php#L616](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/AccountService.php#L616) -- [OAuthService.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/OAuthService.php#L172) -- [OAuthService.php#L200](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/OAuthService.php#L200) -- [OAuthService.php#L220](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/WP/OAuthService.php#L220) -- [SettingsSyncController.php#L83](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L83) -- [CampaignController.php#L170](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/Ads/CampaignController.php#L170) -- [CampaignController.php#L249](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/Ads/CampaignController.php#L249) -- [CampaignController.php#L287](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/Ads/CampaignController.php#L287) -- [SetupCompleteController.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/API/Site/Controllers/Ads/SetupCompleteController.php#L75) +- [AccountService.php#L596](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/AccountService.php#L596) +- [AccountService.php#L616](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/AccountService.php#L616) +- [SettingsSyncController.php#L83](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/MerchantCenter/SettingsSyncController.php#L83) +- [SetupCompleteController.php#L75](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/Ads/SetupCompleteController.php#L75) +- [CampaignController.php#L170](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/Ads/CampaignController.php#L170) +- [CampaignController.php#L249](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/Ads/CampaignController.php#L249) +- [CampaignController.php#L287](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/Site/Controllers/Ads/CampaignController.php#L287) +- [OAuthService.php#L172](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/OAuthService.php#L172) +- [OAuthService.php#L200](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/OAuthService.php#L200) +- [OAuthService.php#L220](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/API/WP/OAuthService.php#L220) ## woocommerce_gla_updated_coupon @@ -897,7 +897,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Coupon/CouponSyncer.php#L169) +- [CouponSyncer.php#L169](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Coupon/CouponSyncer.php#L169) ## woocommerce_gla_url_switch_required @@ -905,7 +905,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L476](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/AccountService.php#L476) +- [AccountService.php#L476](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/AccountService.php#L476) ## woocommerce_gla_url_switch_success @@ -913,7 +913,7 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [AccountService.php#L499](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/MerchantCenter/AccountService.php#L499) +- [AccountService.php#L499](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/MerchantCenter/AccountService.php#L499) ## woocommerce_gla_use_short_description @@ -921,7 +921,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L298) +- [WCProductAdapter.php#L298](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L298) ## woocommerce_gla_wcs_url @@ -929,8 +929,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/PluginHelper.php#L174) -- [PluginHelper.php#L177](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/PluginHelper.php#L177) +- [PluginHelper.php#L174](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/PluginHelper.php#L174) +- [PluginHelper.php#L177](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/PluginHelper.php#L177) ## woocommerce_gla_weight_unit @@ -938,7 +938,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/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/WCProductAdapter.php#L432) +- [WCProductAdapter.php#L432](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/WCProductAdapter.php#L432) ## woocommerce_hide_invisible_variations @@ -946,5 +946,5 @@ A list of hooks, e.g. `actions` and `filters`, that are defined or used in this **Used in**: -- [ProductHelper.php#L519](https://github.com/woocommerce/google-listings-and-ads/blob/cf767620ceac4f1c58c916e38e49fd23d26d84e4/src/Product/ProductHelper.php#L519) +- [ProductHelper.php#L519](https://github.com/woocommerce/google-listings-and-ads/blob/f0fda0fb4788f8db25ff43460d7102019f45cb93/src/Product/ProductHelper.php#L519)