PluginProbe
Database Reset / 3.21
Database Reset v3.21
2.3.2 3.0 3.0.1 3.0.2 3.1 3.15 3.16 3.17 3.18 3.19 3.20 3.21 3.22 3.23 3.24 3.25 trunk 1.0 1.2 1.2.1 1.2.2 1.3 1.4 2.0 2.1 All 27 releases
← All changes | wp-reset.php +27 -9 3.13.21 View file →
@@ -1,17 +1,32 @@
1 1 <?php
2 2 /*
3 -Plugin Name: WP Database Reset
4 -Plugin URI: https://wordpress.org/plugins/wordpress-database-reset/
5 -Description: Reset all or some WP database tables back to their original state.
6 -Version: 3.1
7 -Author: WebFactory Ltd
8 -Author URI: https://www.webfactoryltd.com/
9 -License: GNU General Public License
10 -Text-domain: wordpress-database-reset
3 + Plugin Name: WP Database Reset
4 + Plugin URI: https://wordpress.org/plugins/wordpress-database-reset/
5 + Description: Reset all or some WP database tables back to their original state.
6 + Version: 3.21
7 + Author: WebFactory Ltd
8 + Author URI: https://www.webfactoryltd.com/
9 + License: GNU General Public License
10 + Text-domain: wordpress-database-reset
11 +
12 + Copyright 2011 - 2022 WebFactory Ltd (email: support@webfactoryltd.com)
13 +
14 + This program is free software; you can redistribute it and/or modify
15 + it under the terms of the GNU General Public License, version 2, as
16 + published by the Free Software Foundation.
17 +
18 + This program is distributed in the hope that it will be useful,
19 + but WITHOUT ANY WARRANTY; without even the implied warranty of
20 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 + GNU General Public License for more details.
22 +
23 + You should have received a copy of the GNU General Public License
24 + along with this program; if not, write to the Free Software
25 + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
11 26 */
12 27
13 -define( 'DB_RESET_VERSION', '3.1' );
28 +define( 'DB_RESET_VERSION', '3.21' );
14 29 define( 'DB_RESET_PATH', dirname( __FILE__ ) );
15 30 define( 'DB_RESET_NAME', basename( DB_RESET_PATH ) );
16 31 define( 'DB_RESET_FILE', __FILE__ );
17 32 define( 'AUTOLOADER', DB_RESET_PATH . '/lib/class-plugin-autoloader.php' );
@@ -16,8 +31,11 @@
16 31 define( 'DB_RESET_FILE', __FILE__ );
17 32 define( 'AUTOLOADER', DB_RESET_PATH . '/lib/class-plugin-autoloader.php' );
18 33
19 34 require_once( DB_RESET_PATH . '/lib/helpers.php' );
35 +
36 +require_once dirname(__FILE__) . '/wf-flyout/wf-flyout.php';
37 +new wf_flyout(__FILE__);
20 38
21 39 register_activation_hook( __FILE__, 'db_reset_activate' );
22 40
23 41 load_plugin_textdomain( 'wordpress-database-reset' );