LLMS_Tracker::send_data( boolean $force = false )

Send data home


Description Description


Parameters Parameters

$force

(boolean) (Optional) force a send regardless or the last send time

Default value: false


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.tracker.php

	public static function send_data( $force = false ) {

		// don't trigger during AJAX Requests
		if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
			return;
		}

		// allow forcing of the send despite the interval
		if ( ! $force && ! apply_filters( 'llms_tracker_force_send', false ) ) {

			// only send data once a week
			$last_send = self::get_last_send_time();
			if ( $last_send && $last_send > apply_filters( 'llms_tracker_send_interval', strtotime( '-1 week' ) ) ) {
				return;
			}
		}

		// record a last send time
		update_option( 'llms_tracker_last_send_time', time() );

		$r = wp_remote_post( self::API_URL, array(
			// 'sslverify'   => false,
			'body'        => array(
				'data' => json_encode( LLMS_Data::get_data( 'tracker' ) ),
			),
			'cookies'     => array(),
			'headers'     => array(
				'user-agent' => 'LifterLMS_Tracker/' . md5( esc_url( home_url( '/' ) ) ) . ';',
			),
			'method'      => 'POST',
			'redirection' => 5,
			'timeout'     => 60,
		) );

		if ( ! is_wp_error( $r ) ) {

			return json_decode( $r['body'], true );

		} else {

			return $r;

		}

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: