UpdateCheckTransientHourly.php 676 Bytes
<?php

namespace ACP\Transient;

use AC\Expirable;
use AC\Storage;

class UpdateCheckTransientHourly implements Expirable {

	/**
	 * @var Storage\Timestamp
	 */
	protected $timestamp;

	public function __construct() {
		$this->timestamp = new Storage\Timestamp(
			new Storage\Option( 'acp_periodic_update_plugins_check_hourly' )
		);
	}

	/**
	 * @param int|null $time
	 *
	 * @return bool
	 */
	public function is_expired( $time = null ) {
		return $this->timestamp->is_expired( $time );
	}

	public function delete() {
		$this->timestamp->delete();
	}

	/**
	 * @return bool
	 */
	public function save() {
		return $this->timestamp->save( time() + HOUR_IN_SECONDS );
	}

}