From cd5e86f70a6a77a974ef935ca311f8d1b7a1e646 Mon Sep 17 00:00:00 2001 From: xue <> Date: Mon, 1 Oct 2007 01:03:16 +0000 Subject: fixed demos. --- demos/time-tracker/protected/App_Code/UserManager.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'demos/time-tracker') diff --git a/demos/time-tracker/protected/App_Code/UserManager.php b/demos/time-tracker/protected/App_Code/UserManager.php index 4d4ce75c..769e2463 100644 --- a/demos/time-tracker/protected/App_Code/UserManager.php +++ b/demos/time-tracker/protected/App_Code/UserManager.php @@ -75,15 +75,15 @@ class UserManager extends TModule implements IUserManager } /** - * Validates if the username and password are correct. - * @param string user name - * @param string password - * @return boolean true if validation is successful, false otherwise. + * 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 validateUser($username,$password) + public function getUserFromCookie($cookie); { // do nothing since we don't support cookie-based auth in this example - return false; + return null; } } -- cgit v1.2.3