Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
1 | <?php |
||
7 | class Jetpack_Sync_Functions { |
||
8 | |||
9 | public static function get_modules() { |
||
10 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-admin.php' ); |
||
11 | |||
12 | return Jetpack_Admin::init()->get_modules(); |
||
13 | } |
||
14 | |||
15 | public static function get_taxonomies() { |
||
16 | global $wp_taxonomies; |
||
17 | |||
18 | return $wp_taxonomies; |
||
19 | } |
||
20 | |||
21 | public static function get_post_types() { |
||
26 | |||
27 | public static function get_post_type_features() { |
||
28 | global $_wp_post_type_features; |
||
29 | |||
30 | return $_wp_post_type_features; |
||
31 | } |
||
32 | |||
33 | public static function rest_api_allowed_post_types() { |
||
37 | |||
38 | public static function rest_api_allowed_public_metadata() { |
||
42 | |||
43 | /** |
||
44 | * Finds out if a site is using a version control system. |
||
45 | * @return bool |
||
46 | **/ |
||
47 | public static function is_version_controlled() { |
||
48 | |||
49 | if ( ! class_exists( 'WP_Automatic_Updater' ) ) { |
||
50 | require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ); |
||
51 | } |
||
52 | $updater = new WP_Automatic_Updater(); |
||
53 | |||
54 | return (bool) strval( $updater->is_vcs_checkout( $context = ABSPATH ) ); |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * Returns true if the site has file write access false otherwise. |
||
59 | * @return bool |
||
60 | **/ |
||
61 | public static function file_system_write_access() { |
||
82 | |||
83 | public static function home_url() { |
||
86 | |||
87 | public static function site_url() { |
||
90 | |||
91 | public static function main_network_site_url() { |
||
94 | |||
95 | public static function preserve_scheme( $option, $url_function, $normalize_www = false ) { |
||
96 | $previous_https_value = isset( $_SERVER['HTTPS'] ) ? $_SERVER['HTTPS'] : null; |
||
142 | |||
143 | public static function get_plugins() { |
||
151 | |||
152 | public static function wp_version() { |
||
157 | } |
||
158 |