mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-26 11:08:06 +01:00
58d772a02f
An upgrader class is used in conjunction with an upgrader skin class. A skin class handles the logging for an upgrade and informs a user about the progress and failures. The current Ajax install/update handlers are using the `Automatic_Upgrader_Skin` class because during an Ajax request no output is intended. The difference between Ajax updates and automatic updates is that you will see the full log (usually by email) while Ajax updates focus only on success or failure. For that `Automatic_Upgrader_Skin` has one disadvantage: It doesn't provide a way to retrieve failure messages which were passed through `WP_Upgrader_Skin::error()` by the upgrader. To solve this issue a new skin `WP_Ajax_Upgrader_Skin` has been introduced. The skin extends `Automatic_Upgrader_Skin` and overrides the `error()` and `feedback()` methods to intercept all errors, which can be a `WP_Error` object or a string. This updates all four Ajax handler for installing/updating themes/plugins to use the new skin. They now also check the skin for any intercepted errors and pass them on to the user. Props flixos90, obenland, ocean90. Props DrewAPicture, pento for review. Fixes #37531. Built from https://develop.svn.wordpress.org/trunk@38199 git-svn-id: http://core.svn.wordpress.org/trunk@38140 1a063a9b-81f0-0310-95a4-ce76da25c4cd
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The User Interface "Skins" for the WordPress File Upgrader
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Upgrader
|
|
* @since 2.8.0
|
|
*/
|
|
|
|
/** WP_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php';
|
|
|
|
/** Plugin_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-plugin-upgrader-skin.php';
|
|
|
|
/** Theme_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-theme-upgrader-skin.php';
|
|
|
|
/** Bulk_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-bulk-upgrader-skin.php';
|
|
|
|
/** Bulk_Plugin_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-bulk-plugin-upgrader-skin.php';
|
|
|
|
/** Bulk_Theme_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-bulk-theme-upgrader-skin.php';
|
|
|
|
/** Plugin_Installer_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-plugin-installer-skin.php';
|
|
|
|
/** Theme_Installer_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-theme-installer-skin.php';
|
|
|
|
/** Language_Pack_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-language-pack-upgrader-skin.php';
|
|
|
|
/** Automatic_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-automatic-upgrader-skin.php';
|
|
|
|
/** WP_Ajax_Upgrader_Skin class */
|
|
require_once ABSPATH . 'wp-admin/includes/class-wp-ajax-upgrader-skin.php';
|