action_scheduler_use_cpu_execution_time
Использование
add_filter( 'action_scheduler_use_cpu_execution_time', 'wp_kama_action_scheduler_use_cpu_execution_time_filter' ); /** * Function for `action_scheduler_use_cpu_execution_time` filter-hook. * * @param $defined * * @return */ function wp_kama_action_scheduler_use_cpu_execution_time_filter( $defined ){ // filter... return $defined; }
- $defined
- -
Где вызывается хук
action_scheduler_use_cpu_execution_time
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php 277
if ( function_exists( 'getrusage' ) && apply_filters( 'action_scheduler_use_cpu_execution_time', defined( 'PANTHEON_ENVIRONMENT' ) ) ) {