1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php /** * Plugins primary file, in charge of including all other dependencies. * * @package Health Check * * @wordpress-plugin * Plugin Name: Health Check & Troubleshooting * Plugin URI: https://wordpress.org/plugins/health-check/ * Description: Checks the health of your WordPress install. * Author: The WordPress.org community * Version: 1.4.5 * Author URI: https://wordpress.org/plugins/health-check/ * Text Domain: health-check */
// Check that the file is not accessed directly. if ( ! defined( 'ABSPATH' ) ) { die( 'We\'re sorry, but you can not directly access this file.' ); }
// Set the minimum PHP version WordPress supports. define( 'HEALTH_CHECK_PHP_MIN_VERSION', '5.2.4' );
// Set the lowest PHP version still receiving security updates. define( 'HEALTH_CHECK_PHP_SUPPORTED_VERSION', '5.6' );
// Set the PHP version WordPress recommends. define( 'HEALTH_CHECK_PHP_REC_VERSION', '7.2' );
// Set the minimum MySQL version WordPress supports. define( 'HEALTH_CHECK_MYSQL_MIN_VERSION', '5.0' );
// Set the MySQL version WordPress recommends. define( 'HEALTH_CHECK_MYSQL_REC_VERSION', '5.6' );
// Set the plugin version. define( 'HEALTH_CHECK_PLUGIN_VERSION', '1.4.5' );
// Set the plugin file. define( 'HEALTH_CHECK_PLUGIN_FILE', __FILE__ );
// Set the absolute path for the plugin. define( 'HEALTH_CHECK_PLUGIN_DIRECTORY', plugin_dir_path( __FILE__ ) );
// Set the plugin URL root. define( 'HEALTH_CHECK_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
// Set the current cURL version. define( 'HEALTH_CHECK_CURL_VERSION', '7.58' );
// Set the minimum cURL version that we've tested that core works with. define( 'HEALTH_CHECK_CURL_MIN_VERSION', '7.38' );
// Always include our compatibility file first. require_once( dirname( __FILE__ ) . '/includes/compat.php' );
// Include class-files used by our plugin. require_once( dirname( __FILE__ ) . '/includes/class-health-check.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-auto-updates.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-wp-cron.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-debug-data.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-loopback.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-troubleshoot.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-site-status.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-updates.php' ); require_once( dirname( __FILE__ ) . '/includes/class-health-check-dashboard-widget.php' );
// Tools section. require_once( dirname( __FILE__ ) . '/includes/tools/class-health-check-tool.php' ); require_once( dirname( __FILE__ ) . '/includes/tools/class-health-check-files-integrity.php' ); require_once( dirname( __FILE__ ) . '/includes/tools/class-health-check-mail-check.php' ); require_once( dirname( __FILE__ ) . '/includes/tools/class-health-check-plugin-compatibility.php' );
// Initialize our plugin. new Health_Check();
// Initialize the dashboard widget. new Health_Check_Dashboard_Widget();
// Setup up scheduled events. register_activation_hook( __FILE__, array( 'Health_Check', 'plugin_activation' ) ); register_deactivation_hook( __FILE__, array( 'Health_Check', 'plugin_deactivation' ) );
if ( defined( 'WP_CLI' ) && WP_CLI ) { require_once( dirname( __FILE__ ) . '/includes/class-health-check-wp-cli.php' ); }
|