PluginProbe
SQLite Database Integration / 3.0.1
SQLite Database Integration v3.0.1
3.0.1 trunk 2.1.13 2.1.14 2.1.15 2.1.16 2.2.0 2.2.1 2.2.10 2.2.11 2.2.12 2.2.13 2.2.14 2.2.15 2.2.16 2.2.17 2.2.18 2.2.19 2.2.2 2.2.20 2.2.21 2.2.22 2.2.23 2.2.3 2.2.4 All 31 releases
sqlite-database-integration / load.php

load.php in SQLite Database Integration 3.0.1, at load.php

30 lines 883 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: SQLite Database Integration
4 * Description: SQLite database driver drop-in.
5 * Author: The WordPress Team
6 * Version: 3.0.1
7 * Requires PHP: 7.2
8 * Network: true
9 * License: GPL-2.0-or-later
10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11 * Textdomain: sqlite-database-integration
12 *
13 * This feature plugin allows WordPress to use SQLite instead of MySQL as its database.
14 */
15
16 /**
17 * Load the "SQLITE_DRIVER_VERSION" constant.
18 * This constant needs to be updated on plugin release!
19 */
20 require_once __DIR__ . '/wp-includes/database/version.php';
21
22 define( 'SQLITE_MAIN_FILE', __FILE__ );
23
24 require_once __DIR__ . '/capabilities.php';
25 require_once __DIR__ . '/admin-page.php';
26 require_once __DIR__ . '/activate.php';
27 require_once __DIR__ . '/deactivate.php';
28 require_once __DIR__ . '/admin-notices.php';
29 require_once __DIR__ . '/health-check.php';
30