GC_Application_Passwords_List_Table::single_row()

最后更新于:2021-11-26 09:16:38

GC_Application_Passwords_List_Table::single_row( array$item)

Generates content for a single row of the table.

参数

$item

(array) (Required) The current item.

源文件

文件: gc-admin/includes/class-gc-application-passwords-list-table.php

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