WC_Admin_API_Keys_Table_List::column_last_access( array $key )

Return last access column.


Description Description


Parameters Parameters

$key

(Required) Key data.


Top ↑

Return Return

(string)


Top ↑

Source Source

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

	public function column_last_access( $key ) {
		if ( ! empty( $key['last_access'] ) ) {
			/* translators: 1: last access date 2: last access time */
			$date = sprintf( __( '%1$s at %2$s', 'woocommerce' ), date_i18n( wc_date_format(), strtotime( $key['last_access'] ) ), date_i18n( wc_time_format(), strtotime( $key['last_access'] ) ) );

			return apply_filters( 'woocommerce_api_key_last_access_datetime', $date, $key['last_access'] );
		}

		return __( 'Unknown', 'woocommerce' );
	}


Top ↑

User Contributed Notes User Contributed Notes

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