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 | return Jetpack_Admin::init()->get_modules(); |
||
12 | } |
||
13 | |||
14 | public static function get_taxonomies() { |
||
15 | global $wp_taxonomies; |
||
16 | |||
17 | return $wp_taxonomies; |
||
18 | } |
||
19 | |||
20 | public static function get_post_types() { |
||
25 | |||
26 | /** |
||
27 | * Finds out if a site is using a version control system. |
||
28 | * @return bool |
||
29 | **/ |
||
30 | public static function is_version_controlled() { |
||
31 | |||
32 | if ( ! class_exists( 'WP_Automatic_Updater' ) ) { |
||
33 | require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ); |
||
34 | } |
||
35 | $updater = new WP_Automatic_Updater(); |
||
36 | return (bool) strval( $updater->is_vcs_checkout( $context = ABSPATH ) ); |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Returns true if the site has file write access false otherwise. |
||
41 | * @return bool |
||
42 | **/ |
||
43 | public static function file_system_write_access() { |
||
44 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
||
45 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
||
46 | } |
||
47 | |||
48 | require_once( ABSPATH . 'wp-admin/includes/template.php' ); |
||
49 | |||
50 | $filesystem_method = get_filesystem_method(); |
||
51 | if ( $filesystem_method === 'direct' ) { |
||
52 | return true; |
||
53 | } |
||
54 | |||
55 | ob_start(); |
||
56 | $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); |
||
57 | ob_end_clean(); |
||
58 | if ( $filesystem_credentials_are_stored ) { |
||
59 | return true; |
||
60 | } |
||
61 | |||
62 | return false; |
||
63 | } |
||
64 | |||
65 | public static function home_url() { |
||
68 | |||
69 | public static function site_url() { |
||
72 | |||
73 | public static function main_network_site_url() { |
||
76 | |||
77 | public static function preserve_scheme( $option, $current_url ) { |
||
90 | |||
91 | public static function get_plugins() { |
||
98 | |||
99 | public static function wp_version() { |
||
100 | global $wp_version; |
||
103 | } |