Automattic\WooCommerce\Internal\Admin

FeaturePlugin::hooks()protectedWC 1.0

Set up our admin hooks and plugin loader.

Method of the class: FeaturePlugin{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->hooks();

FeaturePlugin::hooks() code WC 8.6.1

protected function hooks() {
	add_filter( 'woocommerce_admin_features', array( $this, 'replace_supported_features' ), 0 );

	Loader::get_instance();
	WCAdminAssets::get_instance();
}