Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories

Synchronize::init()publicWC 1.0

Sets up our checks and controls for downloadable asset URLs, as appropriate for the current approved download directory mode.

Method of the class: Synchronize{}

No Hooks.

Return

null. Nothing (null).

Usage

$Synchronize = new Synchronize();
$Synchronize->init( $register );
$register(Register) (required)
The active approved download directories instance in use.

Synchronize::init() code WC 8.7.0

final public function init( Register $register ) {
	$this->queue    = WC()->get_instance_of( WC_Queue_Interface::class );
	$this->register = $register;

}