WP_Recovery_Mode::handle_error()publicWP 5.2.0

Handles a fatal error occurring.

The calling API should immediately die() after calling this function.

Метод класса: WP_Recovery_Mode{}

Хуков нет.

Возвращает

true|WP_Error. True if the error was handled and headers have already been sent. Or the request will exit to try and catch multiple errors at once. WP_Error if an error occurred preventing it from being handled.

Использование

$WP_Recovery_Mode = new WP_Recovery_Mode();
$WP_Recovery_Mode->handle_error( $error );
$error(массив) (обязательный)
Error details from error_get_last().

Список изменений

С версии 5.2.0 Введена.

Код WP_Recovery_Mode::handle_error() WP 6.5.2

public function handle_error( array $error ) {

	$extension = $this->get_extension_for_error( $error );

	if ( ! $extension || $this->is_network_plugin( $extension ) ) {
		return new WP_Error( 'invalid_source', __( 'Error not caused by a plugin or theme.' ) );
	}

	if ( ! $this->is_active() ) {
		if ( ! is_protected_endpoint() ) {
			return new WP_Error( 'non_protected_endpoint', __( 'Error occurred on a non-protected endpoint.' ) );
		}

		if ( ! function_exists( 'wp_generate_password' ) ) {
			require_once ABSPATH . WPINC . '/pluggable.php';
		}

		return $this->email_service->maybe_send_recovery_mode_email( $this->get_email_rate_limit(), $error, $extension );
	}

	if ( ! $this->store_error( $error ) ) {
		return new WP_Error( 'storage_error', __( 'Failed to store the error.' ) );
	}

	if ( headers_sent() ) {
		return true;
	}

	$this->redirect_protected();
}