🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-16 09:59:29 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
jetpack
📍 /home/therahul/thedasstores.com/wp-content/plugins/jetpack
🔄 Refresh
✏️
Editing: class-jetpack-connection-status.php
Writable
<?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; } }
💾 Save Changes
❌ Cancel