Application_Passwords_List_Table::single_row PHP Method

single_row() public method

Generates content for a single row of the table.
Since: 0.1-dev
public single_row ( object $item )
$item object The current item.
    public function single_row($item)
    {
        echo '<tr data-slug="' . esc_attr(Application_Passwords::password_unique_slug($item)) . '">';
        $this->single_row_columns($item);
        echo '</tr>';
    }