Changeset 49596
- Timestamp:
- 11/14/2020 04:21:19 PM (4 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-automatic-upgrader-skin.php
r47122 r49596 9 9 10 10 /** 11 * Upgrader Skin for Automatic WordPress Upgrades 11 * Upgrader Skin for Automatic WordPress Upgrades. 12 12 * 13 13 * This skin is designed to be used when no output is intended, all output … … 53 53 54 54 /** 55 * @return array 55 * Retrieves the upgrade messages. 56 * 57 * @since 3.7.0 58 * 59 * @return array Messages during an upgrade. 56 60 */ 57 61 public function get_upgrade_messages() { … … 60 64 61 65 /** 62 * @param string|array|WP_Error $data 66 * Stores a message about the upgrade. 67 * 68 * @since 3.7.0 69 * 70 * @param string|array|WP_Error $data Message data. 63 71 * @param mixed ...$args Optional text replacements. 64 72 */ … … 104 112 105 113 /** 114 * Creates a new output buffer. 115 * 116 * @since 3.7.0 106 117 */ 107 118 public function header() { … … 110 121 111 122 /** 123 * Retrieves the buffered content, deletes the buffer, and processes the output. 124 * 125 * @since 3.7.0 112 126 */ 113 127 public function footer() { -
trunk/src/wp-admin/includes/class-wp-ajax-upgrader-skin.php
r48661 r49596 82 82 83 83 /** 84 * Stores a log entry for an error.84 * Stores an error message about the upgrade. 85 85 * 86 86 * @since 4.6.0 … … 117 117 118 118 /** 119 * Stores a log entry.119 * Stores a message about the upgrade. 120 120 * 121 121 * @since 4.6.0 … … 123 123 * to the function signature. 124 124 * 125 * @param string|array|WP_Error $data Log entrydata.125 * @param string|array|WP_Error $data Message data. 126 126 * @param mixed ...$args Optional text replacements. 127 127 */
Note: See TracChangeset
for help on using the changeset viewer.