Tribe__Tickets_Plus__Commerce__WooCommerce__Orders__Table::single_row( object $item )

Generates content for a single row of the table


Parameters

$item

(object) (Required) The current item


Top ↑

Source

File: src/Tribe/Commerce/WooCommerce/Orders/Table.php

	public function single_row( $item ) {
		echo '<tr class="' . esc_attr( $item['status'] ) . '">';
		$this->single_row_columns( $item );
		echo '</tr>';
	}//end single_row