From 2942e64da98ae4e9f9f781facbca451d07e2a477 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 29 Jan 2013 15:01:03 -0500 Subject: [PATCH] Created abstract wrapper for cookie setting. --- module/VuFind/src/VuFind/Cart.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/module/VuFind/src/VuFind/Cart.php b/module/VuFind/src/VuFind/Cart.php index 73279f91b4b..b23ebcfadf2 100644 --- a/module/VuFind/src/VuFind/Cart.php +++ b/module/VuFind/src/VuFind/Cart.php @@ -282,9 +282,20 @@ class Cart // Save the cookies: $cookie = implode(self::CART_COOKIE_DELIM, $ids); - setcookie(self::CART_COOKIE, $cookie, 0, '/'); + $this->setCookie(self::CART_COOKIE, $cookie, 0, '/'); $cookie = implode(self::CART_COOKIE_DELIM, $sources); - setcookie(self::CART_COOKIE_SOURCES, $cookie, 0, '/'); + $this->setCookie(self::CART_COOKIE_SOURCES, $cookie, 0, '/'); + } + + /** + * Set a cookie (wrapper in case Zend Framework offers a better abstraction + * of cookie handling in the future). + * + * @return bool + */ + protected function setCookie() + { + return call_user_func_array('setcookie', func_get_args()); } /** @@ -296,4 +307,4 @@ class Cart { return $this->recordLoader->loadBatch($this->items); } -} +} \ No newline at end of file -- GitLab