ActionScheduler_DBStore::init()publicWC 1.0

Initialize the data store

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

Хуков нет.

Возвращает

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

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

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

Код ActionScheduler_DBStore::init() WC 8.7.0

public function init() {
	$table_maker = new ActionScheduler_StoreSchema();
	$table_maker->init();
	$table_maker->register_tables();
}