1 | <?php |
||
3 | class Jetpack_Heartbeat { |
||
4 | |||
5 | /** |
||
6 | * Holds the singleton instance of this class |
||
7 | * |
||
8 | * @since 2.3.3 |
||
9 | * @var Jetpack_Heartbeat |
||
10 | */ |
||
11 | private static $instance = false; |
||
12 | |||
13 | private $cron_name = 'jetpack_v2_heartbeat'; |
||
14 | |||
15 | /** |
||
16 | * Singleton |
||
17 | * |
||
18 | * @since 2.3.3 |
||
19 | * @static |
||
20 | * @return Jetpack_Heartbeat |
||
21 | */ |
||
22 | public static function init() { |
||
29 | |||
30 | /** |
||
31 | * Constructor for singleton |
||
32 | * |
||
33 | * @since 2.3.3 |
||
34 | * @return Jetpack_Heartbeat |
||
|
|||
35 | */ |
||
36 | private function __construct() { |
||
54 | |||
55 | /** |
||
56 | * Method that gets executed on the wp-cron call |
||
57 | * |
||
58 | * @since 2.3.3 |
||
59 | * @global string $wp_version |
||
60 | */ |
||
61 | public function cron_exec() { |
||
101 | |||
102 | public static function generate_stats_array( $prefix = '' ) { |
||
103 | $return = array(); |
||
104 | |||
105 | $return["{$prefix}version"] = JETPACK__VERSION; |
||
106 | $return["{$prefix}wp-version"] = get_bloginfo( 'version' ); |
||
107 | $return["{$prefix}php-version"] = PHP_VERSION; |
||
108 | $return["{$prefix}branch"] = floatval( JETPACK__VERSION ); |
||
109 | $return["{$prefix}wp-branch"] = floatval( get_bloginfo( 'version' ) ); |
||
110 | $return["{$prefix}php-branch"] = floatval( PHP_VERSION ); |
||
111 | $return["{$prefix}public"] = Jetpack_Options::get_option( 'public' ); |
||
112 | $return["{$prefix}ssl"] = Jetpack::permit_ssl(); |
||
113 | $return["{$prefix}is-https"] = is_ssl() ? 'https' : 'http'; |
||
114 | $return["{$prefix}language"] = get_bloginfo( 'language' ); |
||
115 | $return["{$prefix}charset"] = get_bloginfo( 'charset' ); |
||
116 | $return["{$prefix}is-multisite"] = is_multisite() ? 'multisite' : 'singlesite'; |
||
117 | $return["{$prefix}identitycrisis"] = Jetpack::check_identity_crisis( 1 ) ? 'yes' : 'no'; |
||
118 | $return["{$prefix}plugins"] = implode( ',', Jetpack::get_active_plugins() ); |
||
119 | |||
120 | $return["{$prefix}single-user-site"]= Jetpack::is_single_user_site(); |
||
121 | |||
122 | $return["{$prefix}manage-enabled"] = Jetpack::is_module_active( 'manage' ); |
||
123 | |||
124 | // is-multi-network can have three values, `single-site`, `single-network`, and `multi-network` |
||
125 | $return["{$prefix}is-multi-network"] = 'single-site'; |
||
126 | if ( is_multisite() ) { |
||
127 | $return["{$prefix}is-multi-network"] = Jetpack::is_multi_network() ? 'multi-network' : 'single-network'; |
||
128 | } |
||
129 | |||
130 | if ( ! empty( $_SERVER['SERVER_ADDR'] ) || ! empty( $_SERVER['LOCAL_ADDR'] ) ) { |
||
131 | $ip = ! empty( $_SERVER['SERVER_ADDR'] ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR']; |
||
132 | $ip_arr = array_map( 'intval', explode( '.', $ip ) ); |
||
133 | if ( 4 == count( $ip_arr ) ) { |
||
134 | $return["{$prefix}ip-2-octets"] = implode( '.', array_slice( $ip_arr, 0, 2 ) ); |
||
135 | } |
||
136 | } |
||
137 | |||
138 | foreach ( Jetpack::get_available_modules() as $slug ) { |
||
139 | $return["{$prefix}module-{$slug}"] = Jetpack::is_module_active( $slug ) ? 'on' : 'off'; |
||
140 | } |
||
141 | |||
142 | require_once dirname(__FILE__).'/sync/class.jetpack-sync-wp-replicastore.php'; |
||
143 | $store = new Jetpack_Sync_WP_Replicastore(); |
||
144 | $return["{$prefix}sync-checksum"] = json_encode( $store->checksum_all() ); |
||
145 | |||
146 | return $return; |
||
147 | } |
||
148 | |||
149 | public static function jetpack_xmlrpc_methods( $methods ) { |
||
153 | |||
154 | public function deactivate() { |
||
163 | |||
164 | } |
||
165 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.