Upgrader: Add changelog entries for when the classes were moved to its own file.
See #36618. git-svn-id: https://develop.svn.wordpress.org/trunk@37432 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
195572596b
commit
5925994a30
@ -14,6 +14,7 @@
|
||||
* is captured and stored for the caller to process and log/email/discard.
|
||||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Automatic_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
protected $messages = array();
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Bulk Plugin Upgrader Skin for WordPress Plugin Upgrades.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin {
|
||||
public $plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in.
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Bulk Theme Upgrader Skin for WordPress Theme Upgrades.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
|
||||
public $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Generic Bulk Upgrader Skin for WordPress Upgrades.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Bulk_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $in_loop = false;
|
||||
|
@ -14,6 +14,7 @@
|
||||
* the wp-admin/includes/update-core.php file.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||
*
|
||||
* @see WP_Upgrader
|
||||
*/
|
||||
|
@ -14,6 +14,7 @@
|
||||
* to the Upgrade/Installer functions.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||
*/
|
||||
class File_Upload_Upgrader {
|
||||
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Translation Upgrader Skin for WordPress Translation Upgrades.
|
||||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Language_Pack_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $language_update = null;
|
||||
|
@ -12,6 +12,7 @@
|
||||
* for plugins, themes, and core.
|
||||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||
*
|
||||
* @see WP_Upgrader
|
||||
*/
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Plugin Installer Skin for WordPress Plugin Installer.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Plugin_Installer_Skin extends WP_Upgrader_Skin {
|
||||
public $api;
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Plugin Upgrader Skin for WordPress Plugin Upgrades.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Plugin_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $plugin = '';
|
||||
|
@ -14,6 +14,7 @@
|
||||
* or uploaded zip file.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||
*
|
||||
* @see WP_Upgrader
|
||||
*/
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Theme Installer Skin for the WordPress Theme Installer.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Theme_Installer_Skin extends WP_Upgrader_Skin {
|
||||
public $api;
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Theme Upgrader Skin for WordPress Theme Upgrades.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class Theme_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $theme = '';
|
||||
|
@ -14,6 +14,7 @@
|
||||
* or uploaded zip file.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||
*
|
||||
* @see WP_Upgrader
|
||||
*/
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Core class used for handling automatic background updates.
|
||||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||
*/
|
||||
class WP_Automatic_Updater {
|
||||
|
||||
|
@ -11,6 +11,7 @@
|
||||
* Generic Skin for the WordPress Upgrader classes. This skin is designed to be extended for specific purposes.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*/
|
||||
class WP_Upgrader_Skin {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user