Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 107

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 234

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 235

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 236

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 237

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 238

Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 239
* @link https://themeum.com * @since 2.0.6 */ namespace Tutor\Cache; use Tutor\Cache\AbstractCache; if ( ! defined( 'ABSPATH' ) ) { return; } /** * User data caching * Get Set & check * * @since 2.0.6 */ class QuizAttempts extends AbstractCache { /** * Key for cache identifier * * @var string * * @since 2.0.6 */ const KEY = 'tutor_quiz_attempts_count'; /** * Cache expire time * * @var string * * @since 2.0.6 */ const HOUR_IN_SECONDS = 1800; /** * Data for caching * * @var string * * @since 2.0.6 */ public $data; /** * Key * * @since 2.0.6 * @return string */ public function key(): string { return self::KEY; } /** * Cache data * * @since 2.0.6 * @return object */ public function cache_data() { return $this->data; } /** * Cache time * * @since 2.0.6 * @return int */ public function cache_time(): int { $cache_time = self::HOUR_IN_SECONDS; return $cache_time; } }