Bulk_Plugin_Upgrader_Skin::after() WordPress Method

The Bulk_Plugin_Upgrader_Skin::after() method is called after the bulk plugin upgrade is complete. This method can be used to perform any cleanup or post-upgrade tasks.

Bulk_Plugin_Upgrader_Skin::after( string $title = '' ) #


Parameters

$title

(string)(Optional)

Default value: ''


Top ↑

Source

File: wp-admin/includes/class-bulk-plugin-upgrader-skin.php

	public function after( $title = '' ) {
		parent::after( $this->plugin_info['Title'] );
		$this->decrement_update_count( 'plugin' );
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.