Automattic\WooCommerce\Internal\Admin\Logging\FileV2

FileListTable::column_modifiedpublicWC 1.0

Render the modified column.

Method of the class: FileListTable{}

No Hooks.

Returns

String.

Usage

$FileListTable = new FileListTable();
$FileListTable->column_modified( $item ): string;
$item(File) (required)
The current log file being rendered.

FileListTable::column_modified() code WC 10.7.0

public function column_modified( $item ): string {
	$timestamp = $item->get_modified_timestamp();

	return gmdate( 'Y-m-d H:i:s', $timestamp );
}