WP_Ajax_Upgrader_Skin::feedback( string|array|WP_Error $feedback, mixed $args )

Stores a message about the upgrade.


Parameters

$feedback string|array|WP_Error Required
Message data.
$args mixed Optional
Optional text replacements.

Top ↑

Source

File: wp-admin/includes/class-wp-ajax-upgrader-skin.php. View all references

public function feedback( $feedback, ...$args ) {
	if ( is_wp_error( $feedback ) ) {
		foreach ( $feedback->get_error_codes() as $error_code ) {
			$this->errors->add( $error_code, $feedback->get_error_message( $error_code ), $feedback->get_error_data( $error_code ) );
		}
	}

	parent::feedback( $feedback, ...$args );
}


Top ↑

Changelog

Changelog
Version Description
5.9.0 Renamed $data to $feedback for PHP 8 named parameter support.
5.3.0 Formalized the existing ...$args parameter by adding it to the function signature.
4.6.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.