Plugin Directory

source: sqlite-database-integration/trunk/load.php

Last change on this file was 3491244, checked in by janjakes, 3 days ago

v2.2.20

  • Property svn:eol-style set to native
File size: 797 bytes
Line 
1<?php
2/**
3 * Plugin Name: SQLite Database Integration
4 * Description: SQLite database driver drop-in.
5 * Author: The WordPress Team
6 * Version: 2.2.20
7 * Requires PHP: 7.2
8 * Textdomain: sqlite-database-integration
9 *
10 * This feature plugin allows WordPress to use SQLite instead of MySQL as its database.
11 *
12 * @package wp-sqlite-integration
13 */
14
15/**
16 * Load the "SQLITE_DRIVER_VERSION" constant.
17 * This constant needs to be updated on plugin release!
18 */
19require_once __DIR__ . '/version.php';
20
21define( 'SQLITE_MAIN_FILE', __FILE__ );
22
23require_once __DIR__ . '/php-polyfills.php';
24require_once __DIR__ . '/admin-page.php';
25require_once __DIR__ . '/activate.php';
26require_once __DIR__ . '/deactivate.php';
27require_once __DIR__ . '/admin-notices.php';
28require_once __DIR__ . '/health-check.php';
Note: See TracBrowser for help on using the repository browser.