Automattic\WooCommerce\Internal\Admin
WCAdminSharedSettings::on_woocommerce_blocks_loaded()
Adds settings to the Blocks AssetDataRegistry when woocommerce_blocks is loaded.
Method of the class: WCAdminSharedSettings{}
Hooks from the method
Return
null
. Nothing (null).
Usage
$WCAdminSharedSettings = new WCAdminSharedSettings(); $WCAdminSharedSettings->on_woocommerce_blocks_loaded();
WCAdminSharedSettings::on_woocommerce_blocks_loaded() WCAdminSharedSettings::on woocommerce blocks loaded code WC 9.5.1
public function on_woocommerce_blocks_loaded() { // Ensure we only add admin settings on the admin. if ( ! is_admin() ) { return; } if ( class_exists( '\Automattic\WooCommerce\Blocks\Assets\AssetDataRegistry' ) ) { \Automattic\WooCommerce\Blocks\Package::container()->get( \Automattic\WooCommerce\Blocks\Assets\AssetDataRegistry::class )->add( $this->settings_prefix, function () { return apply_filters( 'woocommerce_admin_shared_settings', array() ); } ); } }