Plugin_Upgrader::delete_old_plugin()
Deletes the old plugin during an upgrade.
Hooked to the upgrader_clear_destination filter by Plugin_Upgrader::upgrade() and Plugin_Upgrader::bulk_upgrade().
Method of the class: Plugin_Upgrader{}
No Hooks.
Return
true|false|WP_Error
.
Usage
$Plugin_Upgrader = new Plugin_Upgrader(); $Plugin_Upgrader->delete_old_plugin( $removed, $local_destination, $remote_destination, $plugin );
- $removed(true|false|WP_Error) (required)
- Whether the destination was cleared. True on success, WP_Error on failure.
- $local_destination(string) (required)
- The local package destination.
- $remote_destination(string) (required)
- The remote package destination.
- $plugin(array) (required)
- Extra arguments passed to hooked filters.
Notes
- Global. WP_Filesystem_Base. $wp_filesystem WordPress filesystem subclass.
Changelog
Since 2.8.0 | Introduced. |
Plugin_Upgrader::delete_old_plugin() Plugin Upgrader::delete old plugin code WP 6.6.2
public function delete_old_plugin( $removed, $local_destination, $remote_destination, $plugin ) { global $wp_filesystem; if ( is_wp_error( $removed ) ) { return $removed; // Pass errors through. } $plugin = isset( $plugin['plugin'] ) ? $plugin['plugin'] : ''; if ( empty( $plugin ) ) { return new WP_Error( 'bad_request', $this->strings['bad_request'] ); } $plugins_dir = $wp_filesystem->wp_plugins_dir(); $this_plugin_dir = trailingslashit( dirname( $plugins_dir . $plugin ) ); if ( ! $wp_filesystem->exists( $this_plugin_dir ) ) { // If it's already vanished. return $removed; } /* * If plugin is in its own directory, recursively delete the directory. * Base check on if plugin includes directory separator AND that it's not the root plugin folder. */ if ( strpos( $plugin, '/' ) && $this_plugin_dir !== $plugins_dir ) { $deleted = $wp_filesystem->delete( $this_plugin_dir, true ); } else { $deleted = $wp_filesystem->delete( $plugins_dir . $plugin ); } if ( ! $deleted ) { return new WP_Error( 'remove_old_failed', $this->strings['remove_old_failed'] ); } return true; }