PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
Blocks
/
Domain
/
Services
<?php use Automattic\WooCommerce\Blocks\Package; if ( ! function_exists( 'woocommerce_blocks_register_checkout_field' ) && Package::feature()->is_experimental_build() ) { /** * Register a checkout field. * * @param array $options Field arguments. * @throws Exception If field registration fails. */ function woocommerce_blocks_register_checkout_field( $options ) { // Check if `woocommerce_blocks_loaded` ran. If not then the CheckoutFields class will not be available yet. // In that case, re-hook `woocommerce_blocks_loaded` and try running this again. $woocommerce_blocks_loaded_ran = did_action( 'woocommerce_blocks_loaded' ); if ( ! $woocommerce_blocks_loaded_ran ) { add_action( 'woocommerce_blocks_loaded', function() use ( $options ) { woocommerce_blocks_register_checkout_field( $options ); } ); return; } $checkout_fields = Package::container()->get( \Automattic\WooCommerce\Blocks\Domain\Services\CheckoutFields::class ); $result = $checkout_fields->register_checkout_field( $options ); if ( is_wp_error( $result ) ) { throw new Exception( $result->get_error_message() ); } } }
[-] Notices.php
[edit]
[-] CheckoutFields.php
[edit]
[-] CheckoutFieldsAdmin.php
[edit]
[+]
..
[-] Hydration.php
[edit]
[-] DraftOrders.php
[edit]
[-] FeatureGating.php
[edit]
[+]
OnboardingTasks
[-] functions.php
[edit]
[-] GoogleAnalytics.php
[edit]
[+]
Email
[-] CreateAccount.php
[edit]