ActionScheduler_InvalidActionException::from_schedule
Create a new exception when the action's schedule cannot be fetched.
Метод класса: ActionScheduler_InvalidActionException{}
Хуков нет.
Возвращает
static
.
Использование
$result = ActionScheduler_InvalidActionException::from_schedule( $action_id, $schedule );
- $action_id(строка) (обязательный)
- The action ID with bad args.
- $schedule(разное) (обязательный)
- Passed schedule.
Код ActionScheduler_InvalidActionException::from_schedule() ActionScheduler InvalidActionException::from schedule WC 10.0.2
public static function from_schedule( $action_id, $schedule ) { $message = sprintf( /* translators: 1: action ID 2: schedule */ __( 'Action [%1$s] has an invalid schedule: %2$s', 'woocommerce' ), $action_id, var_export( $schedule, true ) // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export ); return new static( $message ); }