%PDF- %PDF-
| Direktori : /www/klubovnaostrava_o/test/wp-content/plugins/woocommerce/src/Blocks/Domain/Services/ |
| Current File : /www/klubovnaostrava_o/test/wp-content/plugins/woocommerce/src/Blocks/Domain/Services/functions.php |
<?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() );
}
}
}