WP_Paused_Extensions_Storage::set()publicWP 5.2.0

Records an extension error.

Only one error is stored per extension, with subsequent errors for the same extension overriding the previously stored error.

Method of the class: WP_Paused_Extensions_Storage{}

No Hooks.

Return

true|false. True on success, false on failure.

Usage

$WP_Paused_Extensions_Storage = new WP_Paused_Extensions_Storage();
$WP_Paused_Extensions_Storage->set( $extension, $error );
$extension(string) (required)
Plugin or theme directory name.
$error(array) (required)

Error information returned by error_get_last().

  • type(int)
    The error type.

  • file(string)
    The name of the file in which the error occurred.

  • line(int)
    The line number in which the error occurred.

  • message(string)
    The error message.

Changelog

Since 5.2.0 Introduced.

WP_Paused_Extensions_Storage::set() code WP 6.5.2

public function set( $extension, $error ) {
	if ( ! $this->is_api_loaded() ) {
		return false;
	}

	$option_name = $this->get_option_name();

	if ( ! $option_name ) {
		return false;
	}

	$paused_extensions = (array) get_option( $option_name, array() );

	// Do not update if the error is already stored.
	if ( isset( $paused_extensions[ $this->type ][ $extension ] ) && $paused_extensions[ $this->type ][ $extension ] === $error ) {
		return true;
	}

	$paused_extensions[ $this->type ][ $extension ] = $error;

	return update_option( $option_name, $paused_extensions );
}