WC_Admin_Log_Table_List::display_rows
Generates the table rows.
Method of the class: WC_Admin_Log_Table_List{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Admin_Log_Table_List = new WC_Admin_Log_Table_List(); $WC_Admin_Log_Table_List->display_rows();
WC_Admin_Log_Table_List::display_rows() WC Admin Log Table List::display rows code WC 10.3.5
public function display_rows() {
foreach ( $this->items as $log ) {
$this->single_row( $log );
if ( ! empty( $log['context'] ) ) {
$this->context_row( $log );
}
}
}