Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

SyncUI::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.

Метод класса: SyncUI{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Код SyncUI::init_hooks() WC 8.7.0

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

	add_filter( 'woocommerce_debug_tools', array( $this, 'add_tools' ) );
}