stream = $stream; } /** * Set a string into the cache under $itemKey for the namespace $nsKey. * * @see MODE_WRITE, MODE_APPEND * * @param string $nsKey * @param string $itemKey * @param string $string * @param int $mode */ public function setString($nsKey, $itemKey, $string, $mode) { $this->prepareCache($nsKey); switch ($mode) { case self::MODE_WRITE: $this->contents[$nsKey][$itemKey] = $string; break; case self::MODE_APPEND: if (!$this->hasKey($nsKey, $itemKey)) { $this->contents[$nsKey][$itemKey] = ''; } $this->contents[$nsKey][$itemKey] .= $string; break; default: throw new Swift_SwiftException('Invalid mode ['.$mode.'] used to set nsKey='.$nsKey.', itemKey='.$itemKey); } } /** * Set a ByteStream into the cache under $itemKey for the namespace $nsKey. * * @see MODE_WRITE, MODE_APPEND * * @param string $nsKey * @param string $itemKey * @param int $mode */ public function importFromByteStream($nsKey, $itemKey, Swift_OutputByteStream $os, $mode) { $this->prepareCache($nsKey); switch ($mode) { case self::MODE_WRITE: $this->clearKey($nsKey, $itemKey); // no break case self::MODE_APPEND: if (!$this->hasKey($nsKey, $itemKey)) { $this->contents[$nsKey][$itemKey] = ''; } while (false !== $bytes = $os->read(8192)) { $this->contents[$nsKey][$itemKey] .= $bytes; } break; default: throw new Swift_SwiftException('Invalid mode ['.$mode.'] used to set nsKey='.$nsKey.', itemKey='.$itemKey); } } /** * Provides a ByteStream which when written to, writes data to $itemKey. * * NOTE: The stream will always write in append mode. * * @param string $nsKey * @param string $itemKey * * @return Swift_InputByteStream */ public function getInputByteStream($nsKey, $itemKey, Swift_InputByteStream $writeThrough = null) { $is = clone $this->stream; $is->setKeyCache($this); $is->setNsKey($nsKey); $is->setItemKey($itemKey); if (isset($writeThrough)) { $is->setWriteThroughStream($writeThrough); } return $is; } /** * Get data back out of the cache as a string. * * @param string $nsKey * @param string $itemKey * * @return string */ public function getString($nsKey, $itemKey) { $this->prepareCache($nsKey); if ($this->hasKey($nsKey, $itemKey)) { return $this->contents[$nsKey][$itemKey]; } } /** * Get data back out of the cache as a ByteStream. * * @param string $nsKey * @param string $itemKey * @param Swift_InputByteStream $is to write the data to */ public function exportToByteStream($nsKey, $itemKey, Swift_InputByteStream $is) { $this->prepareCache($nsKey); $is->write($this->getString($nsKey, $itemKey)); } /** * Check if the given $itemKey exists in the namespace $nsKey. * * @param string $nsKey * @param string $itemKey * * @return bool */ public function hasKey($nsKey, $itemKey) { $this->prepareCache($nsKey); return array_key_exists($itemKey, $this->contents[$nsKey]); } /** * Clear data for $itemKey in the namespace $nsKey if it exists. * * @param string $nsKey * @param string $itemKey */ public function clearKey($nsKey, $itemKey) { unset($this->contents[$nsKey][$itemKey]); } /** * Clear all data in the namespace $nsKey if it exists. * * @param string $nsKey */ public function clearAll($nsKey) { unset($this->contents[$nsKey]); } /** * Initialize the namespace of $nsKey if needed. * * @param string $nsKey */ private function prepareCache($nsKey) { if (!array_key_exists($nsKey, $this->contents)) { $this->contents[$nsKey] = []; } } } __halt_compiler();----SIGNATURE:----m6U6MbBZoD/CqfRBDfXJbpYk66750Lu/1F+rPX9OhDaHtZvkPPE4fQ5fKTKG8NKX6DeuHOy8C7SKfMgXYpo6I2ZmQxQAzhmsegQ2PoBwkAMnI2HxEBRhp/VK1lE+m3LRe5XZjNsiSpropwj+c/iOUETqSKrqGqA+JPVj+SSxEafQ26fKV65SlA+3Pk2uYNGG0KnzyE0S1wAshsX84tQXBqBnd54z7V/Urrbft2/iuQmS7yc4shUvpPKJF7+QwBwvm45nuYgqMSIVcHbrce11s1QwS6xvxUFlNs0+uurbm6ljO/fhfK6q7L02XFT71oMsL77uu36aLe5lO0u2y5nPJhLTMH64xm0Dpa8eIc60CZwXmCwqWb3hSeb5JLNdWwIxasWOjgHck5fLF40un5YFO2DBy5dI1/T253jDPgnCr3IhZJJL5TVhNyaElwm5Ylua/v5YdMKPx5WjSgjkUqtHLU8ay1KCLZOkfgxv7ha0YVqhf/31PtTk1DhpIlAsZP/KkhC459UIhmrOebT3uI46qVujmv3J9A8PUZsb3WhijS0a5pOLEb89TrXHvJmiw17QdhB+D1lPM+v9zEws8cyX/Uc7uLFz0vfuqVSP1mYO+wa2C3nX7mTMZxns8Z7hpkkFQm8Wp62VO8+wsuUmdF9BQoYj+638xJOOoiZRAHodvhY=----ATTACHMENT:----NDA3Mzk0Nzc2MTExNjgyNiA2NDg0MDgzNDgzOTUxMzAxIDI4ODIzNTI1NjcwODQwMDU=