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 / db.copy.php

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

29 lines 958 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Performance Lab - SQLite module (Drop-in)
4 * Description: Performance plugin from the WordPress Performance Team, which is a collection of standalone performance modules.
5 * Version: 1.8.0
6 * Author: WordPress Performance Team
7 * Author URI: https://make.wordpress.org/performance/
8 *
9 * This file is auto-generated and copied from the performance-lab plugin.
10 * Please don't edit this file directly.
11 *
12 * @package performance-lab
13 */
14
15 define( 'PERFLAB_SQLITE_DB_DROPIN_VERSION', '1.8.0' );
16
17 // Bail early if the SQLite implementation was not located in the performance-lab plugin.
18 if ( ! file_exists( '{SQLITE_IMPLEMENTATION_FOLDER_PATH}/wp-includes/sqlite/db.php' ) ) {
19 return;
20 }
21
22 // Define SQLite constant.
23 if ( ! defined( 'DATABASE_TYPE' ) ) {
24 define( 'DATABASE_TYPE', 'sqlite' );
25 }
26
27 // Require the implementation from the performance-lab plugin.
28 require_once '{SQLITE_IMPLEMENTATION_FOLDER_PATH}/wp-includes/sqlite/db.php';
29