V4301.php
1.51 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
<?php
namespace ACP\Plugin\Update;
use AC\Plugin\Update\V3201;
use AC\Storage;
use Exception;
class V4301 extends V3201 {
/**
* @throws Exception
*/
public function apply_update() {
$this->uppercase_class_files( ACP()->get_dir() . '/classes' );
$this->update_notice_preference_renewal();
}
protected function set_version() {
$this->version = '4.3.1';
}
/**
* @throws Exception
*/
private function update_notice_preference_renewal() {
$phase_key = 'cpac_hide_license_notice_phase';
$timeout_key = 'cpac_hide_license_notice_timeout';
foreach ( $this->get_users_by_meta_key( $phase_key ) as $user_id ) {
$phase = get_user_meta( $user_id, $phase_key, true );
$timeout = get_user_meta( $user_id, $timeout_key, true );
if ( ! $timeout ) {
$timeout = time();
}
switch ( $phase ) {
case '0':
$option = new Storage\Timestamp(
new Storage\UserMeta( 'ac_notice_dismiss_renewal_1', $user_id )
);
$option->save( time() + ( MONTH_IN_SECONDS * 3 ) );
break;
case '1':
$option = new Storage\Timestamp(
new Storage\UserMeta( 'ac_notice_dismiss_renewal_2', $user_id )
);
$option->save( time() + ( MONTH_IN_SECONDS * 3 ) );
break;
default: // completed or not set
$option = new Storage\Timestamp(
new Storage\UserMeta( 'ac_notice_dismiss_expired', $user_id )
);
$option->save( $timeout + ( MONTH_IN_SECONDS * 3 ) );
}
delete_user_meta( $user_id, $phase_key );
delete_user_meta( $user_id, $timeout_key );
}
}
}