LicenseCheckTransient.php
881 Bytes
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
<?php
namespace ACP\Transient;
use AC\Expirable;
use AC\Storage;
class LicenseCheckTransient implements Expirable {
const CACHE_KEY = 'acp_periodic_license_check';
/**
* @var Storage\Timestamp
*/
protected $timestamp;
public function __construct( $network_only = false ) {
$this->timestamp = new Storage\Timestamp(
( new Storage\OptionFactory() )->create( self::CACHE_KEY, $network_only )
);
}
/**
* @param int|null $time
*
* @return bool
*/
public function is_expired( $time = null ) {
return $this->timestamp->is_expired( $time );
}
public function delete() {
$this->timestamp->delete();
}
/**
* @param int $expiration Time until expiration in seconds.
*
* @return bool
*/
public function save( $expiration ) {
// Always store timestamp before option data.
return $this->timestamp->save( time() + (int) $expiration );
}
}