upgrade.php
12.2 KB
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
<?php
/**
* Upgrade
*
* Class largely based on code from ACF ( thanks to Elliot Condon )
*
* @since 2.0
*/
class CPAC_Upgrade {
/**
* CPAC class
*/
private $cpac;
public $update_prevented = false;
/**
* @since 2.0
*/
function __construct( $cpac ) {
$this->cpac = $cpac;
// Hooks
add_action( 'admin_init', array( $this, 'init' ) );
add_action( 'admin_menu', array( $this, 'admin_menu' ), 11 );
add_action( 'admin_head', array( $this, 'admin_head' ) );
add_action( 'wp_ajax_cpac_upgrade', array( $this, 'ajax_upgrade' ) );
if ( ! $this->allow_upgrade() ) {
add_action( 'cpac_messages', array( $this, 'proaddon_notice' ) );
}
}
/**
* Admin CSS to hide upgrade menu and place icon
*
* @since 2.2.7
*/
public function admin_head() {
?>
<style type="text/css">
#menu-settings a[href="options-general.php?page=cpac-upgrade"] { display: none; }
</style>
<?php
}
/**
* Display a notice about the deprecated pro add-on
*
* @since 2.2
*/
public function proaddon_notice() {
if ( apply_filters( 'cpac/suppress_proaddon_notice', false ) ) {
return;
}
?>
<div class="message error">
<p>
<?php _e( 'The pro add-on is no longer supported. Please login to your account and download Admin Columns Pro', 'codepress-admin-columns' ); ?>
<a href="https://www.admincolumns.com/pro-addon-information/" target="_blank"><?php _e( 'Learn more', 'codepress-admin-columns' ); ?></a>
</p>
</div>
<?php
}
/**
* Whether upgrading is allowed
*
* @since 2.1.5
*
* @return bool Whether plugin upgrading is allowed
*/
public function allow_upgrade() {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
return ! is_plugin_active( 'cac-addon-pro/cac-addon-pro.php' );
}
/**
* Add submenu page & scripts
*
* @since 2.0
*/
public function admin_menu() {
// Don't run on plugin activate
if ( isset( $_GET['action'] ) && 'activate-plugin' === $_GET['action'] ) {
return;
}
$upgrade_page = add_submenu_page( 'options-general.php', __( 'Upgrade', 'codepress-admin-columns' ), __( 'Upgrade', 'codepress-admin-columns' ), 'manage_options', 'cpac-upgrade', array( $this, 'start_upgrade' ) );
add_action( "admin_print_scripts-{$upgrade_page}", array( $this, 'admin_scripts' ) );
}
/**
* @since 2.0
*/
public function init() {
// @dev_only delete_option( 'cpac_version' ); set_transient( 'cpac_show_welcome', 'display' );
$version = get_option( 'cpac_version', false );
// Maybe version pre 2.0.0 was used
if ( ! $version && get_option( 'cpac_options' ) ) {
$version = '1.0.0';
}
// @dev_only if ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) echo "--------- CPAC DEBUG: START ---------<br/>\n" . $version . "<br/>\n" . CPAC_VERSION . "<br/>\n" . CPAC_UPGRADE_VERSION . "<br/>\n" . get_transient( 'cpac_show_welcome' ) . "<br/>\n" . "--------- CPAC DEBUG: END ---------<br/>\n";
// Maybe upgrade?
if ( $version ) {
// run every upgrade
if ( $version < CPAC_VERSION ) {
// nothing yet
}
// run only when updating from v1 to v2
if ( $version < '2.0.0' ) {
// show welcome screen
set_transient( 'cpac_show_welcome', 'display' );
}
// run only when database upgrade is needed
if ( $version < CPAC_UPGRADE_VERSION ) {
// display upgrade message on every page except upgrade page itself
if ( ! ( isset( $_REQUEST['page'] ) && 'cpac-upgrade' === $_REQUEST['page'] ) ) {
$message = __( 'Admin Columns', 'codepress-admin-columns' ) . ' v' . CPAC_VERSION . ' ' .
__( 'requires a database upgrade','codepress-admin-columns' ) .
' (<a class="thickbox" href="' . admin_url() .
'plugin-install.php?tab=plugin-information&plugin=codepress-admin-columns§ion=changelog&TB_iframe=true&width=640&height=559">' .
__( 'why?', 'codepress-admin-columns' ) .'</a>). ' .
__( "Please", 'codepress-admin-columns' ) .' <a href="http://codex.wordpress.org/Backing_Up_Your_Database">' .
__( "backup your database", 'codepress-admin-columns' ) .'</a>, '.
__( "then click", 'codepress-admin-columns' ) . ' <a href="' . admin_url() . 'options-general.php?page=cpac-upgrade" class="button">' .
__( "Upgrade Database", 'codepress-admin-columns' ) . '</a>';
cpac_admin_message( $message, 'updated' );
}
}
// run when NO upgrade is needed
elseif ( $version < CPAC_VERSION ) {
update_option( 'cpac_version', CPAC_VERSION );
}
}
// Fresh install
else {
update_option( 'cpac_version', CPAC_VERSION );
}
}
/**
* Init Upgrade Process
*
* @since 2.0
*/
public function ajax_upgrade() {
// vars
$return = array(
'status' => false,
'message' => "",
'next' => false,
);
$version = $_POST['version'];
// versions
switch ( $version ) {
case '2.0.0' :
$old_settings = get_option( 'cpac_options' );
// old settings
if ( ! empty( $old_settings['columns'] ) ) {
foreach ( $old_settings['columns'] as $storage_key => $old_columns ){
$columns = array();
if ( $old_columns ) {
// used to determine clone ID
$tax_count = null;
$post_count = null;
$meta_count = null;
foreach ( $old_columns as $old_column_name => $old_column_settings ) {
// only active columns
if ( isset( $old_column_settings['state'] ) && 'on' !== $old_column_settings['state'] )
continue;
// convert old settings to new
$settings = array_merge( $old_column_settings, array(
'type' => $old_column_name,
'clone' => ''
) );
// set name
$name = $old_column_name;
// convert: Users
if ( 'wp-users' == $storage_key ) {
// is user postcount?
if ( strpos( $old_column_name, 'column-user_postcount-' ) !== false ) {
$settings['type'] = 'column-user_postcount';
$settings['clone'] = $post_count;
$settings['post_type'] = str_replace( 'column-user_postcount-', '', $old_column_name );
$name = $post_count ? $settings['type'] . '-' . $settings['clone'] : $settings['type'];
$post_count++;
}
}
// convert: Media
elseif ( 'wp-media' == $storage_key ) {
if ( 'column-filesize' == $old_column_name ) {
$name = 'column-file_size';
$settings['type'] = $name;
}
// is EXIF data?
elseif ( strpos( $old_column_name, 'column-image-' ) !== false ) {
$name = 'column-exif_data';
$settings['type'] = $name;
$settings['exif_datatype'] = str_replace( 'column-image-', '', $old_column_name );
}
elseif ( 'column-file_paths' == $old_column_name ) {
$name = 'column-available_sizes';
$settings['type'] = $name;
}
}
// convert: Comments
elseif ( 'wp-comments' == $storage_key ) {
if ( 'column-author_author' == $old_column_name ) {
$name = 'column-author';
$settings['type'] = $name;
}
}
// convert: Posts
else {
if ( 'column-attachment-count' == $old_column_name ) {
$name = 'column-attachment_count';
$settings['type'] = $name;
}
elseif ( 'column-author-name' == $old_column_name ) {
$name = 'column-author_name';
$settings['type'] = $name;
$settings['display_author_as'] = $old_column_settings['display_as'];
}
elseif ( 'column-before-moretag' == $old_column_name ) {
$name = 'column-before_moretag';
$settings['type'] = $name;
}
elseif ( 'column-comment-count' == $old_column_name ) {
$name = 'column-comment_count';
$settings['type'] = $name;
$settings['comment_status'] = 'total_comments';
}
elseif ( 'column-comment-status' == $old_column_name ) {
$name = 'column-comment_status';
$settings['type'] = $name;
}
elseif ( 'column-ping-status' == $old_column_name ) {
$name = 'column-ping_status';
$settings['type'] = $name;
}
elseif ( 'column-page-slug' == $old_column_name ) {
$name = 'column-slug';
$settings['type'] = $name;
}
elseif ( 'column-page-template' == $old_column_name ) {
$name = 'column-page_template';
$settings['type'] = $name;
}
}
// convert: Applies to all storage types
// is taxonomy?
if ( strpos( $old_column_name, 'column-taxonomy-' ) !== false ) {
$settings['type'] = 'column-taxonomy';
$settings['clone'] = $tax_count;
$settings['taxonomy'] = str_replace( 'column-taxonomy-', '', $old_column_name );
$name = $tax_count ? $settings['type'] . '-' . $settings['clone'] : $settings['type'];
$tax_count++;
}
// is custom field?
elseif ( strpos( $old_column_name, 'column-meta-' ) !== false ) {
$settings['type'] = 'column-meta';
//$settings['clone'] = str_replace( 'column-meta-', '', $old_column_name );
$settings['clone'] = $meta_count;
$name = $meta_count ? $settings['type'] . '-' . $settings['clone'] : $settings['type'];
$meta_count++;
}
elseif ( 'column-word-count' == $old_column_name ) {
$name = 'column-word_count';
$settings['type'] = $name;
}
// add to column set
$columns[ $name ] = $settings;
// reorder so that active column are at the top of the pile.
$active = $inactive = array();
foreach ( $columns as $name => $_settings ) {
if ( 'on' === $_settings['state'] ) {
$active[ $name ] = $_settings;
}
else {
$inactive[ $name ] = $_settings;
}
}
$columns = array_merge( $active, $inactive );
}
// store column settings
if ( ! get_option( "cpac_options_{$storage_key}" ) ) {
update_option( "cpac_options_{$storage_key}", $columns );
}
}
}
}
// update version
update_option( 'cpac_version', $version );
$return = array(
'status' => true,
'message' => __( "Migrating Column Settings", 'codepress-admin-columns' ) . '...',
'next' => false,
);
break;
}
// return json
echo json_encode( $return );
die;
}
/*
* Starting points of the upgrade process
*
* @since 2.0
*/
public function start_upgrade() {
$version = get_option( 'cpac_version', '1.0.0' );
$next = false;
// list of starting points
if( $version < '2.0.0' ) {
$next = '2.0.0';
}
// Run upgrade?
if( $next ) : ?>
<script type="text/javascript">
run_upgrade("<?php echo $next; ?>");
</script>
<?php
// No update required
else : ?>
<p><?php _e( 'No Upgrade Required', 'codepress-admin-columns' ); ?></p>
<a href="<?php echo admin_url('options-general.php'); ?>?page=codepress-admin-columns&info"><?php _e( 'Return to welcome screen.', 'codepress-admin-columns' ); ?></a>
<?php
endif;
}
/**
* Scripts
*
* @since 2.0
*/
public function admin_scripts() {
wp_enqueue_script( 'cpac-upgrade', CPAC_URL . 'assets/js/upgrade.js', array( 'jquery' ), CPAC_VERSION );
// CSS
wp_enqueue_style( 'cpac-admin', CPAC_URL . 'assets/css/admin-column.css', array(), CPAC_VERSION, 'all' );
// javascript translations
wp_localize_script( 'cpac-upgrade', 'cpac_upgrade_i18n', array(
'complete' => __( 'Upgrade Complete!', 'codepress-admin-columns' ) . '</p><p><a href="' . admin_url('options-general.php') . '?page=codepress-admin-columns&info">' . __( 'Return to settings.', 'codepress-admin-columns' ) . "</a>" ,
'error' => __( 'Error', 'codepress-admin-columns' ),
'major_error' => __( 'Sorry. Something went wrong during the upgrade process. Please report this on the support forum.', 'codepress-admin-columns' )
));
}
}