-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoocommerce.php
1705 lines (1705 loc) · 72 KB
/
woocommerce.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php return array (
'exclude-constants' =>
array (
0 => 'WC_PLUGIN_FILE',
1 => 'WC_ABSPATH',
2 => 'WC_PLUGIN_BASENAME',
3 => 'WC_VERSION',
4 => 'WOOCOMMERCE_VERSION',
5 => 'WC_ROUNDING_PRECISION',
6 => 'WC_DISCOUNT_ROUNDING_MODE',
7 => 'WC_TAX_ROUNDING_MODE',
8 => 'WC_DELIMITER',
9 => 'WC_SESSION_CACHE_GROUP',
10 => 'WC_TEMPLATE_DEBUG_MODE',
11 => 'WC_NOTICE_MIN_PHP_VERSION',
12 => 'WC_NOTICE_MIN_WP_VERSION',
13 => 'WC_PHP_MIN_REQUIREMENTS_NOTICE',
14 => 'WC_SSR_PLUGIN_UPDATE_RELEASE_VERSION_TYPE',
),
'exclude-functions' =>
array (
0 => 'WC',
1 => 'wc_get_container',
2 => 'wc_update_product_stock',
3 => 'wc_update_product_stock_status',
4 => 'wc_maybe_reduce_stock_levels',
5 => 'wc_maybe_increase_stock_levels',
6 => 'wc_reduce_stock_levels',
7 => 'wc_trigger_stock_change_notifications',
8 => 'wc_trigger_stock_change_actions',
9 => 'wc_increase_stock_levels',
10 => 'wc_get_held_stock_quantity',
11 => 'wc_reserve_stock_for_order',
12 => 'wc_release_stock_for_order',
13 => 'wc_release_coupons_for_order',
14 => 'wc_get_low_stock_amount',
15 => 'wc_do_deprecated_action',
16 => 'wc_deprecated_function',
17 => 'wc_deprecated_hook',
18 => 'wc_caught_exception',
19 => 'wc_doing_it_wrong',
20 => 'wc_deprecated_argument',
21 => 'woocommerce_show_messages',
22 => 'woocommerce_weekend_area_js',
23 => 'woocommerce_tooltip_js',
24 => 'woocommerce_datepicker_js',
25 => 'woocommerce_admin_scripts',
26 => 'woocommerce_create_page',
27 => 'woocommerce_readfile_chunked',
28 => 'woocommerce_format_total',
29 => 'woocommerce_get_formatted_product_name',
30 => 'woocommerce_legacy_paypal_ipn',
31 => 'get_product',
32 => 'woocommerce_protected_product_add_to_cart',
33 => 'woocommerce_empty_cart',
34 => 'woocommerce_load_persistent_cart',
35 => 'woocommerce_add_to_cart_message',
36 => 'woocommerce_clear_cart_after_payment',
37 => 'woocommerce_cart_totals_subtotal_html',
38 => 'woocommerce_cart_totals_shipping_html',
39 => 'woocommerce_cart_totals_coupon_html',
40 => 'woocommerce_cart_totals_order_total_html',
41 => 'woocommerce_cart_totals_fee_html',
42 => 'woocommerce_cart_totals_shipping_method_label',
43 => 'woocommerce_get_template_part',
44 => 'woocommerce_get_template',
45 => 'woocommerce_locate_template',
46 => 'woocommerce_mail',
47 => 'woocommerce_disable_admin_bar',
48 => 'woocommerce_create_new_customer',
49 => 'woocommerce_set_customer_auth_cookie',
50 => 'woocommerce_update_new_customer_past_orders',
51 => 'woocommerce_paying_customer',
52 => 'woocommerce_customer_bought_product',
53 => 'woocommerce_customer_has_capability',
54 => 'woocommerce_sanitize_taxonomy_name',
55 => 'woocommerce_get_filename_from_url',
56 => 'woocommerce_get_dimension',
57 => 'woocommerce_get_weight',
58 => 'woocommerce_trim_zeros',
59 => 'woocommerce_round_tax_total',
60 => 'woocommerce_format_decimal',
61 => 'woocommerce_clean',
62 => 'woocommerce_array_overlay',
63 => 'woocommerce_price',
64 => 'woocommerce_let_to_num',
65 => 'woocommerce_date_format',
66 => 'woocommerce_time_format',
67 => 'woocommerce_timezone_string',
68 => 'woocommerce_rgb_from_hex',
69 => 'woocommerce_hex_darker',
70 => 'woocommerce_hex_lighter',
71 => 'woocommerce_light_or_dark',
72 => 'woocommerce_format_hex',
73 => 'woocommerce_get_order_id_by_order_key',
74 => 'woocommerce_downloadable_file_permission',
75 => 'woocommerce_downloadable_product_permissions',
76 => 'woocommerce_add_order_item',
77 => 'woocommerce_delete_order_item',
78 => 'woocommerce_update_order_item_meta',
79 => 'woocommerce_add_order_item_meta',
80 => 'woocommerce_delete_order_item_meta',
81 => 'woocommerce_get_order_item_meta',
82 => 'woocommerce_cancel_unpaid_orders',
83 => 'woocommerce_processing_order_count',
84 => 'woocommerce_get_page_id',
85 => 'woocommerce_get_endpoint_url',
86 => 'woocommerce_lostpassword_url',
87 => 'woocommerce_customer_edit_account_url',
88 => 'woocommerce_nav_menu_items',
89 => 'woocommerce_nav_menu_item_classes',
90 => 'woocommerce_list_pages',
91 => 'woocommerce_product_dropdown_categories',
92 => 'woocommerce_walk_category_dropdown_tree',
93 => 'woocommerce_taxonomy_metadata_wpdbfix',
94 => 'wc_taxonomy_metadata_wpdbfix',
95 => 'woocommerce_order_terms',
96 => 'woocommerce_set_term_order',
97 => 'woocommerce_terms_clauses',
98 => '_woocommerce_term_recount',
99 => 'woocommerce_recount_after_stock_change',
100 => 'woocommerce_change_term_counts',
101 => 'woocommerce_get_product_ids_on_sale',
102 => 'woocommerce_get_featured_product_ids',
103 => 'woocommerce_get_product_terms',
104 => 'woocommerce_product_post_type_link',
105 => 'woocommerce_placeholder_img_src',
106 => 'woocommerce_placeholder_img',
107 => 'woocommerce_get_formatted_variation',
108 => 'woocommerce_scheduled_sales',
109 => 'woocommerce_get_attachment_image_attributes',
110 => 'woocommerce_prepare_attachment_for_js',
111 => 'woocommerce_track_product_view',
112 => 'woocommerce_compile_less_styles',
113 => 'woocommerce_calc_shipping_backwards_compatibility',
114 => 'woocommerce_get_product_schema',
115 => '_wc_save_product_price',
116 => 'wc_get_customer_avatar_url',
117 => 'wc_get_core_supported_themes',
118 => 'wc_get_min_max_price_meta_query',
119 => 'wc_taxonomy_metadata_update_content_for_split_terms',
120 => 'update_woocommerce_term_meta',
121 => 'add_woocommerce_term_meta',
122 => 'delete_woocommerce_term_meta',
123 => 'get_woocommerce_term_meta',
124 => 'wc_register_default_log_handler',
125 => 'wc_get_log_file_path',
126 => 'wc_get_log_file_name',
127 => 'wc_get_brand_thumbnail_url',
128 => 'wc_get_brand_thumbnail_image',
129 => 'wc_get_brands',
130 => 'get_brand_thumbnail_url',
131 => 'get_brand_thumbnail_image',
132 => 'get_brands',
133 => 'wc_rest_prepare_date_response',
134 => 'wc_rest_allowed_image_mime_types',
135 => 'wc_rest_upload_image_from_url',
136 => 'wc_rest_set_uploaded_image_as_attachment',
137 => 'wc_rest_validate_reports_request_arg',
138 => 'wc_rest_urlencode_rfc3986',
139 => 'wc_rest_check_post_permissions',
140 => 'wc_rest_check_user_permissions',
141 => 'wc_rest_check_product_term_permissions',
142 => 'wc_rest_check_manager_permissions',
143 => 'wc_rest_check_product_reviews_permissions',
144 => 'wc_rest_is_from_product_editor',
145 => 'wc_rest_should_load_namespace',
146 => 'wc_lostpassword_url',
147 => 'wc_customer_edit_account_url',
148 => 'wc_edit_address_i18n',
149 => 'wc_get_account_menu_items',
150 => 'wc_is_current_account_menu_item',
151 => 'wc_get_account_menu_item_classes',
152 => 'wc_get_account_endpoint_url',
153 => 'wc_get_account_orders_columns',
154 => 'wc_get_account_downloads_columns',
155 => 'wc_get_account_payment_methods_columns',
156 => 'wc_get_account_payment_methods_types',
157 => 'wc_get_account_orders_actions',
158 => 'wc_get_account_formatted_address',
159 => 'wc_get_account_saved_payment_methods_list',
160 => 'wc_get_account_saved_payment_methods_list_item_cc',
161 => 'wc_get_account_saved_payment_methods_list_item_echeck',
162 => 'wc_disable_admin_bar',
163 => 'wc_create_new_customer',
164 => 'wc_create_new_customer_username',
165 => 'wc_set_customer_auth_cookie',
166 => 'wc_update_new_customer_past_orders',
167 => 'wc_paying_customer',
168 => 'wc_customer_bought_product',
169 => 'wc_current_user_has_role',
170 => 'wc_user_has_role',
171 => 'wc_customer_has_capability',
172 => 'wc_shop_manager_has_capability',
173 => 'wc_modify_editable_roles',
174 => 'wc_modify_map_meta_cap',
175 => 'wc_get_customer_download_permissions',
176 => 'wc_get_customer_available_downloads',
177 => 'wc_get_customer_total_spent',
178 => 'wc_get_customer_order_count',
179 => 'wc_reset_order_customer_id_on_deleted_user',
180 => 'wc_review_is_from_verified_owner',
181 => 'wc_disable_author_archives_for_customers',
182 => 'wc_update_profile_last_update_time',
183 => 'wc_meta_update_last_update_time',
184 => 'wc_set_user_last_update_time',
185 => 'wc_get_customer_saved_methods_list',
186 => 'wc_get_customer_last_order',
187 => 'wc_user_search_columns',
188 => 'wc_delete_user_data',
189 => 'wc_maybe_store_user_agent',
190 => 'wc_user_logged_in',
191 => 'wc_current_user_is_active',
192 => 'wc_update_user_last_active',
193 => 'wc_translate_user_roles',
194 => 'wc_add_order_item',
195 => 'wc_update_order_item',
196 => 'wc_delete_order_item',
197 => 'wc_update_order_item_meta',
198 => 'wc_add_order_item_meta',
199 => 'wc_delete_order_item_meta',
200 => 'wc_get_order_item_meta',
201 => 'wc_get_order_id_by_order_item_id',
202 => 'wc_importer_shopify_mappings',
203 => 'wc_importer_shopify_special_mappings',
204 => 'wc_importer_shopify_expand_data',
205 => 'wc_importer_wordpress_mappings',
206 => 'wc_importer_generic_mappings',
207 => 'wc_importer_current_locale',
208 => 'wc_importer_default_english_mappings',
209 => 'wc_importer_default_special_english_mappings',
210 => 'woocommerce_legacy_reports_init',
211 => 'woocommerce_wp_text_input',
212 => 'woocommerce_wp_hidden_input',
213 => 'woocommerce_wp_textarea_input',
214 => 'woocommerce_wp_checkbox',
215 => 'woocommerce_wp_select',
216 => 'woocommerce_wp_radio',
217 => 'woocommerce_wp_note',
218 => 'wc_get_screen_ids',
219 => 'wc_get_page_screen_id',
220 => 'wc_create_page',
221 => 'woocommerce_admin_fields',
222 => 'woocommerce_update_options',
223 => 'woocommerce_settings_get_option',
224 => 'wc_maybe_adjust_line_item_product_stock',
225 => 'wc_save_order_items',
226 => 'wc_render_action_buttons',
227 => 'wc_render_invalid_variation_notice',
228 => 'wc_get_current_admin_url',
229 => 'wc_get_default_product_type_options',
230 => 'wc_change_get_terms_defaults',
231 => 'wc_change_pre_get_terms',
232 => 'wc_terms_clauses',
233 => 'wc_get_object_terms',
234 => '_wc_get_cached_product_terms',
235 => 'wc_get_product_terms',
236 => '_wc_get_product_terms_name_num_usort_callback',
237 => '_wc_get_product_terms_parent_usort_callback',
238 => 'wc_product_dropdown_categories',
239 => 'wc_walk_category_dropdown_tree',
240 => 'wc_taxonomy_metadata_migrate_data',
241 => 'wc_reorder_terms',
242 => 'wc_set_term_order',
243 => '_wc_term_recount',
244 => 'wc_recount_after_stock_change',
245 => 'wc_change_term_counts',
246 => 'wc_get_term_product_ids',
247 => 'wc_clear_term_product_ids',
248 => 'wc_get_product_visibility_term_ids',
249 => 'wc_recount_all_terms',
250 => '_wc_recount_terms_by_product',
251 => 'wc_update_200_file_paths',
252 => 'wc_update_200_permalinks',
253 => 'wc_update_200_subcat_display',
254 => 'wc_update_200_taxrates',
255 => 'wc_update_200_line_items',
256 => 'wc_update_200_images',
257 => 'wc_update_200_db_version',
258 => 'wc_update_209_brazillian_state',
259 => 'wc_update_209_db_version',
260 => 'wc_update_210_remove_pages',
261 => 'wc_update_210_file_paths',
262 => 'wc_update_210_db_version',
263 => 'wc_update_220_shipping',
264 => 'wc_update_220_order_status',
265 => 'wc_update_220_variations',
266 => 'wc_update_220_attributes',
267 => 'wc_update_220_db_version',
268 => 'wc_update_230_options',
269 => 'wc_update_230_db_version',
270 => 'wc_update_240_options',
271 => 'wc_update_240_shipping_methods',
272 => 'wc_update_240_api_keys',
273 => 'wc_update_240_webhooks',
274 => 'wc_update_240_refunds',
275 => 'wc_update_240_db_version',
276 => 'wc_update_241_variations',
277 => 'wc_update_241_db_version',
278 => 'wc_update_250_currency',
279 => 'wc_update_250_db_version',
280 => 'wc_update_260_options',
281 => 'wc_update_260_termmeta',
282 => 'wc_update_260_zones',
283 => 'wc_update_260_zone_methods',
284 => 'wc_update_260_refunds',
285 => 'wc_update_260_db_version',
286 => 'wc_update_300_webhooks',
287 => 'wc_update_300_comment_type_index',
288 => 'wc_update_300_grouped_products',
289 => 'wc_update_300_settings',
290 => 'wc_update_300_product_visibility',
291 => 'wc_update_300_db_version',
292 => 'wc_update_310_downloadable_products',
293 => 'wc_update_310_old_comments',
294 => 'wc_update_310_db_version',
295 => 'wc_update_312_shop_manager_capabilities',
296 => 'wc_update_312_db_version',
297 => 'wc_update_320_mexican_states',
298 => 'wc_update_320_db_version',
299 => 'wc_update_330_image_options',
300 => 'wc_update_330_webhooks',
301 => 'wc_update_330_set_default_product_cat',
302 => 'wc_update_330_product_stock_status',
303 => 'wc_update_330_clear_transients',
304 => 'wc_update_330_set_paypal_sandbox_credentials',
305 => 'wc_update_330_db_version',
306 => 'wc_update_340_states',
307 => 'wc_update_340_state',
308 => 'wc_update_340_last_active',
309 => 'wc_update_340_db_version',
310 => 'wc_update_343_cleanup_foreign_keys',
311 => 'wc_update_343_db_version',
312 => 'wc_update_344_recreate_roles',
313 => 'wc_update_344_db_version',
314 => 'wc_update_350_reviews_comment_type',
315 => 'wc_update_350_db_version',
316 => 'wc_update_352_drop_download_log_fk',
317 => 'wc_update_354_modify_shop_manager_caps',
318 => 'wc_update_354_db_version',
319 => 'wc_update_360_product_lookup_tables',
320 => 'wc_update_360_term_meta',
321 => 'wc_update_360_downloadable_product_permissions_index',
322 => 'wc_update_360_db_version',
323 => 'wc_update_370_tax_rate_classes',
324 => 'wc_update_370_mro_std_currency',
325 => 'wc_update_370_db_version',
326 => 'wc_update_390_move_maxmind_database',
327 => 'wc_update_390_change_geolocation_database_update_cron',
328 => 'wc_update_390_db_version',
329 => 'wc_update_400_increase_size_of_column',
330 => 'wc_update_400_reset_action_scheduler_migration_status',
331 => 'wc_update_400_db_version',
332 => 'wc_update_440_insert_attribute_terms_for_variable_products',
333 => 'wc_update_440_db_version',
334 => 'wc_update_450_db_version',
335 => 'wc_update_450_sanitize_coupons_code',
336 => 'wc_update_500_fix_product_review_count',
337 => 'wc_update_500_db_version',
338 => 'wc_update_560_create_refund_returns_page',
339 => 'filter_created_pages',
340 => 'wc_update_560_db_version',
341 => 'wc_update_600_migrate_rate_limit_options',
342 => 'wc_update_600_db_version',
343 => 'wc_update_630_create_product_attributes_lookup_table',
344 => 'wc_update_630_db_version',
345 => 'wc_update_640_add_primary_key_to_product_attributes_lookup_table',
346 => 'wc_update_640_db_version',
347 => 'wc_update_650_approved_download_directories',
348 => 'wc_update_651_approved_download_directories',
349 => 'wc_update_670_purge_comments_count_cache',
350 => 'wc_update_700_remove_download_log_fk',
351 => 'wc_update_700_remove_recommended_marketing_plugins_transient',
352 => 'wc_update_721_adjust_new_zealand_states',
353 => 'wc_update_721_adjust_ukraine_states',
354 => 'wc_update_722_adjust_new_zealand_states',
355 => 'wc_update_722_adjust_ukraine_states',
356 => 'wc_update_750_add_columns_to_order_stats_table',
357 => 'wc_update_750_disable_new_product_management_experience',
358 => 'wc_update_770_remove_multichannel_marketing_feature_options',
359 => 'wc_update_810_migrate_transactional_metadata_for_hpos',
360 => 'wc_update_860_remove_recommended_marketing_plugins_transient',
361 => 'wc_update_870_prevent_listing_of_transient_files_directory',
362 => 'wc_update_890_update_connect_to_woocommerce_note',
363 => 'wc_update_890_update_paypal_standard_load_eligibility',
364 => 'wc_update_891_create_plugin_autoinstall_history_option',
365 => 'wc_update_910_add_launch_your_store_tour_option',
366 => 'wc_update_920_add_wc_hooked_blocks_version_option',
367 => 'wc_update_910_remove_obsolete_user_meta',
368 => 'wc_update_930_add_woocommerce_coming_soon_option',
369 => 'wc_update_930_migrate_user_meta_for_launch_your_store_tour',
370 => 'wc_update_940_add_phone_to_order_address_fts_index',
371 => 'wc_update_940_remove_help_panel_highlight_shown',
372 => 'wc_update_950_tracking_option_autoload',
373 => 'wc_update_961_migrate_default_email_base_color',
374 => 'wc_template_redirect',
375 => 'wc_send_frame_options_header',
376 => 'wc_prevent_endpoint_indexing',
377 => 'wc_prevent_adjacent_posts_rel_link_wp_head',
378 => 'wc_gallery_noscript',
379 => 'wc_setup_product_data',
380 => 'wc_setup_loop',
381 => 'wc_reset_loop',
382 => 'wc_get_loop_prop',
383 => 'wc_set_loop_prop',
384 => 'wc_set_loop_product_visibility',
385 => 'wc_get_loop_product_visibility',
386 => 'woocommerce_product_loop',
387 => 'wc_generator_tag',
388 => 'wc_body_class',
389 => 'wc_no_js',
390 => 'wc_product_cat_class',
391 => 'wc_get_default_products_per_row',
392 => 'wc_get_default_product_rows_per_page',
393 => 'wc_reset_product_grid_settings',
394 => 'wc_get_loop_class',
395 => 'wc_get_product_cat_class',
396 => 'wc_product_post_class',
397 => 'wc_get_product_taxonomy_class',
398 => 'wc_get_product_class',
399 => 'wc_product_class',
400 => 'wc_query_string_form_fields',
401 => 'wc_terms_and_conditions_page_id',
402 => 'wc_privacy_policy_page_id',
403 => 'wc_terms_and_conditions_checkbox_enabled',
404 => 'wc_get_terms_and_conditions_checkbox_text',
405 => 'wc_get_privacy_policy_text',
406 => 'wc_terms_and_conditions_checkbox_text',
407 => 'wc_terms_and_conditions_page_content',
408 => 'wc_checkout_privacy_policy_text',
409 => 'wc_registration_privacy_policy_text',
410 => 'wc_privacy_policy_text',
411 => 'wc_replace_policy_page_link_placeholders',
412 => 'woocommerce_content',
413 => 'woocommerce_output_content_wrapper',
414 => 'woocommerce_output_content_wrapper_end',
415 => 'woocommerce_get_sidebar',
416 => 'woocommerce_demo_store',
417 => 'woocommerce_page_title',
418 => 'woocommerce_product_loop_start',
419 => 'woocommerce_product_loop_end',
420 => 'woocommerce_template_loop_product_title',
421 => 'woocommerce_template_loop_category_title',
422 => 'woocommerce_template_loop_product_link_open',
423 => 'woocommerce_template_loop_product_link_close',
424 => 'woocommerce_template_loop_category_link_open',
425 => 'woocommerce_template_loop_category_link_close',
426 => 'woocommerce_product_taxonomy_archive_header',
427 => 'woocommerce_taxonomy_archive_description',
428 => 'woocommerce_product_archive_description',
429 => 'woocommerce_template_loop_add_to_cart',
430 => 'woocommerce_template_loop_product_thumbnail',
431 => 'woocommerce_template_loop_price',
432 => 'woocommerce_template_loop_rating',
433 => 'woocommerce_show_product_loop_sale_flash',
434 => 'woocommerce_get_product_thumbnail',
435 => 'woocommerce_result_count',
436 => 'woocommerce_catalog_ordering',
437 => 'woocommerce_pagination',
438 => 'woocommerce_show_product_images',
439 => 'woocommerce_show_product_thumbnails',
440 => 'wc_get_gallery_image_html',
441 => 'woocommerce_get_alt_from_product_title_and_position',
442 => 'woocommerce_output_product_data_tabs',
443 => 'woocommerce_template_single_title',
444 => 'woocommerce_template_single_rating',
445 => 'woocommerce_template_single_price',
446 => 'woocommerce_template_single_excerpt',
447 => 'woocommerce_template_single_meta',
448 => 'woocommerce_template_single_sharing',
449 => 'woocommerce_show_product_sale_flash',
450 => 'woocommerce_template_single_add_to_cart',
451 => 'woocommerce_simple_add_to_cart',
452 => 'woocommerce_grouped_add_to_cart',
453 => 'woocommerce_variable_add_to_cart',
454 => 'woocommerce_external_add_to_cart',
455 => 'woocommerce_quantity_input',
456 => 'woocommerce_product_description_tab',
457 => 'woocommerce_product_additional_information_tab',
458 => 'woocommerce_default_product_tabs',
459 => 'woocommerce_sort_product_tabs',
460 => '_sort_priority_callback',
461 => 'woocommerce_comments',
462 => 'woocommerce_review_display_gravatar',
463 => 'woocommerce_review_display_rating',
464 => 'woocommerce_review_display_meta',
465 => 'woocommerce_review_display_comment_text',
466 => 'woocommerce_output_related_products',
467 => 'woocommerce_related_products',
468 => 'woocommerce_upsell_display',
469 => 'woocommerce_shipping_calculator',
470 => 'woocommerce_cart_totals',
471 => 'woocommerce_cross_sell_display',
472 => 'woocommerce_button_proceed_to_checkout',
473 => 'woocommerce_widget_shopping_cart_button_view_cart',
474 => 'woocommerce_widget_shopping_cart_proceed_to_checkout',
475 => 'woocommerce_widget_shopping_cart_subtotal',
476 => 'woocommerce_mini_cart',
477 => 'woocommerce_login_form',
478 => 'woocommerce_checkout_login_form',
479 => 'woocommerce_breadcrumb',
480 => 'woocommerce_order_review',
481 => 'woocommerce_checkout_payment',
482 => 'woocommerce_checkout_coupon_form',
483 => 'woocommerce_products_will_display',
484 => 'woocommerce_get_loop_display_mode',
485 => 'woocommerce_maybe_show_product_subcategories',
486 => 'woocommerce_product_subcategories',
487 => 'woocommerce_output_product_categories',
488 => 'woocommerce_get_product_subcategories',
489 => 'woocommerce_subcategory_thumbnail',
490 => 'woocommerce_order_details_table',
491 => 'woocommerce_order_downloads_table',
492 => 'woocommerce_order_again_button',
493 => 'woocommerce_form_field',
494 => 'get_product_search_form',
495 => 'woocommerce_output_auth_header',
496 => 'woocommerce_output_auth_footer',
497 => 'woocommerce_single_variation',
498 => 'woocommerce_single_variation_add_to_cart_button',
499 => 'wc_dropdown_variation_attribute_options',
500 => 'woocommerce_account_content',
501 => 'woocommerce_account_navigation',
502 => 'woocommerce_account_orders',
503 => 'woocommerce_account_view_order',
504 => 'woocommerce_account_downloads',
505 => 'woocommerce_account_edit_address',
506 => 'woocommerce_account_payment_methods',
507 => 'woocommerce_account_add_payment_method',
508 => 'woocommerce_account_edit_account',
509 => 'wc_no_products_found',
510 => 'wc_get_email_order_items',
511 => 'wc_display_item_meta',
512 => 'wc_display_item_downloads',
513 => 'woocommerce_photoswipe',
514 => 'wc_display_product_attributes',
515 => 'wc_get_stock_html',
516 => 'wc_get_rating_html',
517 => 'wc_get_star_rating_html',
518 => 'wc_get_price_html_from_text',
519 => 'wc_get_logout_redirect_url',
520 => 'wc_logout_url',
521 => 'wc_empty_cart_message',
522 => 'wc_page_noindex',
523 => 'wc_page_no_robots',
524 => 'wc_get_theme_slug_for_templates',
525 => 'wc_get_formatted_cart_item_data',
526 => 'wc_get_cart_remove_url',
527 => 'wc_get_cart_undo_url',
528 => 'woocommerce_output_all_notices',
529 => 'wc_products_rss_feed',
530 => 'woocommerce_reset_loop',
531 => 'woocommerce_product_reviews_tab',
532 => 'wc_get_pay_buttons',
533 => 'wc_update_product_archive_title',
534 => 'wc_set_hooked_blocks_version',
535 => 'wc_after_switch_theme',
536 => 'wc_update_store_notice_visible_on_theme_switch',
537 => 'wc_set_hooked_blocks_version_on_theme_switch',
538 => 'wc_add_aria_label_to_pagination_numbers',
539 => 'wc_webhook_execute_queue',
540 => 'wc_webhook_process_delivery',
541 => 'wc_deliver_webhook_async',
542 => 'wc_is_webhook_valid_topic',
543 => 'wc_is_webhook_valid_status',
544 => 'wc_get_webhook_statuses',
545 => 'wc_load_webhooks',
546 => 'wc_get_webhook',
547 => 'wc_get_webhook_rest_api_versions',
548 => 'wc_protected_product_add_to_cart',
549 => 'wc_empty_cart',
550 => 'wc_load_persistent_cart',
551 => 'wc_get_raw_referer',
552 => 'wc_add_to_cart_message',
553 => 'wc_format_list_of_items',
554 => 'wc_clear_cart_after_payment',
555 => 'wc_cart_totals_subtotal_html',
556 => 'wc_cart_totals_shipping_html',
557 => 'wc_cart_totals_taxes_total_html',
558 => 'wc_cart_totals_coupon_label',
559 => 'wc_cart_totals_coupon_html',
560 => 'wc_cart_totals_order_total_html',
561 => 'wc_cart_totals_fee_html',
562 => 'wc_cart_totals_shipping_method_label',
563 => 'wc_cart_round_discount',
564 => 'wc_get_chosen_shipping_method_ids',
565 => 'wc_get_chosen_shipping_method_for_package',
566 => 'wc_get_default_shipping_method_for_package',
567 => 'wc_shipping_methods_have_changed',
568 => 'wc_get_cart_item_data_hash',
569 => 'wc_admin_connect_page',
570 => 'wc_admin_register_page',
571 => 'wc_admin_is_connected_page',
572 => 'wc_admin_is_registered_page',
573 => 'wc_admin_get_breadcrumbs',
574 => 'wc_admin_update_0201_order_status_index',
575 => 'wc_admin_update_0230_rename_gross_total',
576 => 'wc_admin_update_0251_remove_unsnooze_action',
577 => 'wc_admin_update_110_remove_facebook_note',
578 => 'wc_admin_update_130_remove_dismiss_action_from_tracking_opt_in_note',
579 => 'wc_admin_update_130_db_version',
580 => 'wc_admin_update_140_db_version',
581 => 'wc_admin_update_160_remove_facebook_note',
582 => 'wc_admin_update_170_homescreen_layout',
583 => 'wc_admin_update_270_delete_report_downloads',
584 => 'wc_admin_update_271_update_task_list_options',
585 => 'wc_admin_update_280_order_status',
586 => 'wc_admin_update_290_update_apperance_task_option',
587 => 'wc_admin_update_290_delete_default_homepage_layout_option',
588 => 'wc_admin_update_300_update_is_read_from_last_read',
589 => 'wc_admin_update_340_remove_is_primary_from_note_action',
590 => 'wc_update_670_delete_deprecated_remote_inbox_notifications_option',
591 => 'wc_admin_get_feature_config',
592 => 'wc_admin_get_core_pages_to_connect',
593 => 'wc_admin_filter_core_page_breadcrumbs',
594 => 'wc_admin_connect_core_pages',
595 => 'wc_admin_number_format',
596 => 'wc_admin_url',
597 => 'wc_admin_record_tracks_event',
598 => 'wc_get_products',
599 => 'wc_get_product',
600 => 'wc_get_product_object',
601 => 'wc_product_sku_enabled',
602 => 'wc_product_weight_enabled',
603 => 'wc_product_dimensions_enabled',
604 => 'wc_delete_product_transients',
605 => 'wc_get_product_ids_on_sale',
606 => 'wc_get_featured_product_ids',
607 => 'wc_product_post_type_link',
608 => 'wc_product_canonical_redirect',
609 => 'wc_placeholder_img_src',
610 => 'wc_placeholder_img',
611 => 'wc_get_formatted_variation',
612 => 'wc_scheduled_sales',
613 => 'wc_get_attachment_image_attributes',
614 => 'wc_prepare_attachment_for_js',
615 => 'wc_track_product_view',
616 => 'wc_get_product_types',
617 => 'wc_product_has_unique_sku',
618 => 'wc_product_has_global_unique_id',
619 => 'wc_product_force_unique_sku',
620 => 'wc_product_generate_unique_sku',
621 => 'wc_get_product_id_by_sku',
622 => 'wc_get_product_id_by_global_unique_id',
623 => 'wc_get_product_variation_attributes',
624 => 'wc_get_product_cat_ids',
625 => 'wc_get_product_attachment_props',
626 => 'wc_get_product_visibility_options',
627 => 'wc_get_product_tax_class_options',
628 => 'wc_get_product_stock_status_options',
629 => 'wc_get_product_backorder_options',
630 => 'wc_get_related_products',
631 => 'wc_get_product_term_ids',
632 => 'wc_get_price_including_tax',
633 => 'wc_get_price_excluding_tax',
634 => 'wc_get_price_to_display',
635 => 'wc_get_product_category_list',
636 => 'wc_get_product_tag_list',
637 => 'wc_products_array_filter_visible',
638 => 'wc_products_array_filter_visible_grouped',
639 => 'wc_products_array_filter_editable',
640 => 'wc_products_array_filter_readable',
641 => 'wc_products_array_orderby',
642 => 'wc_products_array_orderby_title',
643 => 'wc_products_array_orderby_id',
644 => 'wc_products_array_orderby_date',
645 => 'wc_products_array_orderby_modified',
646 => 'wc_products_array_orderby_menu_order',
647 => 'wc_products_array_orderby_price',
648 => 'wc_deferred_product_sync',
649 => 'wc_update_product_lookup_tables_is_running',
650 => 'wc_update_product_lookup_tables',
651 => 'wc_update_product_lookup_tables_column',
652 => 'wc_update_product_lookup_tables_rating_count',
653 => 'wc_update_product_lookup_tables_rating_count_batch',
654 => 'wc_product_attach_featured_image',
655 => 'wc_page_endpoint_title',
656 => 'wc_page_endpoint_document_title_parts',
657 => 'wc_get_page_id',
658 => 'wc_get_page_permalink',
659 => 'wc_get_endpoint_url',
660 => 'wc_nav_menu_items',
661 => 'wc_nav_menu_inner_blocks',
662 => 'wc_nav_menu_item_classes',
663 => 'wc_list_pages',
664 => 'wc_get_text_attributes',
665 => 'wc_get_text_attributes_filter_callback',
666 => 'wc_implode_text_attributes',
667 => 'wc_get_attribute_taxonomies',
668 => 'wc_get_attribute_taxonomy_ids',
669 => 'wc_get_attribute_taxonomy_labels',
670 => 'wc_attribute_taxonomy_name',
671 => 'wc_variation_attribute_name',
672 => 'wc_attribute_taxonomy_name_by_id',
673 => 'wc_attribute_taxonomy_id_by_name',
674 => 'wc_attribute_label',
675 => 'wc_attribute_orderby',
676 => 'wc_get_attribute_taxonomy_names',
677 => 'wc_get_attribute_types',
678 => 'wc_has_custom_attribute_types',
679 => 'wc_get_attribute_type_label',
680 => 'wc_check_if_attribute_name_is_reserved',
681 => 'wc_attributes_array_filter_visible',
682 => 'wc_attributes_array_filter_variation',
683 => 'wc_is_attribute_in_product_name',
684 => 'wc_array_filter_default_attributes',
685 => 'wc_get_attribute',
686 => 'wc_create_attribute',
687 => 'wc_update_attribute',
688 => 'wc_delete_attribute',
689 => 'wc_attribute_taxonomy_slug',
690 => 'is_woocommerce',
691 => 'is_shop',
692 => 'is_product_taxonomy',
693 => 'is_product_category',
694 => 'is_product_tag',
695 => 'is_product',
696 => 'is_cart',
697 => 'is_checkout',
698 => 'is_checkout_pay_page',
699 => 'is_wc_endpoint_url',
700 => 'is_account_page',
701 => 'is_view_order_page',
702 => 'is_edit_account_page',
703 => 'is_order_received_page',
704 => 'is_add_payment_method_page',
705 => 'is_lost_password_page',
706 => 'is_ajax',
707 => 'is_store_notice_showing',
708 => 'is_filtered',
709 => 'taxonomy_is_product_attribute',
710 => 'meta_is_product_attribute',
711 => 'wc_tax_enabled',
712 => 'wc_shipping_enabled',
713 => 'wc_prices_include_tax',
714 => 'wc_is_valid_url',
715 => 'wc_site_is_https',
716 => 'wc_checkout_is_https',
717 => 'wc_post_content_has_shortcode',
718 => 'wc_reviews_enabled',
719 => 'wc_review_ratings_enabled',
720 => 'wc_review_ratings_required',
721 => 'wc_is_file_valid_csv',
722 => 'wc_current_theme_is_fse_theme',
723 => 'wc_current_theme_supports_woocommerce_or_fse',
724 => 'wc_wp_theme_get_element_class_name',
725 => 'wc_block_theme_has_styles_for_element',
726 => 'wc_register_widgets',
727 => 'wc_get_coupon_types',
728 => 'wc_get_coupon_type',
729 => 'wc_get_product_coupon_types',
730 => 'wc_get_cart_coupon_types',
731 => 'wc_coupons_enabled',
732 => 'wc_get_coupon_code_by_id',
733 => 'wc_get_coupon_id_by_code',
734 => 'wc_string_to_bool',
735 => 'wc_bool_to_string',
736 => 'wc_string_to_array',
737 => 'wc_sanitize_taxonomy_name',
738 => 'wc_sanitize_permalink',
739 => 'wc_get_filename_from_url',
740 => 'wc_get_dimension',
741 => 'wc_get_weight',
742 => 'wc_trim_zeros',
743 => 'wc_round_tax_total',
744 => 'wc_legacy_round_half_down',
745 => 'wc_format_refund_total',
746 => 'wc_format_decimal',
747 => 'wc_float_to_string',
748 => 'wc_format_localized_price',
749 => 'wc_format_localized_decimal',
750 => 'wc_format_coupon_code',
751 => 'wc_sanitize_coupon_code',
752 => 'wc_clean',
753 => 'wc_check_invalid_utf8',
754 => 'wc_sanitize_textarea',
755 => 'wc_sanitize_tooltip',
756 => 'wc_array_overlay',
757 => 'wc_stock_amount',
758 => 'get_woocommerce_price_format',
759 => 'wc_get_price_thousand_separator',
760 => 'wc_get_price_decimal_separator',
761 => 'wc_get_price_decimals',
762 => 'wc_price',
763 => 'wc_let_to_num',
764 => 'wc_date_format',
765 => 'wc_time_format',
766 => 'wc_string_to_timestamp',
767 => 'wc_string_to_datetime',
768 => 'wc_timezone_string',
769 => 'wc_timezone_offset',
770 => 'wc_flatten_meta_callback',
771 => 'wc_rgb_from_hex',
772 => 'wc_hex_darker',
773 => 'wc_hex_lighter',
774 => 'wc_hex_is_light',
775 => 'wc_light_or_dark',
776 => 'wc_format_hex',
777 => 'wc_format_postcode',
778 => 'wc_normalize_postcode',
779 => 'wc_format_phone_number',
780 => 'wc_sanitize_phone_number',
781 => 'wc_strtoupper',
782 => 'wc_strtolower',
783 => 'wc_trim_string',
784 => 'wc_format_content',
785 => 'wc_format_product_short_description',
786 => 'wc_format_option_price_separators',
787 => 'wc_format_option_price_num_decimals',
788 => 'wc_format_option_hold_stock_minutes',
789 => 'wc_sanitize_term_text_based',
790 => 'wc_make_numeric_postcode',
791 => 'wc_format_stock_for_display',
792 => 'wc_format_stock_quantity_for_display',
793 => 'wc_format_sale_price',
794 => 'wc_format_price_range',
795 => 'wc_format_weight',
796 => 'wc_format_dimensions',
797 => 'wc_format_datetime',
798 => 'wc_do_oembeds',
799 => 'wc_get_string_before_colon',
800 => 'wc_array_merge_recursive_numeric',
801 => 'wc_implode_html_attributes',
802 => 'wc_esc_json',
803 => 'wc_parse_relative_date_option',
804 => 'wc_sanitize_endpoint_slug',
805 => 'wc_get_orders',
806 => 'wc_get_order',
807 => 'wc_get_order_statuses',
808 => 'wc_is_order_status',
809 => 'wc_get_is_paid_statuses',
810 => 'wc_get_is_pending_statuses',
811 => 'wc_get_order_status_name',
812 => 'wc_generate_order_key',
813 => 'wc_get_order_id_by_order_key',
814 => 'wc_get_order_types',
815 => 'wc_get_order_type',
816 => 'wc_register_order_type',
817 => 'wc_processing_order_count',
818 => 'wc_orders_count',
819 => 'wc_downloadable_file_permission',
820 => 'wc_downloadable_product_permissions',
821 => 'wc_delete_shop_order_transients',
822 => 'wc_ship_to_billing_address_only',
823 => 'wc_create_refund',
824 => 'wc_refund_payment',
825 => 'wc_restock_refunded_items',
826 => 'wc_get_tax_class_by_tax_id',
827 => 'wc_get_payment_gateway_by_order',
828 => 'wc_order_fully_refunded',
829 => 'wc_order_search',
830 => 'wc_update_total_sales_counts',
831 => 'wc_update_coupon_usage_counts',
832 => 'wc_cancel_unpaid_orders',
833 => 'wc_sanitize_order_id',
834 => 'wc_get_order_note',
835 => 'wc_get_order_notes',
836 => 'wc_create_order_note',
837 => 'wc_delete_order_note',
838 => 'wc_notice_count',
839 => 'wc_has_notice',
840 => 'wc_add_notice',
841 => 'wc_set_notices',
842 => 'wc_clear_notices',
843 => 'wc_print_notices',
844 => 'wc_print_notice',
845 => 'wc_get_notices',
846 => 'wc_add_wp_error_notices',
847 => 'wc_kses_notice',
848 => 'wc_get_notice_data_attr',
849 => 'wc_maybe_define_constant',
850 => 'wc_create_order',
851 => 'wc_update_order',
852 => 'wc_tokenize_path',
853 => 'wc_untokenize_path',
854 => 'wc_get_path_define_tokens',
855 => 'wc_get_template_part',
856 => 'wc_get_template',
857 => 'wc_get_template_html',
858 => 'wc_locate_template',
859 => 'wc_set_template_cache',
860 => 'wc_clear_template_cache',
861 => 'wc_clear_system_status_theme_info_cache',
862 => 'get_woocommerce_currency',
863 => 'get_woocommerce_currencies',
864 => 'get_woocommerce_currency_symbols',
865 => 'get_woocommerce_currency_symbol',
866 => 'wc_mail',
867 => 'wc_get_theme_support',
868 => 'wc_get_image_size',
869 => 'wc_enqueue_js',
870 => 'wc_print_js',
871 => 'wc_setcookie',
872 => 'get_woocommerce_api_url',
873 => 'wc_get_page_children',
874 => 'flush_rewrite_rules_on_shop_page_save',
875 => 'wc_fix_rewrite_rules',
876 => 'wc_fix_product_attachment_link',
877 => 'wc_ms_protect_download_rewite_rules',
878 => 'wc_format_country_state_string',
879 => 'wc_get_base_location',
880 => 'wc_get_customer_geolocation',
881 => 'wc_get_customer_default_location',
882 => 'wc_get_user_agent',
883 => 'wc_rand_hash',
884 => 'wc_api_hash',
885 => 'wc_array_cartesian',
886 => 'wc_transaction_query',
887 => 'wc_get_cart_url',
888 => 'wc_get_checkout_url',
889 => 'woocommerce_register_shipping_method',
890 => 'wc_get_shipping_zone',
891 => 'wc_get_credit_card_type_label',
892 => 'wc_back_link',
893 => 'wc_help_tip',
894 => 'wc_get_wildcard_postcodes',
895 => 'wc_postcode_location_matcher',
896 => 'wc_get_shipping_method_count',
897 => 'wc_set_time_limit',
898 => 'wc_nocache_headers',
899 => 'wc_product_attribute_uasort_comparison',
900 => 'wc_shipping_zone_method_order_uasort_comparison',
901 => 'wc_checkout_fields_uasort_comparison',
902 => 'wc_uasort_comparison',
903 => 'wc_ascii_uasort_comparison',
904 => 'wc_asort_by_locale',
905 => 'wc_get_tax_rounding_mode',
906 => 'wc_get_rounding_precision',
907 => 'wc_add_number_precision',
908 => 'wc_remove_number_precision',
909 => 'wc_add_number_precision_deep',
910 => 'wc_remove_number_precision_deep',
911 => 'wc_get_logger',
912 => 'wc_cleanup_logs',
913 => 'wc_print_r',
914 => 'wc_list_pluck',
915 => 'wc_get_permalink_structure',
916 => 'wc_switch_to_site_locale',
917 => 'wc_restore_locale',
918 => 'wc_make_phone_clickable',
919 => 'wc_get_post_data_by_key',
920 => 'wc_get_var',
921 => 'wc_enable_wc_plugin_headers',
922 => 'wc_prevent_dangerous_auto_updates',
923 => 'wc_delete_expired_transients',
924 => 'wc_get_relative_url',
925 => 'wc_is_external_resource',
926 => 'wc_is_active_theme',
927 => 'wc_is_wp_default_theme_active',
928 => 'wc_cleanup_session_data',
929 => 'wc_decimal_to_fraction',
930 => 'wc_round_discount',
931 => 'wc_selected',
932 => 'wc_get_server_database_version',
933 => 'wc_load_cart',
934 => 'wc_is_running_from_async_action_scheduler',
935 => 'wc_cache_get_multiple',
936 => 'as_enqueue_async_action',
937 => 'as_schedule_single_action',
938 => 'as_schedule_recurring_action',
939 => 'as_schedule_cron_action',
940 => 'as_unschedule_action',
941 => 'as_unschedule_all_actions',
942 => 'as_next_scheduled_action',
943 => 'as_has_scheduled_action',
944 => 'as_get_scheduled_actions',
945 => 'as_get_datetime_object',
946 => 'action_scheduler_register_3_dot_9_dot_0',
947 => 'action_scheduler_initialize_3_dot_9_dot_0',
948 => 'wc_schedule_single_action',
949 => 'wc_schedule_recurring_action',
950 => 'wc_schedule_cron_action',
951 => 'wc_unschedule_action',
952 => 'wc_next_scheduled_action',
953 => 'wc_get_scheduled_actions',
954 => 'wc_initial_state',
955 => 'woocommerce_interactivity_move_interactive_scripts_to_the_footer',
956 => 'woocommerce_interactivity_register_runtime',
957 => 'woocommerce_interactivity_add_client_side_navigation_meta_tag',
958 => 'woocommerce_register_additional_checkout_field',
959 => '__experimental_woocommerce_blocks_register_checkout_field',
960 => '__internal_woocommerce_blocks_deregister_checkout_field',
961 => 'woocommerce_store_api_register_endpoint_data',
962 => 'woocommerce_store_api_register_update_callback',
963 => 'woocommerce_store_api_register_payment_requirements',
964 => 'woocommerce_store_api_get_formatter',
),
'exclude-classes' =>
array (
0 => 'WC_Brands_Block_Templates',
1 => 'BlockTemplateUtilsDuplicated',
2 => 'WC_Blocks_Utils',
3 => 'WC_REST_Authentication',
4 => 'WC_Countries',
5 => 'WC_Template_Loader',
6 => 'WC_Order',
7 => 'WC_Order_Query',
8 => 'WC_Install',
9 => 'WC_WCCOM_Site_Installer',
10 => 'WC_WCCOM_Site',