diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-09-08 16:17:01 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-09-08 16:17:01 +0200 |
commit | 89f3afe2fead6f40eaeaa23db88ee70edb9cd61a (patch) | |
tree | edda58db17e377d68d5d83ff00e55b8738988e46 /lib/public | |
parent | 439ede2a1d06b707ebce8195a551224dc5e3dbfd (diff) | |
download | nextcloud-server-89f3afe2fead6f40eaeaa23db88ee70edb9cd61a.tar.gz nextcloud-server-89f3afe2fead6f40eaeaa23db88ee70edb9cd61a.zip |
style fixes for public user api
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/user.php | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/lib/public/user.php b/lib/public/user.php index b530321f21d..b320ce8ea0c 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -34,8 +34,6 @@ namespace OCP; * This class provides access to the user management. You can get information about the currently logged in user and the permissions for example */ class User { - - /** * @brief get the user id of the user currently logged in. * @return string uid or false @@ -44,7 +42,6 @@ class User { return \OC_USER::getUser(); } - /** * @brief Get a list of all users * @returns array with all uids @@ -55,7 +52,6 @@ class User { return \OC_USER::getUsers(); } - /** * @brief Check if the user is logged in * @returns true/false @@ -66,7 +62,6 @@ class User { return \OC_USER::isLoggedIn(); } - /** * @brief check if a user exists * @param string $uid the username @@ -76,7 +71,6 @@ class User { return \OC_USER::userExists( $uid ); } - /** * @brief Loggs the user out including all the session data * @returns true @@ -87,7 +81,6 @@ class User { return \OC_USER::logout(); } - /** * @brief Check if the password is correct * @param $uid The username @@ -100,23 +93,18 @@ class User { return \OC_USER::checkPassword( $uid, $password ); } + /** + * Check if the user is a admin, redirects to home if not + */ + public static function checkAdminUser() { + \OC_Util::checkAdminUser(); + } - /** - * Check if the user is a admin, redirects to home if not - */ - public static function checkAdminUser() { - \OC_Util::checkAdminUser(); - } - - - /** - * Check if the user is logged in, redirects to home if not. With - * redirect URL parameter to the request URI. - */ - public static function checkLoggedIn() { - \OC_Util::checkLoggedIn(); - } - - - + /** + * Check if the user is logged in, redirects to home if not. With + * redirect URL parameter to the request URI. + */ + public static function checkLoggedIn() { + \OC_Util::checkLoggedIn(); + } } |