| @@ -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.19 | |
| 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 - 2021 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.18' ); | |
| 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' ); |