WP_MS_Sites_List_Table::column_plugins()publicWP 4.3.0

Handles the plugins column output.

Method of the class: WP_MS_Sites_List_Table{}

Hooks from the method

Return

null. Nothing (null).

Usage

$WP_MS_Sites_List_Table = new WP_MS_Sites_List_Table();
$WP_MS_Sites_List_Table->column_plugins( $blog );
$blog(array) (required)
Current site.

Changelog

Since 4.3.0 Introduced.

WP_MS_Sites_List_Table::column_plugins() code WP 6.5.2

public function column_plugins( $blog ) {
	if ( has_filter( 'wpmublogsaction' ) ) {
		/**
		 * Fires inside the auxiliary 'Actions' column of the Sites list table.
		 *
		 * By default this column is hidden unless something is hooked to the action.
		 *
		 * @since MU (3.0.0)
		 *
		 * @param int $blog_id The site ID.
		 */
		do_action( 'wpmublogsaction', $blog['blog_id'] );
	}
}