action_scheduler_enable_recreate_data_store хук-фильтрWC 1.0

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

add_filter( 'action_scheduler_enable_recreate_data_store', 'wp_kama_action_scheduler_enable_recreate_data_store_filter' );

/**
 * Function for `action_scheduler_enable_recreate_data_store` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_action_scheduler_enable_recreate_data_store_filter( $true ){

	// filter...
	return $true;
}
$true
-

Где вызывается хук

ActionScheduler_ListTable::display_admin_notices()
action_scheduler_enable_recreate_data_store
woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php 351
if ( ( is_a( $this->store, 'ActionScheduler_HybridStore' ) || is_a( $this->store, 'ActionScheduler_DBStore' ) ) && apply_filters( 'action_scheduler_enable_recreate_data_store', true ) ) {

Где используется хук в WooCommerce

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