WP_Upgrader_Skin::feedback() WordPress Method
The WP_Upgrader_Skin::feedback() method is used to give feedback to the user during the upgrade process. The feedback is displayed in the form of a progress bar and a status message.
WP_Upgrader_Skin::feedback( string $feedback, mixed $args ) #
Parameters
- $feedback
(string)(Required)Message data.
- $args
(mixed)(Optional)text replacements.
Source
File: wp-admin/includes/class-wp-upgrader-skin.php
public function feedback( $feedback, ...$args ) { if ( isset( $this->upgrader->strings[ $feedback ] ) ) { $feedback = $this->upgrader->strings[ $feedback ]; } if ( strpos( $feedback, '%' ) !== false ) { if ( $args ) { $args = array_map( 'strip_tags', $args ); $args = array_map( 'esc_html', $args ); $feedback = vsprintf( $feedback, $args ); } } if ( empty( $feedback ) ) { return; } show_message( $feedback ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Renamed $string (a PHP reserved keyword) to $feedback for PHP 8 named parameter support. |
2.8.0 | Introduced. |