duplicator
Last commit date
assets
2 months ago
classes
2 months ago
ctrls
7 months ago
installer
1 week ago
languages
2 months ago
lib
3 years ago
src
1 week ago
template
2 months ago
vendor
3 years ago
views
4 months ago
deactivation.php
1 year ago
define.php
1 week ago
duplicator-main.php
2 years ago
duplicator.php
1 week ago
helper.php
3 years ago
readme.txt
1 week ago
uninstall.php
1 year ago
duplicator.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Plugin Name: Duplicator |
| 5 | * Plugin URI: https://duplicator.com/ |
| 6 | * Description: Migrate and backup a copy of your WordPress files and database. Duplicate and move a site from one location to another quickly. |
| 7 | * Version: 1.5.16.1 |
| 8 | * Requires at least: 5.3 |
| 9 | * Tested up to: 7.0 |
| 10 | * Requires PHP: 7.4 |
| 11 | * Author: Duplicator |
| 12 | * Author URI: https://duplicator.com/ |
| 13 | * Network: true |
| 14 | * Text Domain: duplicator |
| 15 | * License: GPLv2 or later |
| 16 | * |
| 17 | * Copyright 2011-2022 Snapcreek LLC |
| 18 | * |
| 19 | * This program is free software; you can redistribute it and/or modify |
| 20 | * it under the terms of the GNU General Public License, version 2, as |
| 21 | * published by the Free Software Foundation. |
| 22 | * |
| 23 | * This program is distributed in the hope that it will be useful, |
| 24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 | * GNU General Public License for more details. |
| 27 | * |
| 28 | * You should have received a copy of the GNU General Public License |
| 29 | * along with this program; if not, write to the Free Software |
| 30 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 31 | */ |
| 32 | |
| 33 | defined('ABSPATH') || exit; |
| 34 | |
| 35 | // CHECK PHP VERSION |
| 36 | define('DUPLICATOR_LITE_PHP_MINIMUM_VERSION', '7.4'); |
| 37 | define('DUPLICATOR_LITE_PHP_SUGGESTED_VERSION', '7.4'); |
| 38 | require_once dirname(__FILE__) . "/src/Utils/DuplicatorPhpVersionCheck.php"; |
| 39 | if (DuplicatorPhpVersionCheck::check(DUPLICATOR_LITE_PHP_MINIMUM_VERSION, DUPLICATOR_LITE_PHP_SUGGESTED_VERSION) === false) { |
| 40 | return; |
| 41 | } |
| 42 | $currentPluginBootFile = __FILE__; |
| 43 | |
| 44 | require_once dirname(__FILE__) . '/duplicator-main.php'; |
| 45 |