public function setCookieJar($cookiejar = true
) { Zend_Loader::
loadClass('Zend_Http_CookieJar'
);
if ($cookiejar instanceof Zend_Http_CookieJar
) { $this->cookiejar =
$cookiejar;
} elseif ($cookiejar === true
) { $this->cookiejar =
new Zend_Http_CookieJar();
} elseif (!
$cookiejar) { $this->cookiejar = null;
} else { /** @see Zend_Http_Client_Exception */
throw new Zend_Http_Client_Exception('Invalid parameter type passed as CookieJar'
);
} return $this;
} /**
* Return the current cookie jar or null if none.
*
* @return Zend_Http_CookieJar|null
*/