WC_Tracker::get_last_send_time()private staticWC 1.0

Get the last time tracking data was sent.

Method of the class: WC_Tracker{}

Hooks from the method

Return

Int|true|false.

Usage

$result = WC_Tracker::get_last_send_time();

WC_Tracker::get_last_send_time() code WC 8.7.0

private static function get_last_send_time() {
	/**
	 * Filter the last time tracking data was sent.
	 *
	 * @since 2.3.0
	 */
	return apply_filters( 'woocommerce_tracker_last_send_time', get_option( 'woocommerce_tracker_last_send', false ) );
}