WP_HTML_Processor::bail( string $message )

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Stops the parser and terminates its execution when encountering unsupported markup.

Parameters

$messagestringrequired
Explains support is missing in order to parse the current node.

Source

private function bail( string $message ) {
	$here  = $this->bookmarks[ $this->state->current_token->bookmark_name ];
	$token = substr( $this->html, $here->start, $here->length );

	$open_elements = array();
	foreach ( $this->state->stack_of_open_elements->stack as $item ) {
		$open_elements[] = $item->node_name;
	}

	$active_formats = array();
	foreach ( $this->state->active_formatting_elements->walk_down() as $item ) {
		$active_formats[] = $item->node_name;
	}

	$this->last_error = self::ERROR_UNSUPPORTED;

	$this->unsupported_exception = new WP_HTML_Unsupported_Exception(
		$message,
		$this->state->current_token->node_name,
		$here->start,
		$token,
		$open_elements,
		$active_formats
	);

	throw $this->unsupported_exception;
}

Changelog

VersionDescription
6.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.