diff options
author | xue <> | 2007-10-01 01:10:04 +0000 |
---|---|---|
committer | xue <> | 2007-10-01 01:10:04 +0000 |
commit | 3a7602effa90c05e8f9e4fbfd6db7d774e16beb1 (patch) | |
tree | 27c6619baa39278c9f634a44e8e7b34e061eb0bc /demos/blog/protected | |
parent | 769c6663a77893cfbc2270db8ba0d506ea5e493f (diff) |
final fixes.3.1.1
Diffstat (limited to 'demos/blog/protected')
-rw-r--r-- | demos/blog/protected/Common/BlogUserManager.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/demos/blog/protected/Common/BlogUserManager.php b/demos/blog/protected/Common/BlogUserManager.php index a3053c61..efaa7f1f 100644 --- a/demos/blog/protected/Common/BlogUserManager.php +++ b/demos/blog/protected/Common/BlogUserManager.php @@ -68,6 +68,28 @@ class BlogUserManager extends TModule implements IUserManager else
return false;
}
+
+ /**
+ * Saves user auth data into a cookie.
+ * @param THttpCookie the cookie to receive the user auth data.
+ * @since 3.1.1
+ */
+ public function saveUserToCookie($cookie)
+ {
+ // do nothing since we don't support cookie-based auth in this example
+ }
+
+ /**
+ * Returns a user instance according to auth data stored in a cookie.
+ * @param THttpCookie the cookie storing user authentication information
+ * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
+ * @since 3.1.1
+ */
+ public function getUserFromCookie($cookie)
+ {
+ // do nothing since we don't support cookie-based auth in this example
+ return null;
+ }
}
?>
\ No newline at end of file |