admin-pages
3 years ago
core-api
3 years ago
debugger
3 years ago
markdown
4 years ago
class-jetpack-ai-helper.php
3 years ago
class-jetpack-currencies.php
5 years ago
class-jetpack-google-drive-helper.php
3 years ago
class-jetpack-instagram-gallery-helper.php
3 years ago
class-jetpack-mapbox-helper.php
3 years ago
class-jetpack-podcast-feed-locator.php
5 years ago
class-jetpack-podcast-helper.php
3 years ago
class-jetpack-recommendations.php
4 years ago
class-jetpack-tweetstorm-helper.php
3 years ago
class-jetpack-wizard.php
5 years ago
class.color.php
4 years ago
class.core-rest-api-endpoints.php
3 years ago
class.jetpack-automatic-install-skin.php
4 years ago
class.jetpack-iframe-embed.php
4 years ago
class.jetpack-keyring-service-helper.php
4 years ago
class.jetpack-password-checker.php
3 years ago
class.jetpack-photon-image-sizes.php
3 years ago
class.jetpack-photon-image.php
4 years ago
class.jetpack-search-performance-logger.php
4 years ago
class.media-extractor.php
3 years ago
class.media-summary.php
3 years ago
class.media.php
3 years ago
components.php
3 years ago
debugger.php
4 years ago
functions.wp-notify.php
4 years ago
icalendar-reader.php
3 years ago
markdown.php
3 years ago
plans.php
4 years ago
plugins.php
4 years ago
tonesque.php
3 years ago
widgets.php
4 years ago
debugger.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Loading the various functions used for Jetpack Debugging. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | /* Jetpack Connection Testing Framework */ |
| 9 | require_once __DIR__ . '/debugger/class-jetpack-cxn-test-base.php'; |
| 10 | /* Jetpack Connection Tests */ |
| 11 | require_once __DIR__ . '/debugger/class-jetpack-cxn-tests.php'; |
| 12 | /* Jetpack Debug Data */ |
| 13 | require_once __DIR__ . '/debugger/class-jetpack-debug-data.php'; |
| 14 | /* The "In-Plugin Debugger" admin page. */ |
| 15 | require_once __DIR__ . '/debugger/class-jetpack-debugger.php'; |
| 16 | /* General Debugging Functions */ |
| 17 | require_once __DIR__ . '/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 |