Automattic\WooCommerce\Internal\Admin\Logging\FileV2
FileListTable::column_modified
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() 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 );
}