Horde_Kolab_Storage_Driver_Base::decodeList PHP Method

decodeList() protected method

Decode a list of IMAP path names from the driver charset to UTF-8.
protected decodeList ( array $list ) : array
$list array The the driver charset encoded path names.
return array The path names in UTF-8.
    protected function decodeList(array $list)
    {
        return array_map(array($this, 'decodePath'), $list);
    }