File "QuizAttempts.php"

Full Path: /home/dcqnetm/intuns/wp-content/plugins/tutor/cache/QuizAttempts.php
File size: 1 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Handle quiz attempt cache data
 *
 * @package  Tutor\Cache
 *
 * @author   Themeum
 *
 * @since    v2.0.6
 */

namespace Tutor\Cache;

use Tutor\Cache\AbstractCache;

if ( ! defined( 'ABSPATH' ) ) {
	return;
}

/**
 * User data caching
 * Get Set & check
 * 
 * @since    v2.0.6
 */
class QuizAttempts extends AbstractCache {

	/**
	 * Key for cache identifier
	 *
	 * @var string
	 *
	 * @since v2.0.6
	 */
	private const KEY = 'tutor_quiz_attempts_count';

	/**
	 * Cache expire time
	 *
	 * @var string
	 *
	 * @since v2.0.6
	 */
	private const HOUR_IN_SECONDS = 1800;

	/**
	 * Data for caching
	 *
	 * @var string
	 *
	 * @since v2.0.6
	 */
	public $data;

	/**
	 * Key
	 *
	 * @return string
	 */
	public function key(): string {
		return self::KEY;
	}

	/**
	 * Cache data
	 *
	 * @return object
	 */
	public function cache_data() {
		return $this->data;
	}

	/**
	 * Cache time
	 *
	 * @return int
	 */
	public function cache_time(): int {
		$cache_time = self::HOUR_IN_SECONDS;
		return $cache_time;
	}
}