Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin
SyncUI::init_hooks()
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
. Ничего.
Использование
$SyncUI = new SyncUI(); $SyncUI->init_hooks();
Код SyncUI::init_hooks() SyncUI::init hooks WC 7.5.1
final public function init_hooks() { if ( ! Users::is_site_administrator() ) { return; } add_filter( 'woocommerce_debug_tools', array( $this, 'add_tools' ) ); }