# update-urls/trunk/lite/includes/Cache.php

Search &amp; Replace Everything – Quick and Easy Way to Find and Replace Text, Links, version trunk. 153 lines.

- Page: https://pluginprobe.com/plugins/update-urls/trunk/code/lite/includes/Cache.php
- Raw: https://pluginprobe.com/plugins/update-urls/trunk/raw/lite/includes/Cache.php
- Modified: 2024-08-23T12:42:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/update-urls/trunk/code/lite/includes/Cache.php#L10-L20`.

```php
<?php

namespace KaizenCoders\UpdateURLS;

/**
 * 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 );
    }

}
```
