- Timestamp:
- 08/29/2022 12:44:30 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ajax-upgrader-skin.php
r51781 r53952 18 18 */ 19 19 class WP_Ajax_Upgrader_Skin extends Automatic_Upgrader_Skin { 20 21 /** 22 * Plugin info. 23 * 24 * The Plugin_Upgrader::bulk_upgrade() method will fill this in 25 * with info retrieved from the get_plugin_data() function. 26 * 27 * @var array Plugin data. Values will be empty if not supplied by the plugin. 28 */ 29 public $plugin_info = array(); 30 31 /** 32 * Theme info. 33 * 34 * The Theme_Upgrader::bulk_upgrade() method will fill this in 35 * with info retrieved from the Theme_Upgrader::theme_info() method, 36 * which in turn calls the wp_get_theme() function. 37 * 38 * @var WP_Theme|false The theme's info object, or false. 39 */ 40 public $theme_info = false; 20 41 21 42 /**
Note: See TracChangeset
for help on using the changeset viewer.