mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Upgrade/Install: Introduce a filter for the result of WP_Upgrader::install_package().
This allows for the capture and usage of error data from the method, to facilitate a potential plugin/theme rollback in the event of an update failure. Props afragen, dd32. Fixes #52381. git-svn-id: https://develop.svn.wordpress.org/trunk@50151 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7f049d3ac1
commit
39edb7abe9
@ -798,6 +798,16 @@ class WP_Upgrader {
|
||||
)
|
||||
);
|
||||
|
||||
/**
|
||||
* Filters the result of WP_Upgrader::install_package().
|
||||
*
|
||||
* @since 5.7.0
|
||||
*
|
||||
* @param array|WP_Error $result Result from WP_Upgrader::install_package().
|
||||
* @param array $hook_extra Extra arguments passed to hooked filters.
|
||||
*/
|
||||
$result = apply_filters( 'upgrader_install_package_result', $result, $options['hook_extra'] );
|
||||
|
||||
$this->skin->set_result( $result );
|
||||
if ( is_wp_error( $result ) ) {
|
||||
$this->skin->error( $result );
|
||||
|
||||
Loading…
Reference in New Issue
Block a user