From e7fac954e7932db9a62c717ba0acf078401fbe96 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Wed, 27 Oct 2010 11:13:08 +0300 Subject: Add the following plugins: - aksimet - clean archives reloaded - google intergration toolkit - openid - smart youtube - wp stats - wp-syntax - wp-security scan --- plugins/openid/Auth/OpenID/ServerRequest.php | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 plugins/openid/Auth/OpenID/ServerRequest.php (limited to 'plugins/openid/Auth/OpenID/ServerRequest.php') diff --git a/plugins/openid/Auth/OpenID/ServerRequest.php b/plugins/openid/Auth/OpenID/ServerRequest.php new file mode 100644 index 00000000..69222a5e --- /dev/null +++ b/plugins/openid/Auth/OpenID/ServerRequest.php @@ -0,0 +1,36 @@ + + * @copyright 2005-2008 Janrain, Inc. + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache + */ + +/** + * Imports + */ +require_once "Auth/OpenID.php"; + +/** + * Object that holds the state of a request to the OpenID server + * + * With accessor functions to get at the internal request data. + * + * @see Auth_OpenID_Server + * @package OpenID + */ +class Auth_OpenID_ServerRequest { + function Auth_OpenID_ServerRequest() + { + $this->mode = null; + } +} + -- cgit v1.2.3-65-gdbad