action_scheduler_maximum_execution_time

action_scheduler_maximum_execution_time

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

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

apply_filters('action_scheduler_maximum_execution_time') is found 2 times:

  • /packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php line 274
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
        // Apply deprecated filter from deprecated get_maximum_execution_time() method.
        if ( has_filter( 'action_scheduler_maximum_execution_time' ) ) {
            _deprecated_function( 'action_scheduler_maximum_execution_time', '2.1.1', 'action_scheduler_queue_runner_time_limit' );
            $time_limit = apply_filters( 'action_scheduler_maximum_execution_time', $time_limit );
        }
     
        return absint( apply_filters( 'action_scheduler_queue_runner_time_limit', $time_limit ) );
    }
     
    /**
  • /packages/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php line 22

    Warning: Undefined array key 27 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    19
    20
    21
    22
    23
    24
    25
    26
    27
            // Apply deprecated filter.
            if ( has_filter( 'action_scheduler_maximum_execution_time' ) ) {
                _deprecated_function( 'action_scheduler_maximum_execution_time', '2.1.1', 'action_scheduler_queue_runner_time_limit' );
                $maximum_execution_time = apply_filters( 'action_scheduler_maximum_execution_time', $maximum_execution_time );
            }
     
            return absint( $maximum_execution_time );
        }
    }