WP_Privacy_Requests_Table::single_row() – Generates content for a single row of the table,

You appear to be a bot. Output may be restricted

Description

Generates content for a single row of the table,

Usage

WP_Privacy_Requests_Table::single_row( $item );

Parameters

$item
( WP_User_Request ) required – The current item.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-privacy-requests-table.php
Lines:

1 to 7 of 7
  public function single_row( $item ) {
    $status = $item->status;

    echo '<tr id="request-' . esc_attr( $item->ID ) . '" class="status-' . esc_attr( $status ) . '">';
    $this->single_row_columns( $item );
    echo '</tr>';
  }
 

 View on GitHub View on Trac