On this page
WP_Paused_Extensions_Storage::is_api_loaded(): bool
Checks whether the underlying API to store paused extensions is loaded.
Return
bool True if the API is loaded, false otherwise.
Source
File: wp-includes/class-wp-paused-extensions-storage.php. View all references
protected function is_api_loaded() {
return function_exists( 'get_option' );
}
Related
Used By
| Used By | Description |
|---|---|
| WP_Paused_Extensions_Storage::set() wp-includes/class-wp-paused-extensions-storage.php | Records an extension error. |
| WP_Paused_Extensions_Storage::delete() wp-includes/class-wp-paused-extensions-storage.php | Forgets a previously recorded extension error. |
| WP_Paused_Extensions_Storage::get() wp-includes/class-wp-paused-extensions-storage.php | Gets the error for an extension, if paused. |
| WP_Paused_Extensions_Storage::get_all() wp-includes/class-wp-paused-extensions-storage.php | Gets the paused extensions with their errors. |
| WP_Paused_Extensions_Storage::delete_all() wp-includes/class-wp-paused-extensions-storage.php | Remove all paused extensions. |
Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_paused_extensions_storage/is_api_loaded