Lines Matching refs:store
34 protected $store; variable in Swift_Plugin_Decorator
112 $this->recursiveRestore($message, $this->store); //3.3.3 bugfix
121 $this->store = array(
126 $this->recursiveReplace($message, $replacements, $this->store);
134 protected function recursiveReplace(Swift_Message_Mime $mime, $replacements, &$store) argument
144 $store["headers"][$name] = array();
145 $store["headers"][$name]["value"] = $value;
146 $store["headers"][$name]["attributes"] = array();
153 if (!isset($store["headers"][$name]))
155 $store["headers"][$name] = array("value" => false, "attributes" => array());
158 $store["headers"][$name]["attributes"][$att_name] = $att_value;
169 $store["body"] = $body;
174 $store["children"][$id] = array(
180 $this->recursiveReplace($child, $replacements, $store["children"][$id]);
198 protected function recursiveRestore(Swift_Message_Mime $mime, &$store) argument
200 if (empty($store)) //3.3.3 bugfix
206 foreach ($store["headers"] as $name => $array)
215 if ($store["body"] !== false)
217 $mime->setData($store["body"]);
220 foreach ($store["children"] as $id => $child_store)