PluginProbe
Performance Lab / 2.1.0
Performance Lab v2.1.0
trunk 1.0.0 1.0.0-beta.1 1.0.0-beta.2 1.0.0-beta.3 1.0.0-rc.1 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 2.6.1 2.7.0 2.8.0 All 44 releases
performance-lab / modules / database / sqlite / load.php

load.php in Performance Lab 2.1.0, at modules/database/sqlite/load.php

18 lines 403 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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