Horde_Kolab_Storage_List_Cache::hasLongTerm PHP Метод

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

Is the specified long term data available in the cache?
public hasLongTerm ( string $key ) : boolean
$key string The long term key.
Результат boolean True in case cached data is available.
    public function hasLongTerm($key)
    {
        $this->_load();
        return isset($this->_data[self::LONG_TERM][$key]);
    }