PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
update-urls
/
lite
/
includes
<?php namespace Kaizencoders\Update_Urls; /** * Class Cache * * @since 1.2 */ class Cache { /** * Cache version * * @var string * * @since 1.0.0 */ static $version = '1.2'; static $prefix = 'kc_uu_'; /** @var bool */ static $enabled = true; /** * Get prefix * * @return string */ static function get_prefix() { return self::$prefix . str_replace('.', '', self::$version) . '_'; } /** * @return mixed|void */ static function get_default_transient_expiration() { return apply_filters( 'cache_default_expiration', 10 ); } /** * @param $key * @param $value * @param bool $expiration * * @return bool */ static function set_transient( $key, $value, $expiration = false ) { if ( ! self::$enabled ) { return false; } if ( ! $expiration ) { $expiration = self::get_default_transient_expiration(); } return set_transient( self::get_prefix() . 'cache_' . $key, $value, $expiration ); } /** * @param string $key * * @return bool|mixed * * @since 1.2 */ static function get_transient( $key ) { if ( ! self::$enabled ) { return false; } return get_transient( self::get_prefix() . 'cache_' . $key ); } /** * @param $key * * @since 1.2 */ static function delete_transient( $key ) { delete_transient( self::get_prefix() . 'cache_' . $key ); } /** * Only sets if key is not falsy * * @param string $key * @param mixed $value * @param string $group * * @since 1.2 */ static function set( $key, $value, $group ) { if ( ! $key ) { return; } wp_cache_set( (string) $key, $value, self::get_prefix() . $group ); } /** * Only gets if key is not falsy * * @param string $key * @param string $group * * @return bool|mixed * * @since 1.2 */ static function get( $key, $group ) { if ( ! $key ) { return false; } return wp_cache_get( (string) $key, self::get_prefix() . $group ); } /** * @param string $key * @param string $group * * @return bool * * @since 1.2 */ static function exists( $key, $group ) { if ( ! $key ) { return false; } $found = false; wp_cache_get( (string) $key, self::get_prefix() . $group, false, $found ); return $found; } /** * Only deletes if key is not falsy * * @param string $key * @param string $group * * @since 1.2 */ static function delete( $key, $group ) { if ( ! $key ) { return; } wp_cache_delete( (string) $key, self::get_prefix() . $group ); } }
[-] Settings.php
[edit]
[-] Plugin.php
[edit]
[-] Activator.php
[edit]
[-] index.php
[edit]
[+]
Upgrade
[-] Option.php
[edit]
[+]
..
[-] Frontend.php
[edit]
[-] Deactivator.php
[edit]
[-] Notice.php
[edit]
[-] I18n.php
[edit]
[+]
Admin
[-] Loader.php
[edit]
[+]
Common
[-] Tracker.php
[edit]
[-] Install.php
[edit]
[-] Feedback.php
[edit]
[+]
Frontend
[-] Admin.php
[edit]
[-] Cache.php
[edit]
[-] Helper.php
[edit]