PluginProbe ʕ •ᴥ•ʔ
Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More / 1.5.16.1
Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More v1.5.16.1
1.5.16.1 1.2.48 1.2.50 1.2.52 1.2.6 1.2.8 1.3.0 1.3.10 1.3.12 1.3.14 1.3.16 1.3.18 1.3.2 1.3.20 1.3.22 1.3.24 1.3.26 1.3.28 1.3.30 1.3.32 1.3.34 1.3.36 1.3.38 1.3.4 1.3.40 1.3.40.1 1.3.6 1.3.8 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.7.1 1.4.7.2 1.5.0 1.5.1 1.5.10 1.5.10.1 1.5.10.2 1.5.11 1.5.11.1 1.5.11.2 1.5.12 1.5.13 1.5.13.1 1.5.13.2 1.5.13.3 1.5.14 1.5.15 1.5.16 1.5.2 1.5.2.1 1.5.3 1.5.3.1 1.5.4 1.5.5 1.5.5.1 1.5.6 1.5.6.1 1.5.7 1.5.7.1 1.5.8 1.5.8.1 1.5.9 trunk 0.4.6 0.5.0 0.5.1 0.5.10 0.5.12 0.5.14 0.5.16 0.5.18 0.5.2 0.5.20 0.5.22 0.5.24 0.5.26 0.5.28 0.5.30 0.5.32 0.5.34 0.5.4 0.5.6 0.5.8 1.1.0 1.1.10 1.1.12 1.1.14 1.1.16 1.1.18 1.1.2 1.1.20 1.1.22 1.1.24 1.1.26 1.1.28 1.1.30 1.1.32 1.1.34 1.1.4 1.1.6 1.1.8 1.2.0 1.2.10 1.2.12 1.2.14 1.2.16 1.2.18 1.2.2 1.2.20 1.2.22 1.2.24 1.2.26 1.2.28 1.2.30 1.2.32 1.2.34 1.2.36 1.2.38 1.2.4 1.2.40 1.2.42 1.2.44 1.2.46
duplicator / duplicator.php
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