ActionScheduler_HybridStore::init()publicWC 1.0

Initialize the table data store tables.

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

Хуков нет.

Возвращает

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

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

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

Код ActionScheduler_HybridStore::init() WC 8.7.0

public function init() {
	add_action( 'action_scheduler/created_table', [ $this, 'set_autoincrement' ], 10, 2 );
	$this->primary_store->init();
	$this->secondary_store->init();
	remove_action( 'action_scheduler/created_table', [ $this, 'set_autoincrement' ], 10 );
}