/**
  * Outputs the footer strings and necessary JS after each plugin installation.
  *
  * Checks for any errors and outputs them if they exist, else output
  * success strings.
  *
  * @since 2.2.0
  *
  * @param string $title Unused in this implementation.
  */
 public function after($title = '')
 {
     if (empty($title)) {
         $title = esc_html($this->plugin_names[$this->i]);
     }
     parent::after($title);
     $this->i++;
 }
	/**
	 *
	 * @param string $title
	 */
	public function after($title = '') {
		parent::after( $this->theme_info->display('Name') );
		$this->decrement_update_count( 'theme' );
	}
 function after()
 {
     parent::after($this->theme_info['Name']);
 }
 /**
  *
  * @param string $title
  */
 public function after($title = '')
 {
     parent::after($this->plugin_info['Title']);
     $this->decrement_update_count('plugin');
 }
 function after()
 {
     parent::after($this->theme_info->display('Name'));
 }
 function after($title = '')
 {
     Bulk_Upgrader_Skin::after($this->pk_name);
 }