PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 15.0
Jetpack – WP Security, Backup, Speed, & Growth v15.0
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / load-jetpack.php
load-jetpack.php
80 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Load all Jetpack files that do not get loaded via the autoloader.
4 *
5 * @package automattic/jetpack
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit( 0 );
10 }
11
12 /**
13 * Checks if the code debug mode turned on, and returns false if it is. When Jetpack is in
14 * code debug mode, it shouldn't use minified assets. Note that this filter is not being used
15 * in every place where assets are enqueued. The filter is added at priority 9 to be overridden
16 * by any default priority filter that runs after it.
17 *
18 * @since 6.2.0
19 *
20 * @return boolean
21 *
22 * @filter jetpack_should_use_minified_assets
23 */
24 function jetpack_should_use_minified_assets() {
25 return ! defined( 'SCRIPT_DEBUG' ) || ! SCRIPT_DEBUG;
26 }
27 add_filter( 'jetpack_should_use_minified_assets', 'jetpack_should_use_minified_assets', 9 );
28
29 // @todo: Abstract out the admin functions, and only include them if is_admin()
30 require_once JETPACK__PLUGIN_DIR . 'class.jetpack.php';
31 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-network.php';
32 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-client-server.php';
33 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-user-agent.php';
34 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-post-images.php';
35 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-heartbeat.php';
36 require_once JETPACK__PLUGIN_DIR . 'class.photon.php';
37 require_once JETPACK__PLUGIN_DIR . 'functions.photon.php';
38 require_once JETPACK__PLUGIN_DIR . 'functions.global.php';
39 require_once JETPACK__PLUGIN_DIR . 'functions.compat.php';
40 require_once JETPACK__PLUGIN_DIR . 'class-jetpack-gallery-settings.php';
41 require_once JETPACK__PLUGIN_DIR . 'functions.cookies.php';
42 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-autoupdate.php';
43 require_once JETPACK__PLUGIN_DIR . 'class.frame-nonce-preview.php';
44 require_once JETPACK__PLUGIN_DIR . 'modules/module-headings.php';
45 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-plan.php';
46 // Used by the API endpoints or used in an odd number of places.
47 require_once JETPACK__PLUGIN_DIR . 'modules/seo-tools/class-jetpack-seo-utils.php';
48 require_once JETPACK__PLUGIN_DIR . 'modules/seo-tools/class-jetpack-seo-titles.php';
49 require_once JETPACK__PLUGIN_DIR . 'modules/seo-tools/class-jetpack-seo-posts.php';
50 require_once JETPACK__PLUGIN_DIR . 'modules/verification-tools/verification-tools-utils.php';
51 require_once JETPACK__PLUGIN_DIR . 'modules/shortcodes/shortcode-utils.php'; // Shortcodes are often referenced in other modules, so making it available early.
52
53 require_once JETPACK__PLUGIN_DIR . 'class-jetpack-xmlrpc-methods.php';
54 Jetpack_XMLRPC_Methods::init();
55
56 require_once JETPACK__PLUGIN_DIR . 'class-jetpack-connection-status.php';
57 Jetpack_Connection_Status::init();
58
59 require_once JETPACK__PLUGIN_DIR . '_inc/lib/class-jetpack-recommendations.php';
60
61 if ( is_admin() ) {
62 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-admin.php';
63 require_once JETPACK__PLUGIN_DIR . '_inc/lib/debugger.php';
64 }
65
66 // Play nice with https://wp-cli.org/.
67 if ( defined( 'WP_CLI' ) && WP_CLI ) {
68 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-cli.php';
69 }
70
71 require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.core-rest-api-endpoints.php';
72 require_once JETPACK__PLUGIN_DIR . '_inc/blogging-prompts.php';
73
74 add_action( 'updating_jetpack_version', array( 'Jetpack', 'do_version_bump' ), 10, 2 );
75 add_filter( 'is_jetpack_site', '__return_true' );
76
77 require_once JETPACK__PLUGIN_DIR . '3rd-party/3rd-party.php';
78
79 Jetpack::init();
80