10 defined(
'JPATH_PLATFORM') or die;
29 public function __construct(array $source = null, array $options = array())
31 if (isset($options[
'filter']))
33 $this->filter = $options[
'filter'];
41 $this->data = & $_COOKIE;
44 $this->options = $options;
85 public function set($name, $value, $expire = 0, $path =
'', $domain =
'', $secure =
false, $httpOnly =
false)
87 setcookie($name, $value, $expire, $path, $domain, $secure, $httpOnly);
89 $this->data[$name] = $value;