forked from wpmudev/cloner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloner.php
executable file
·212 lines (160 loc) · 6.58 KB
/
cloner.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
<?php
/*
Plugin Name: Cloner
Plugin URI: https://premium.wpmudev.org/project/cloner
Description: Clone sites in a network installation
Author: WPMU DEV
Author URI: http://premium.wpmudev.org/
Version: 1.7.5
Network: true
Text Domain: wpmudev-cloner
Domain Path: lang
WDP ID: 910773
*/
/*
Copyright 2007-2014 Incsub (http://incsub.com)
Author – Ignacio Cruz (igmoweb)
Contributors – Vladislav Bailovic
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License (Version 2 – GPLv2) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
class WPMUDEV_Cloner {
private static $instance = null;
public static function get_instance() {
if ( ! self::$instance )
self::$instance = new self();
return self::$instance;
}
public function __construct() {
$this->set_constants();
$this->includes();
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
add_action( 'init', array( $this, 'init_plugin' ) );
add_action( 'init', array( $this, 'maybe_upgrade' ) );
add_action( 'network_admin_notices', array( $this, 'display_installation_admin_notice' ) );
add_filter( 'copier_set_copier_args', array( $this, 'set_copier_args' ), 10, 3 );
add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_link' ), 40 );
if ( is_network_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
require_once( WPMUDEV_CLONER_PLUGIN_DIR . 'admin/cloner-admin-settings.php' );
add_action( 'plugins_loaded', array( 'WPMUDEV_Cloner_Admin_Settings', 'get_instance' ) );
require_once( WPMUDEV_CLONER_PLUGIN_DIR . 'admin/cloner-admin-clone-site.php' );
add_action( 'plugins_loaded', array( 'WPMUDEV_Cloner_Admin_Clone_Site', 'get_instance' ) );
}
if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
require_once( WPMUDEV_CLONER_PLUGIN_DIR . 'admin/ajax.php' );
}
private function set_constants() {
if ( ! defined( 'WPMUDEV_CLONER_PLUGIN_DIR' ) )
define( 'WPMUDEV_CLONER_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
if ( ! defined( 'WPMUDEV_CLONER_PLUGIN_URL' ) )
define( 'WPMUDEV_CLONER_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
if ( ! defined( 'WPMUDEV_CLONER_LANG_DOMAIN' ) )
define( 'WPMUDEV_CLONER_LANG_DOMAIN', 'wpmudev-cloner' );
//Define the same language domain for the copier classes.
if ( ! defined( 'WPMUDEV_COPIER_LANG_DOMAIN' ) )
define( 'WPMUDEV_COPIER_LANG_DOMAIN', 'wpmudev-cloner' );
if ( ! defined( 'WPMUDEV_CLONER_VERSION' ) )
define( 'WPMUDEV_CLONER_VERSION', '1.7.5' );
}
private function includes() {
include_once( WPMUDEV_CLONER_PLUGIN_DIR . 'integration/integration.php' );
include_once( WPMUDEV_CLONER_PLUGIN_DIR . 'copier/copier.php' );
include_once( WPMUDEV_CLONER_PLUGIN_DIR . 'copier-filters.php' );
include_once( WPMUDEV_CLONER_PLUGIN_DIR . 'helpers/general.php' );
include_once( WPMUDEV_CLONER_PLUGIN_DIR . 'helpers/settings.php' );
//load dashboard notice
global $wpmudev_notices;
$wpmudev_notices[] = array( 'id'=> 910773, 'name'=> 'Cloner', 'screens' => array( 'admin_page_clone_site-network', 'settings_page_cloner-network' ) );
include_once( WPMUDEV_CLONER_PLUGIN_DIR . 'externals/wpmudev-dash-notification.php' );
}
public function load_plugin_textdomain() {
$domain = WPMUDEV_CLONER_LANG_DOMAIN;
$locale = apply_filters( 'plugin_locale', get_locale(), $domain );
load_textdomain( $domain, trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
load_plugin_textdomain( $domain, false, basename( WPMUDEV_CLONER_PLUGIN_DIR ) . '/lang/' );
}
public function init_plugin() {
if ( is_network_admin() && isset( $_GET['cloner_dismiss_install_notice'] ) )
update_site_option( 'wpmudev_cloner_installation_notice_done', true );
}
public function display_installation_admin_notice() {
if ( is_super_admin() && ! get_site_option( 'wpmudev_cloner_installation_notice_done' ) ) {
$dismiss_url = add_query_arg( 'cloner_dismiss_install_notice', 'true' );
?>
<div class="updated">
<p class="alignleft"><?php printf( __( 'Cloner has been successfully installed, it can be configured from <a href="%s">Settings » Cloner</a>', WPMUDEV_CLONER_LANG_DOMAIN ), network_admin_url( 'settings.php?page=cloner' ) ); ?></p>
<p class="alignright"><a href="<?php echo esc_url( $dismiss_url ); ?>" class="button-secondary"><?php _e( 'Dismiss', WPMUDEV_CLONER_LANG_DOMAIN ); ?></a></p>
<div class="clear"></div>
</div>
<?php
}
}
/**
* Remove arguments from copier based on Cloner Settings
*
* @param type $args
* @return type
*/
public function set_copier_args( $option, $destination_blog_id, $args ) {
if ( ! empty( $args ) ) {
// We don't want to mess with New Blog Templates
return $option;
}
$settings = wpmudev_cloner_get_settings();
$to_copy = $option['to_copy'];
foreach ( $to_copy as $to_copy_option => $value ) {
if ( ! in_array( $to_copy_option, $settings['to_copy'] ) && $to_copy_option != 'widgets' )
unset( $option['to_copy'][ $to_copy_option ] );
}
return $option;
}
public function maybe_upgrade() {
$current_version_saved = get_site_option( 'wpmudev_cloner_version', '1.1' );
if ( WPMUDEV_CLONER_VERSION === $current_version_saved)
return;
if ( version_compare( $current_version_saved, '1.2', '<' ) ) {
$settings = wpmudev_cloner_get_settings();
$settings['to_copy'][] = 'cpts';
wpmudev_cloner_update_settings( $settings );
}
update_site_option( 'wpmudev_cloner_version', WPMUDEV_CLONER_VERSION );
}
/**
* Add a "Clone Site" link in admin bar for Super Admins
*/
public function add_admin_bar_link() {
global $wp_admin_bar;
if ( ! current_user_can( 'manage_network' ) )
return;
if ( is_network_admin() )
return;
if ( ! cloner_is_blog_clonable( get_current_blog_id() ) )
return;
$url = network_admin_url( 'index.php' );
$url = add_query_arg(
array(
'page' => 'clone_site',
'blog_id' => get_current_blog_id()
),
$url
);
$wp_admin_bar->add_menu( array(
'parent' => 'site-name',
'id' => 'clone-site',
'title' => __( 'Clone Site', WPMUDEV_CLONER_LANG_DOMAIN ),
'href' => $url,
) );
}
}
function wpmudev_cloner() {
return WPMUDEV_Cloner::get_instance();
}
wpmudev_cloner();