ActionScheduler_wpPostStore::init()publicWC 1.0

(@codeCoverageIgnore)

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

Хуков нет.

Возвращает

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

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

$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore();
$ActionScheduler_wpPostStore->init();

Код ActionScheduler_wpPostStore::init() WC 8.7.0

public function init() {
	add_filter( 'action_scheduler_migration_dependencies_met', array( $this, 'migration_dependencies_met' ) );

	$post_type_registrar = new ActionScheduler_wpPostStore_PostTypeRegistrar();
	$post_type_registrar->register();

	$post_status_registrar = new ActionScheduler_wpPostStore_PostStatusRegistrar();
	$post_status_registrar->register();

	$taxonomy_registrar = new ActionScheduler_wpPostStore_TaxonomyRegistrar();
	$taxonomy_registrar->register();
}