This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
duplicator.php
254 lines (215 loc) · 10.9 KB
/
duplicator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
/*
Plugin Name: Duplicator
Plugin URI: http://www.lifeinthegrid.com/duplicator/
Description: Create a backup of your WordPress files and database. Duplicate and move an entire site from one location to another in a few steps. Create a full snapshot of your site at any point in time.
Version: 0.5.24
Author: LifeInTheGrid
Author URI: http://www.lifeinthegrid.com
Text Domain: wpduplicator
Domain Path: /lang
License: GPLv2 or later
*/
/* ================================================================================
Copyright 2011-2013 Cory Lamle
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
SOURCE CONTRIBUTORS:
Gaurav Aggarwal
Jonathan Foote
================================================================================ */
require_once("define.php");
if (is_admin() == true) {
require_once 'classes/logging.php';
require_once 'classes/utility.php';
require_once 'classes/ui.php';
require_once 'classes/settings.php';
require_once 'classes/server.php';
require_once 'classes/package.php';
require_once 'views/actions.php';
/* ACTIVATION
Only called when plugin is activated */
function duplicator_activate() {
global $wpdb;
//Only update database on version update
if (DUPLICATOR_VERSION != get_option("duplicator_version_plugin")) {
$table_name = $wpdb->prefix . "duplicator_packages";
//PRIMARY KEY must have 2 spaces before for dbDelta to work
$sql = "CREATE TABLE `{$table_name}` (
`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR(250) NOT NULL,
`hash` VARCHAR(50) NOT NULL,
`status` INT(11) NOT NULL,
`created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`owner` VARCHAR(60) NOT NULL,
`package` MEDIUMBLOB NOT NULL,
KEY `hash` (`hash`))";
require_once(DUPLICATOR_WPROOTPATH . 'wp-admin/includes/upgrade.php');
@dbDelta($sql);
}
//WordPress Options Hooks
update_option('duplicator_version_plugin', DUPLICATOR_VERSION);
//Setup All Directories
DUP_Util::InitSnapshotDirectory();
}
/* UPDATE
register_activation_hook is not called when a plugin is updated
so we need to use the following function */
function duplicator_update() {
if (DUPLICATOR_VERSION != get_option("duplicator_version_plugin")) {
duplicator_activate();
}
load_plugin_textdomain('wpduplicator', FALSE, dirname(plugin_basename(__FILE__)) . '/lang/');
}
/* DEACTIVATION / UNINSTALL
* Only called when plugin is deactivated.
* For uninstall see uninstall.php */
function duplicator_deactivate() {
//No actions needed yet
}
/* META LINK ADDONS
Adds links to the plugins manager page */
function duplicator_meta_links($links, $file) {
$plugin = plugin_basename(__FILE__);
// create link
if ($file == $plugin) {
$links[] = '<a href="admin.php?page=duplicator-help" title="' . __('Get Help', 'wpduplicator') . '" >' . __('Help', 'wpduplicator') . '</a>';
$links[] = '<a href="admin.php?page=duplicator-about" title="' . __('Support the Plugin', 'wpduplicator') . '">' . __('About', 'wpduplicator') . '</a>';
return $links;
}
return $links;
}
//HOOKS
register_activation_hook(__FILE__, 'duplicator_activate');
register_deactivation_hook(__FILE__, 'duplicator_deactivate');
//ACTIONS
add_action('plugins_loaded', 'duplicator_update');
add_action('admin_init', 'duplicator_init');
add_action('admin_menu', 'duplicator_menu');
add_action('wp_ajax_duplicator_package_scan', 'duplicator_package_scan');
add_action('wp_ajax_duplicator_package_build', 'duplicator_package_build');
add_action('wp_ajax_duplicator_package_delete', 'duplicator_package_delete');
add_action('wp_ajax_duplicator_package_report', 'duplicator_package_report');
add_action('wp_ajax_DUP_UI_SaveViewStateByPost', array('DUP_UI', 'SaveViewStateByPost'));
add_action('admin_notices', array('DUP_UI', 'ShowReservedFilesNotice'));
add_action('plugins_loaded', 'duplicator_wpfront_integrate');
//FILTERS
add_filter('plugin_action_links', 'duplicator_manage_link', 10, 2);
add_filter('plugin_row_meta', 'duplicator_meta_links', 10, 2);
function duplicator_wpfront_integrate() {
if (DUP_Settings::Get('wpfront_integrate')) {
do_action('wpfront_user_role_editor_duplicator_init', array('export', 'manage_options', 'read'));
}
}
/**
* DUPLICATOR_INIT
* Init routines */
function duplicator_init() {
/* CSS */
wp_register_style('dup-jquery-ui', DUPLICATOR_PLUGIN_URL . 'assets/css/jquery-ui.css', null, "1.11.2");
wp_register_style('dup-font-awesome', DUPLICATOR_PLUGIN_URL . 'assets/css/font-awesome.min.css', null, '4.1.0');
wp_register_style('dup-plugin-style', DUPLICATOR_PLUGIN_URL . 'assets/css/style.css', null, DUPLICATOR_VERSION);
/* JS */
wp_register_script('dup-parsley', DUPLICATOR_PLUGIN_URL . 'assets/js/parsley-standalone.min.js', array('jquery'), '1.1.18');
}
//PAGE VIEWS
function duplicator_get_menu() {
$current_page = isset($_REQUEST['page']) ? esc_html($_REQUEST['page']) : 'duplicator';
switch ($current_page) {
case 'duplicator': include('views/packages/controller.php');
break;
case 'duplicator-settings': include('views/settings/controller.php');
break;
case 'duplicator-tools': include('views/tools/controller.php');
break;
case 'duplicator-help': include('views/help/help.php');
break;
case 'duplicator-about': include('views/help/about.php');
break;
case 'duplicator-gopro': include('views/help/gopro.php');
break;
}
}
/**
* DUPLICATOR_MENU
* Loads the menu item into the WP tools section and queues the actions for only this plugin */
function duplicator_menu() {
$wpfront_caps_translator = 'wpfront_user_role_editor_duplicator_translate_capability';
//Main Menu
$perms = 'export';
$perms = apply_filters($wpfront_caps_translator, $perms);
$main_menu = add_menu_page('Duplicator Plugin', 'Duplicator', $perms, 'duplicator', 'duplicator_get_menu', plugins_url('duplicator/assets/img/create.png'));
$perms = 'export';
$perms = apply_filters($wpfront_caps_translator, $perms);
$page_packages = add_submenu_page('duplicator', __('Packages', 'wpduplicator'), __('Packages', 'wpduplicator'), $perms, 'duplicator', 'duplicator_get_menu');
$perms = 'manage_options';
$perms = apply_filters($wpfront_caps_translator, $perms);
$page_settings = add_submenu_page('duplicator', __('Settings', 'wpduplicator'), __('Settings', 'wpduplicator'), $perms, 'duplicator-settings', 'duplicator_get_menu');
$perms = 'manage_options';
$perms = apply_filters($wpfront_caps_translator, $perms);
$page_tools = add_submenu_page('duplicator', __('Tools', 'wpduplicator'), __('Tools', 'wpduplicator'), $perms, 'duplicator-tools', 'duplicator_get_menu');
$perms = 'manage_options';
$perms = apply_filters($wpfront_caps_translator, $perms);
$page_help = add_submenu_page('duplicator', DUP_Util::__('Help'), DUP_Util::__('Help'), $perms, 'duplicator-help', 'duplicator_get_menu');
$perms = 'manage_options';
$perms = apply_filters($wpfront_caps_translator, $perms);
$page_about = add_submenu_page('duplicator', DUP_Util::__('About'), DUP_Util::__('About'), $perms, 'duplicator-about', 'duplicator_get_menu');
$perms = 'manage_options';
$go_pro_link = '<span style="color:#f18500">' . DUP_Util::__('Go Pro!') . '</span>';
$perms = apply_filters($wpfront_caps_translator, $perms);
$page_gopro = add_submenu_page('duplicator', $go_pro_link, $go_pro_link, $perms, 'duplicator-gopro', 'duplicator_get_menu');
//Apply Scripts
add_action('admin_print_scripts-' . $page_packages, 'duplicator_scripts');
add_action('admin_print_scripts-' . $page_settings, 'duplicator_scripts');
add_action('admin_print_scripts-' . $page_help, 'duplicator_scripts');
add_action('admin_print_scripts-' . $page_tools, 'duplicator_scripts');
add_action('admin_print_scripts-' . $page_about, 'duplicator_scripts');
add_action('admin_print_scripts-' . $page_gopro, 'duplicator_scripts');
//Apply Styles
add_action('admin_print_styles-' . $page_packages, 'duplicator_styles');
add_action('admin_print_styles-' . $page_settings, 'duplicator_styles');
add_action('admin_print_styles-' . $page_help, 'duplicator_styles');
add_action('admin_print_styles-' . $page_tools, 'duplicator_styles');
add_action('admin_print_styles-' . $page_about, 'duplicator_styles');
add_action('admin_print_styles-' . $page_gopro, 'duplicator_styles');
}
/**
* DUPLICATOR_SCRIPTS
* Loads the required javascript libs only for this plugin */
function duplicator_scripts() {
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-progressbar');
wp_enqueue_script('dup-parsley');
}
/**
* DUPLICATOR_STYLES
* Loads the required css links only for this plugin */
function duplicator_styles() {
wp_enqueue_style('dup-jquery-ui');
wp_enqueue_style('dup-font-awesome');
wp_enqueue_style('dup-plugin-style');
}
/**
* DUPLICATOR_MANAGE_LINK
* Adds the manage link in the plugins list */
function duplicator_manage_link($links, $file) {
static $this_plugin;
if (!$this_plugin)
$this_plugin = plugin_basename(__FILE__);
if ($file == $this_plugin) {
$settings_link = '<a href="admin.php?page=duplicator">' . __("Manage", 'wpduplicator') . '</a>';
array_unshift($links, $settings_link);
}
return $links;
}
}
?>