WC_Admin_Log_Table_List::display_rows()publicWC 1.0

Generates the table rows.

Method of the class: WC_Admin_Log_Table_List{}

No Hooks.

Return

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() code WC 9.7.1

public function display_rows() {
	foreach ( $this->items as $log ) {
		$this->single_row( $log );
		if ( ! empty( $log['context'] ) ) {
			$this->context_row( $log );
		}
	}
}