/
home
/
sditechnicalteam
/
socialdigivlms.com
/
wp-content
/
plugins
/
tutor
/
cache
/
File Upload :
llllll
Current File: /home/sditechnicalteam/socialdigivlms.com/wp-content/plugins/tutor/cache/AbstractCache.php
<?php /** * Cache abstract for implementing by the derived class * * @package Tutor\Cache * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 2.0.6 */ namespace Tutor\Cache; /** * AbstractCache class * * @since 2.0.6 */ abstract class AbstractCache { /** * Cache key * * @return string */ abstract public function key(): string; /** * Cache time * * @return int */ abstract public function cache_time(): int; /** * Cache data * * @return array */ abstract public function cache_data(); /** * Set cache data * * @since 2.0.6 * @return void */ public function set_cache(): void { do_action( 'tutor_cache_before_' . $this->key(), $this->cache_data() ); set_transient( $this->key(), $this->cache_data(), $this->cache_time() ); do_action( 'tutor_cache_after_' . $this->key(), $this->cache_data() ); } /** * Get user data from cache * * @since 2.0.6 * @return object cache data */ public function get_cache() { $data = get_transient( $this->key() ); return $data; } /** * If cache don't have value or expired or not exists * will return false * * @since 2.0.6 * @return bool true on success, false on fail */ public function has_cache(): bool { return $this->get_cache() ? true : false; } /** * Delete cache * * @since 2.0.6 * @return void */ public function delete_cache(): void { delete_transient( $this->key() ); // Clear data after delete cache. if ( isset( $this->data ) ) { $this->data = ''; } } }
Copyright ©2k19 -
Hexid
|
Tex7ure