wp_plugin_update_row

Definition:
function wp_plugin_update_row( $file, $plugin_data ) {}

Parameters

  • $file
  • $plugin_data

Defined actions

  • in_plugin_update_message-$file
    do_action( "in_plugin_update_message-$file", $plugin_data, $r );

Source code

function wp_plugin_update_row( $file, $plugin_data ) {

	$current = get_site_transient( 'update_plugins' );

	if ( !isset( $current->response[ $file ] ) )

		return false;



	$r = $current->response[ $file ];



	$plugins_allowedtags = array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array());

	$plugin_name = wp_kses( $plugin_data['Name'], $plugins_allowedtags );



	$details_url = self_admin_url('plugin-install.php?tab=plugin-information&plugin=' . $r->slug . '&TB_iframe=true&width=600&height=800');



	$wp_list_table = _get_list_table('WP_Plugins_List_Table');



	if ( is_network_admin() || !is_multisite() ) {

		echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';



		if ( ! current_user_can('update_plugins') )

			printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>.'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version );

		else if ( empty($r->package) )

			printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version );

		else

			printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a> or <a href="%5$s">update automatically</a>.'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version, wp_nonce_url( self_admin_url('update.php?action=upgrade-plugin&plugin=') . $file, 'upgrade-plugin_' . $file) );



		do_action( "in_plugin_update_message-$file", $plugin_data, $r );



		echo '</div></td></tr>';

	}

}

3983

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: