Action_Scheduler\Migration
Controller::allow_migration
Allow datastores to enable migration to AS tables.
Method of the class: Controller{}
Hooks from the method
Returns
null. Nothing (null).
Usage
$Controller = new Controller(); $Controller->allow_migration();
Controller::allow_migration() Controller::allow migration code WC 10.5.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;
}