Plugin_Upgrader::upgrade_strings() WordPress Method
The Plugin_Upgrader::upgrade_strings() method is used to upgrade the version strings for the specified plugin. This is useful if you need to upgrade your plugin to a newer version but don't want to lose your existing settings.
Plugin_Upgrader::upgrade_strings() #
Initialize the upgrade strings.
Source
File: wp-admin/includes/class-plugin-upgrader.php
public function upgrade_strings() { $this->strings['up_to_date'] = __( 'The plugin is at the latest version.' ); $this->strings['no_package'] = __( 'Update package not available.' ); /* translators: %s: Package URL. */ $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); $this->strings['unpack_package'] = __( 'Unpacking the update…' ); $this->strings['remove_old'] = __( 'Removing the old version of the plugin…' ); $this->strings['remove_old_failed'] = __( 'Could not remove the old plugin.' ); $this->strings['process_failed'] = __( 'Plugin update failed.' ); $this->strings['process_success'] = __( 'Plugin updated successfully.' ); $this->strings['process_bulk_success'] = __( 'Plugins updated successfully.' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |