Automattic\WooCommerce\Internal\Admin
ShippingLabelBanner::__construct
Constructor
Method of the class: ShippingLabelBanner{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ShippingLabelBanner = new ShippingLabelBanner(); $ShippingLabelBanner->__construct();
ShippingLabelBanner::__construct() ShippingLabelBanner:: construct code WC 10.3.3
public function __construct() {
if ( ! is_admin() ) {
return;
}
add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ), 6, 2 );
}