WP_Privacy_Requests_Table::single_row() WordPress Method
This method is used to generate the row for a single privacy request in the table.
WP_Privacy_Requests_Table::single_row( WP_User_Request $item ) #
Generates content for a single row of the table,
Parameters
- $item
(WP_User_Request)(Required)The current item.
Source
File: wp-admin/includes/class-wp-privacy-requests-table.php
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>'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.9.6 | Introduced. |