class-wpml-upgrade-wpml-site-id.php
1.21 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
<?php
/**
* Upgrades the former option to the new one.
*/
class WPML_Upgrade_WPML_Site_ID implements IWPML_Upgrade_Command {
/**
* Runs the upgrade process.
*
* @return bool
*/
public function run() {
if ( $this->old_option_exists() ) {
$value_from_old_option = get_option( WPML_Site_ID::SITE_ID_KEY, null );
update_option( WPML_Site_ID::SITE_ID_KEY . ':' . WPML_Site_ID::SITE_SCOPES_GLOBAL, $value_from_old_option, false );
return delete_option( WPML_Site_ID::SITE_ID_KEY );
}
return true;
}
/**
* Checks has the old option.
*
* @return bool
*/
protected function old_option_exists() {
get_option( WPML_Site_ID::SITE_ID_KEY, null );
$notoptions = wp_cache_get( 'notoptions', 'options' );
return false === $notoptions || ! array_key_exists( WPML_Site_ID::SITE_ID_KEY, $notoptions );
}
/**
* Runs in admin pages.
*
* @return bool
*/
public function run_admin() {
return $this->run();
}
/**
* Unused.
*
* @return null
*/
public function run_ajax() {
return null;
}
/**
* Unused.
*
* @return null
*/
public function run_frontend() {
return null;
}
/**
* Unused.
*
* @return null
*/
public function get_results() {
return null;
}
}