Plugin_Installer_Skin::hide_process_failed()
Hides the process_failed error when updating a plugin by uploading a zip file.
Method of the class: Plugin_Installer_Skin{}
No Hooks.
Return
true|false
. True if the error should be hidden, false otherwise.
Usage
$Plugin_Installer_Skin = new Plugin_Installer_Skin(); $Plugin_Installer_Skin->hide_process_failed( $wp_error );
- $wp_error(WP_Error) (required)
- WP_Error object.
Changelog
Since 5.5.0 | Introduced. |
Plugin_Installer_Skin::hide_process_failed() Plugin Installer Skin::hide process failed code WP 6.8
public function hide_process_failed( $wp_error ) { if ( 'upload' === $this->type && '' === $this->overwrite && $wp_error->get_error_code() === 'folder_exists' ) { return true; } return false; }