PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 9.4
Jetpack – WP Security, Backup, Speed, & Growth v9.4
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 / _inc / lib / debugger.php

debugger.php in Jetpack – WP Security, Backup, Speed, & Growth 9.4, at _inc/lib/debugger.php

25 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Loading the various functions used for Jetpack Debugging.
4 *
5 * @package Jetpack.
6 */
7
8 /* Jetpack Connection Testing Framework */
9 require_once 'debugger/class-jetpack-cxn-test-base.php';
10 /* Jetpack Connection Tests */
11 require_once 'debugger/class-jetpack-cxn-tests.php';
12 /* Jetpack Debug Data */
13 require_once 'debugger/class-jetpack-debug-data.php';
14 /* The "In-Plugin Debugger" admin page. */
15 require_once 'debugger/class-jetpack-debugger.php';
16 /* General Debugging Functions */
17 require_once 'debugger/debug-functions.php';
18
19 add_filter( 'debug_information', array( 'Jetpack_Debug_Data', 'core_debug_data' ) );
20 add_filter( 'site_status_tests', 'jetpack_debugger_site_status_tests' );
21 add_action( 'wp_ajax_health-check-jetpack-local_testing_suite', 'jetpack_debugger_ajax_local_testing_suite' );
22 add_action( 'admin_enqueue_scripts', 'jetpack_debugger_enqueue_site_health_scripts' );
23 add_action( 'wp_ajax_jetpack_sync_progress_check', 'jetpack_debugger_sync_progress_ajax' );
24 add_action( 'wp_ajax_jetpack_debugger_full_sync_start', 'jetpack_debugger_full_sync_start' );
25