forked from Automattic/Co-Authors-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade.php
55 lines (45 loc) · 1.56 KB
/
upgrade.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
<?php
function coauthors_plus_upgrade( $from ) {
// TODO: handle upgrade failures
if( $from < 2.0 ) coauthors_plus_upgrade_20();
// Update to the current global version
coauthors_plus_update_version(COAUTHORS_PLUS_VERSION);
}
/**
* Upgrade to 2.0
* Updates coauthors from old meta-based storage to taxonomy-based
*/
function coauthors_plus_upgrade_20 () {
global $coauthors_plus;
// Get all posts with meta_key _coauthor
$all_posts = get_posts(array('numberposts' => '-1'));
if(is_array($all_posts)) {
foreach($all_posts as $single_post) {
// reset execution time limit
set_time_limit( 60 );
// create new array
$coauthors = array();
// get author id -- try to use get_profile
$coauthor = get_user_by( 'id', (int)$single_post->post_author );
if ( is_object( $coauthor ) )
$coauthors[] = $coauthor->user_login;
// get coauthors id
$legacy_coauthors = get_post_meta($single_post->ID, '_coauthor');
if(is_array($legacy_coauthors)) {
//echo '<p>Has Legacy coauthors';
foreach($legacy_coauthors as $legacy_coauthor) {
$legacy_coauthor_login = get_user_by( 'id', (int)$legacy_coauthor );
if ( is_object( $legacy_coauthor_login ) ) $coauthors[] = $legacy_coauthor_login->user_login;
}
} else {
// No Legacy coauthors
}
$coauthors_plus->add_coauthors($single_post->ID, $coauthors);
}
}
coauthors_plus_update_version( '2.0' );
}
function coauthors_plus_update_version( $version ) {
global $coauthors_plus;
update_option($co_authors_plus->get_plugin_option_fullname('version'), $version);
}