WP_Application_Passwords_List_Table::single_row( array $item )

In this article

Generates content for a single row of the table.

Parameters

$itemarrayrequired
The current item.

Source

public function single_row( $item ) {
	echo '<tr data-uuid="' . esc_attr( $item['uuid'] ) . '">';
	$this->single_row_columns( $item );
	echo '</tr>';
}

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.