| 1 |
<?php |
| 2 |
/** |
| 3 |
* Module Name: SQLite Integration |
| 4 |
* Description: Use an SQLite database instead of MySQL. |
| 5 |
* Experimental: Yes |
| 6 |
* |
| 7 |
* @package performance-lab |
| 8 |
* @since 1.8.0 |
| 9 |
*/ |
| 10 |
|
| 11 |
// Do not load the code if it is already loaded through another means. |
| 12 |
if ( function_exists( 'perflab_sqlite_plugin_admin_notice' ) ) { |
| 13 |
return; |
| 14 |
} |
| 15 |
|
| 16 |
require_once __DIR__ . '/admin.php'; |
| 17 |
require_once __DIR__ . '/site-health.php'; |
| 18 |
|