File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 13
13
14
14
/**
15
15
* Add the db.php file in wp-content.
16
+ *
17
+ * When the plugin gets merged in wp-core, this is not to be ported.
16
18
*/
17
19
function sqlite_plugin_copy_db_file () {
18
20
$ destination = WP_CONTENT_DIR . '/db.php ' ;
@@ -33,6 +35,8 @@ function sqlite_plugin_copy_db_file() {
33
35
34
36
/**
35
37
* Delete the db.php file in wp-content.
38
+ *
39
+ * When the plugin gets merged in wp-core, this is not to be ported.
36
40
*/
37
41
function sqlite_plugin_remove_db_file () {
38
42
$ destination = WP_CONTENT_DIR . '/db.php ' ;
@@ -49,6 +53,8 @@ function sqlite_plugin_remove_db_file() {
49
53
50
54
/**
51
55
* Add admin notices.
56
+ *
57
+ * When the plugin gets merged in wp-core, this is not to be ported.
52
58
*/
53
59
function sqlite_plugin_admin_notice () {
54
60
// Check if the wp-content/db.php file exists.
@@ -76,6 +82,9 @@ function sqlite_plugin_admin_notice() {
76
82
/**
77
83
* Filter debug data in site-health screen.
78
84
*
85
+ * When the plugin gets merged in wp-core, these should be merged in src/wp-admin/includes/class-wp-debug-data.php
86
+ * See https://github.com/WordPress/wordpress-develop/pull/3220/files
87
+ *
79
88
* @param array $info The debug data.
80
89
*/
81
90
function sqlite_plugin_filter_debug_data ( $ info ) {
You can’t perform that action at this time.
0 commit comments