Action_Scheduler\Migration

Controller::allow_migration()publicWC 1.0

Allow datastores to enable migration to AS tables.

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

Хуки из метода

Возвращает

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

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

$Controller = new Controller();
$Controller->allow_migration();

Код Controller::allow_migration() WC 8.7.0

public function allow_migration() {
	if ( ! \ActionScheduler_DataController::dependencies_met() ) {
		return false;
	}

	if ( null === $this->migrate_custom_store ) {
		$this->migrate_custom_store = apply_filters( 'action_scheduler_migrate_data_store', false );
	}

	return ( ! $this->has_custom_datastore() ) || $this->migrate_custom_store;
}