WC_Settings_Products::__construct()publicWC 1.0

Constructor.

Method of the class: WC_Settings_Products{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WC_Settings_Products::__construct() code WC 8.7.0

public function __construct() {
	$this->id    = 'products';
	$this->label = __( 'Products', 'woocommerce' );

	parent::__construct();
}