Automattic\WooCommerce\Internal\Admin

ShippingLabelBanner::__construct()publicWC 1.0

Constructor

Method of the class: ShippingLabelBanner{}

No Hooks.

Return

null. Nothing (null).

Usage

$ShippingLabelBanner = new ShippingLabelBanner();
$ShippingLabelBanner->__construct();

ShippingLabelBanner::__construct() code WC 8.7.0

public function __construct() {
	if ( ! is_admin() ) {
		return;
	}
	add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ), 6, 2 );
}