Conditions | 14 |
Paths | 864 |
Total Lines | 52 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
112 | public static function generate_stats_array( $prefix = '' ) { |
||
113 | $return = array(); |
||
114 | |||
115 | $return[ "{$prefix}version" ] = JETPACK__VERSION; |
||
116 | $return[ "{$prefix}wp-version" ] = get_bloginfo( 'version' ); |
||
117 | $return[ "{$prefix}php-version" ] = PHP_VERSION; |
||
118 | $return[ "{$prefix}branch" ] = floatval( JETPACK__VERSION ); |
||
119 | $return[ "{$prefix}wp-branch" ] = floatval( get_bloginfo( 'version' ) ); |
||
120 | $return[ "{$prefix}php-branch" ] = floatval( PHP_VERSION ); |
||
121 | $return[ "{$prefix}public" ] = Jetpack_Options::get_option( 'public' ); |
||
122 | $return[ "{$prefix}ssl" ] = Jetpack::permit_ssl(); |
||
123 | $return[ "{$prefix}is-https" ] = is_ssl() ? 'https' : 'http'; |
||
124 | $return[ "{$prefix}language" ] = get_bloginfo( 'language' ); |
||
125 | $return[ "{$prefix}charset" ] = get_bloginfo( 'charset' ); |
||
126 | $return[ "{$prefix}is-multisite" ] = is_multisite() ? 'multisite' : 'singlesite'; |
||
127 | $return[ "{$prefix}identitycrisis" ] = Jetpack::check_identity_crisis() ? 'yes' : 'no'; |
||
128 | $return[ "{$prefix}plugins" ] = implode( ',', Jetpack::get_active_plugins() ); |
||
129 | if ( function_exists( 'get_mu_plugins' ) ) { |
||
130 | $return[ "{$prefix}mu-plugins" ] = implode( ',', array_keys( get_mu_plugins() ) ); |
||
131 | } |
||
132 | $return[ "{$prefix}manage-enabled" ] = true; |
||
133 | |||
134 | $xmlrpc_errors = Jetpack_Options::get_option( 'xmlrpc_errors', array() ); |
||
135 | if ( $xmlrpc_errors ) { |
||
136 | $return[ "{$prefix}xmlrpc-errors" ] = implode( ',', array_keys( $xmlrpc_errors ) ); |
||
137 | Jetpack_Options::delete_option( 'xmlrpc_errors' ); |
||
138 | } |
||
139 | |||
140 | // Missing the connection owner? |
||
141 | $connection_manager = new Manager(); |
||
142 | $return[ "{$prefix}missing-owner" ] = $connection_manager->is_missing_connection_owner(); |
||
143 | |||
144 | // is-multi-network can have three values, `single-site`, `single-network`, and `multi-network`. |
||
145 | $return[ "{$prefix}is-multi-network" ] = 'single-site'; |
||
146 | if ( is_multisite() ) { |
||
147 | $return[ "{$prefix}is-multi-network" ] = Jetpack::is_multi_network() ? 'multi-network' : 'single-network'; |
||
148 | } |
||
149 | |||
150 | if ( ! empty( $_SERVER['SERVER_ADDR'] ) || ! empty( $_SERVER['LOCAL_ADDR'] ) ) { |
||
151 | $ip = ! empty( $_SERVER['SERVER_ADDR'] ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR']; |
||
152 | $ip_arr = array_map( 'intval', explode( '.', $ip ) ); |
||
153 | if ( 4 === count( $ip_arr ) ) { |
||
154 | $return[ "{$prefix}ip-2-octets" ] = implode( '.', array_slice( $ip_arr, 0, 2 ) ); |
||
155 | } |
||
156 | } |
||
157 | |||
158 | foreach ( Jetpack::get_available_modules() as $slug ) { |
||
159 | $return[ "{$prefix}module-{$slug}" ] = Jetpack::is_module_active( $slug ) ? 'on' : 'off'; |
||
160 | } |
||
161 | |||
162 | return $return; |
||
163 | } |
||
164 | |||
189 |
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.