From cae036d9e338ac62581c7dd2253dab1ca89106db Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sat, 20 Dec 2008 00:22:09 -0500 Subject: [PATCH] merge from maintainable svn --- .../Controller/lib/Horde/Controller/Request/Http.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/framework/Controller/lib/Horde/Controller/Request/Http.php b/framework/Controller/lib/Horde/Controller/Request/Http.php index 952f2d56f..4ce4566a1 100644 --- a/framework/Controller/lib/Horde/Controller/Request/Http.php +++ b/framework/Controller/lib/Horde/Controller/Request/Http.php @@ -320,6 +320,26 @@ class Horde_Controller_Request_Http extends Horde_Controller_Request_Base } /** + * Get entire list of $_COOKIE parameters + * + * @return array + */ + public function getCookieParams() + { + return $this->_cookie; + } + + /** + * Get entire list of $_SERVER parameters + * + * @return array + */ + public function getServerParams() + { + return $this->_server; + } + + /** * Get a combination of all parameters. We have to do * some wacky loops to make sure that nested values in one * param list don't overwrite other nested values -- 2.11.0