WC_Helper::admin_enqueue_scripts()public staticWC 1.0

Enqueue admin scripts and styles.

Method of the class: WC_Helper{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Helper::admin_enqueue_scripts();

WC_Helper::admin_enqueue_scripts() code WC 8.7.0

public static function admin_enqueue_scripts() {
	$screen       = get_current_screen();
	$screen_id    = $screen ? $screen->id : '';
	$wc_screen_id = 'woocommerce';

	if ( $wc_screen_id . '_page_wc-addons' === $screen_id && isset( $_GET['section'] ) && 'helper' === $_GET['section'] ) {
		wp_enqueue_style( 'woocommerce-helper', WC()->plugin_url() . '/assets/css/helper.css', array(), Constants::get_constant( 'WC_VERSION' ) );
		wp_style_add_data( 'woocommerce-helper', 'rtl', 'replace' );
	}
}