action_scheduler_enable_recreate_data_store
Использование
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
- -
Где вызывается хук
action_scheduler_enable_recreate_data_store
woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php 352
if ( ( is_a( $this->store, 'ActionScheduler_HybridStore' ) || is_a( $this->store, 'ActionScheduler_DBStore' ) ) && apply_filters( 'action_scheduler_enable_recreate_data_store', true ) ) {