action_scheduler_migrate_data_store

action_scheduler_migrate_data_store

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

apply_filters('action_scheduler_migrate_data_store') is found 1 times:

  • /packages/action-scheduler/classes/migration/Controller.php line 220
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
            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;
    }
     
    /**