Horde_Group_Base::_setListCache PHP Метод

_setListCache() защищенный Метод

Sets the cached group list.
protected _setListCache ( array $list, string $user = null )
$list array A group list.
$user string A user name.
    protected function _setListCache(array $list, $user = null)
    {
        $sig = $this->_sig('list');
        if (!is_null($user)) {
            $sig .= '_' . $user;
        }
        try {
            $this->_cache->set($sig, serialize($list));
        } catch (Horde_Cache_Exception $e) {
        }
    }