You appear to be a bot. Output may be restricted
Description
Generate the tbody element for the list table.
Usage
BW_List_Table::display_rows_or_placeholder();
Parameters
Returns
voidSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 9 of 9
public function display_rows_or_placeholder() { if ( $this->has_items() ) { $this->display_rows(); } else { echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">'; $this->no_items(); echo '</td></tr>'; } }View on GitHub View on Trac