summaryrefslogtreecommitdiff
blob: 97870d5216a6fd6a89993dfab1ac9c81ee8e9f6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Jetpack Connection Status.
 *
 * Filters the Connection Status API response
 *
 * @package jetpack
 */

/**
 * Filters the Connection Status API response
 */
class Jetpack_Connection_Status {

	/**
	 * Initialize the main hooks.
	 */
	public static function init() {
		add_filter( 'jetpack_connection_status', array( __CLASS__, 'filter_connection_status' ) );
	}

	/**
	 * Filters the connection status API response of the Connection package and modifies isActive value expected by the UI.
	 *
	 * @param array $status An array containing the connection status data.
	 */
	public static function filter_connection_status( $status ) {

		$status['isActive'] = Jetpack::is_connection_ready();

		return $status;
	}

}