Action_Scheduler\Migration
Controller::allow_migration
Allow datastores to enable migration to AS tables.
Метод класса: Controller{}
Хуки из метода
Возвращает
null. Ничего (null).
Использование
$Controller = new Controller(); $Controller->allow_migration();
Код Controller::allow_migration() Controller::allow migration WC 10.8.1
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;
}