Plugin_Installer_Skin::hide_process_failed()
Hides the process_failed error when updating a plugin by uploading a zip file.
Метод класса: Plugin_Installer_Skin{}
Хуков нет.
Возвращает
true|false
. True if the error should be hidden, false otherwise.
Использование
$Plugin_Installer_Skin = new Plugin_Installer_Skin(); $Plugin_Installer_Skin->hide_process_failed( $wp_error );
- $wp_error(WP_Error) (обязательный)
- WP_Error object.
Список изменений
С версии 5.5.0 | Введена. |
Код Plugin_Installer_Skin::hide_process_failed() Plugin Installer Skin::hide process failed WP 6.7.1
public function hide_process_failed( $wp_error ) { if ( 'upload' === $this->type && '' === $this->overwrite && $wp_error->get_error_code() === 'folder_exists' ) { return true; } return false; }