WC_Admin_Log_Table_List::column_timestamp( array $log )

Timestamp column.


Description Description


Parameters Parameters

$log

(Required)


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/admin/class-wc-admin-log-table-list.php

	public function column_timestamp( $log ) {
		return esc_html(
			mysql2date(
				'Y-m-d H:i:s',
				$log['timestamp']
			)
		);
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.