Horde_Kolab_Storage_List_Cache::hasFolderTypes PHP Метод

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

Returns if the folder type annotation is stored in the cache.
public hasFolderTypes ( ) : boolean
Результат boolean True if the type annotation is available.
    public function hasFolderTypes()
    {
        $this->_load();
        if (isset($this->_data[self::TYPES])) {
            return true;
        }
        return false;
    }