WC_Admin_Log_Table_List::display_rows
Generates the table rows.
Метод класса: WC_Admin_Log_Table_List{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$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 WC 10.4.3
public function display_rows() {
foreach ( $this->items as $log ) {
$this->single_row( $log );
if ( ! empty( $log['context'] ) ) {
$this->context_row( $log );
}
}
}