WC_Settings_General::__construct()publicWC 1.0

Constructor.

Method of the class: WC_Settings_General{}

No Hooks.

Return

null. Nothing.

Usage

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

WC_Settings_General::__construct() code WC 7.5.1

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

	parent::__construct();
}