Horde_Kolab_Storage_Driver_Base::decodeListKeys PHP Метод

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

Decode the keys of a list of IMAP path names from the driver charset to UTF-8.
protected decodeListKeys ( array $list ) : array
$list array The list with the driver charset encoded path names as keys.
Результат array The list with path names in UTF-8 as keys.
    protected function decodeListKeys(array $list)
    {
        $result = array();
        foreach ($list as $key => $value) {
            $result[$this->decodePath($key)] = $value;
        }
        return $result;
    }