wppaste
WordPress

WP_Paused_Extensions_Storage

Since
5.2.0
Source
wp-includes/class-wp-paused-extensions-storage.php:14
Core class used for storing paused extensions.

Compatibility

WordPress
since 5.2.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Properties · 1

$typestringprotected
Type of extension. Used to key extension storage. Either 'plugin' or 'theme'.

Methods · 8

Source code

#[AllowDynamicProperties]class WP_Paused_Extensions_Storage { 	/**	 * Type of extension. Used to key extension storage. Either 'plugin' or 'theme'.	 *	 * @since 5.2.0	 * @var string	 */	protected $type; 	/**	 * Constructor.	 *	 * @since 5.2.0	 *	 * @param string $extension_type Extension type. Either 'plugin' or 'theme'.	 */	public function __construct( $extension_type ) {		$this->type = $extension_type;	} 	/**	 * Records an extension error.	 *	 * Only one error is stored per extension, with subsequent errors for the same extension overriding the	 * previously stored error.	 *	 * @since 5.2.0	 *	 * @param string $extension Plugin or theme directory name.	 * @param array  $error     {	 *     Error information returned by `error_get_last()`.	 *	 *     @type int    $type    The error type.	 *     @type string $file    The name of the file in which the error occurred.	 *     @type int    $line    The line number in which the error occurred.	 *     @type string $message The error message.	 * }	 * @return bool True on success, false on failure.	 */	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, false );	} 	/**	 * Forgets a previously recorded extension error.	 *	 * @since 5.2.0	 *	 * @param string $extension Plugin or theme directory name.	 * @return bool True on success, false on failure.	 */	public function delete( $extension ) {		if ( ! $this->is_api_loaded() ) {			return false;		} 		$option_name = $this->get_option_name(); 		if ( ! $option_name ) {

Changelog

Introduced in 5.2.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/class-wp-paused-extensions-storage.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.