Get the instance for storing paused plugins.
Source
function wp_paused_plugins() {
static $storage = null;
if ( null === $storage ) {
$storage = new WP_Paused_Extensions_Storage( 'plugin' );
}
return $storage;
}
CARVIEW |
Get the instance for storing paused plugins.
function wp_paused_plugins() {
static $storage = null;
if ( null === $storage ) {
$storage = new WP_Paused_Extensions_Storage( 'plugin' );
}
return $storage;
}
Uses | Description |
---|---|
WP_Paused_Extensions_Storage::__construct()wp-includes/class-wp-paused-extensions-storage.php | Constructor. |
Used by | Description |
---|---|
WP_Recovery_Mode::store_error()wp-includes/class-wp-recovery-mode.php | Stores the given error so that the extension causing it is paused. |
WP_Recovery_Mode::exit_recovery_mode()wp-includes/class-wp-recovery-mode.php | Ends the current recovery mode session. |
wp_skip_paused_plugins()wp-includes/load.php | Filters a given list of plugins, removing any paused plugins from it. |
resume_plugin()wp-admin/includes/plugin.php | Tries to resume a single plugin. |
deactivate_plugins()wp-admin/includes/plugin.php | Deactivates a single plugin or multiple plugins. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.