Docs: Cross-reference parent classes in DocBlocks for upgrader classes moved to their own files in 4.6
See #36618. See #37318. Built from https://develop.svn.wordpress.org/trunk@38023 git-svn-id: http://core.svn.wordpress.org/trunk@37964 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2ee0027bc1
commit
a13164355f
|
@ -15,6 +15,8 @@
|
|||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see Bulk_Upgrader_Skin
|
||||
*/
|
||||
class Automatic_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
protected $messages = array();
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see Bulk_Upgrader_Skin
|
||||
*/
|
||||
class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin {
|
||||
public $plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in.
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see Bulk_Upgrader_Skin
|
||||
*/
|
||||
class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
|
||||
public $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see WP_Upgrader_Skin
|
||||
*/
|
||||
class Bulk_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $in_loop = false;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see WP_Upgrader_Skin
|
||||
*/
|
||||
class Language_Pack_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $language_update = null;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see WP_Upgrader_Skin
|
||||
*/
|
||||
class Plugin_Installer_Skin extends WP_Upgrader_Skin {
|
||||
public $api;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see WP_Upgrader_Skin
|
||||
*/
|
||||
class Plugin_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $plugin = '';
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see WP_Upgrader_Skin
|
||||
*/
|
||||
class Theme_Installer_Skin extends WP_Upgrader_Skin {
|
||||
public $api;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 2.8.0
|
||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||
*
|
||||
* @see WP_Upgrader_Skin
|
||||
*/
|
||||
class Theme_Upgrader_Skin extends WP_Upgrader_Skin {
|
||||
public $theme = '';
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-beta2-38022';
|
||||
$wp_version = '4.6-beta2-38023';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue