Language_Pack_Upgrader::get_name_for_update( object $update ): string

In this article

Gets the name of an item being updated.

Parameters

$updateobjectrequired
The data for an update.

Return

string The name of the item being updated.

Source

public function get_name_for_update( $update ) {
	switch ( $update->type ) {
		case 'core':
			return 'WordPress'; // Not translated.

		case 'theme':
			$theme = wp_get_theme( $update->slug );
			if ( $theme->exists() ) {
				return $theme->Get( 'Name' );
			}
			break;
		case 'plugin':
			$plugin_data = get_plugins( '/' . $update->slug );
			$plugin_data = reset( $plugin_data );
			if ( $plugin_data ) {
				return $plugin_data['Name'];
			}
			break;
	}
	return '';
}

Changelog

VersionDescription
3.7.0Introduced.

User Contributed Notes

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