PluginProbe
Database Cleaner / 0.6.9
Database Cleaner v0.6.9
1.4.0 1.3.9 1.3.8 1.3.7 1.3.6 0.5.4 0.5.5 0.5.6 0.5.7 0.5.8 0.5.9 0.6.0 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.9 0.7.0 0.7.1 0.7.2 0.7.3 All 132 releases
database-cleaner / database-cleaner.php

database-cleaner.php in Database Cleaner 0.6.9, at database-cleaner.php

26 lines 796 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Database Cleaner & Optimizer (2022)
4 Plugin URI: https://meowapps.com
5 Description: The best Database Cleaner since 2022! Clean and optimize your DB, for real! Lot of features, handle oversized databases, built on latest WP and PHP evolutions.
6 Version: 0.6.9
7 Author: Jordy Meow
8 Author URI: https://meowapps.com
9 Text Domain: database-cleaner
10
11 Dual licensed under the MIT and GPL licenses:
12 http://www.opensource.org/licenses/mit-license.php
13 http://www.gnu.org/licenses/gpl.html
14 */
15
16 define( 'DBCLNR_VERSION', '0.6.9' );
17 define( 'DBCLNR_PREFIX', 'dbclnr' );
18 define( 'DBCLNR_DOMAIN', 'database-cleaner' );
19 define( 'DBCLNR_ENTRY', __FILE__ );
20 define( 'DBCLNR_PATH', dirname( __FILE__ ) );
21 define( 'DBCLNR_URL', plugin_dir_url( __FILE__ ) );
22
23 require_once( 'classes/init.php' );
24
25 ?>
26