- Timestamp:
- 07/28/2020 11:55:19 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-plugin-upgrader-skin.php
r46072 r48661 17 17 */ 18 18 class Plugin_Upgrader_Skin extends WP_Upgrader_Skin { 19 public $plugin = ''; 20 public $plugin_active = false; 19 20 /** 21 * Holds the plugin slug in the Plugin Directory. 22 * 23 * @since 2.8.0 24 * 25 * @var object 26 */ 27 public $plugin = ''; 28 29 /** 30 * Whether the plugin is active. 31 * 32 * @since 2.8.0 33 * 34 * @var bool 35 */ 36 public $plugin_active = false; 37 38 /** 39 * Whether the plugin is active for the entire network. 40 * 41 * @since 2.8.0 42 * 43 * @var bool 44 */ 21 45 public $plugin_network_active = false; 22 46 23 47 /** 24 * @param array $args 48 * Constructor. 49 * 50 * Sets up the plugin upgrader skin. 51 * 52 * @since 2.8.0 53 * 54 * @param array $args Optional. The plugin upgrader skin arguments to 55 * override default options. Default empty array. 25 56 */ 26 57 public function __construct( $args = array() ) { … … 42 73 43 74 /** 75 * Action to perform following a single plugin update. 76 * 77 * @since 2.8.0 44 78 */ 45 79 public function after() {
Note: See TracChangeset
for help on using the changeset viewer.