SimplePie_Sanitize::pass_cache_data PHP Метод

pass_cache_data() публичный Метод

public pass_cache_data ( $enable_cache = true, $cache_location = './cache', $cache_name_function = 'md5', $cache_class = 'SimplePie_Cache' )
    public function pass_cache_data($enable_cache = true, $cache_location = './cache', $cache_name_function = 'md5', $cache_class = 'SimplePie_Cache')
    {
        if (isset($enable_cache)) {
            $this->enable_cache = (bool) $enable_cache;
        }
        if ($cache_location) {
            $this->cache_location = (string) $cache_location;
        }
        if ($cache_name_function) {
            $this->cache_name_function = (string) $cache_name_function;
        }
    }