Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

UI::init_hooks()publicWC 1.0

Performs any work needed to add hooks and otherwise integrate with the wider system, except in the case where the current user is not a site administrator, no hooks will be initialized.

Method of the class: UI{}

No Hooks.

Return

null. Nothing (null).

Usage

$UI = new UI();
$UI->init_hooks();

UI::init_hooks() code WC 8.7.0

final public function init_hooks() {
	if ( ! Users::is_site_administrator() ) {
		return;
	}

	add_filter( 'woocommerce_get_sections_products', array( $this, 'add_section' ) );
	add_action( 'load-woocommerce_page_wc-settings', array( $this, 'setup' ) );
	add_action( 'woocommerce_settings_products', array( $this, 'render' ) );
}