ActionScheduler_Abstract_QueueRunner_Deprecated::get_maximum_execution_time
Устарела с версии 2.1.1. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Get the maximum number of seconds a batch can run for.
Метод класса: ActionScheduler_Abstract_QueueRunner_Deprecated{}
Хуки из метода
Возвращает
int. The number of seconds.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_maximum_execution_time();
Список изменений
| Устарела с | 2.1.1 |
Код ActionScheduler_Abstract_QueueRunner_Deprecated::get_maximum_execution_time() ActionScheduler Abstract QueueRunner Deprecated::get maximum execution time WC 11.0.1
woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php
protected function get_maximum_execution_time() {
_deprecated_function( __METHOD__, '2.1.1', 'ActionScheduler_Abstract_QueueRunner::get_time_limit()' );
$maximum_execution_time = 30;
// 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 );
}