diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-08-26 16:24:25 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-08-26 16:24:25 +0200 |
commit | 5a4854079fbf9c6b359c1c9afdaeb5c6e19609e8 (patch) | |
tree | 296c65980f5202881c302c1205943e0ba5d23965 /lib/user/interface.php | |
parent | 80374c7cb2f3c98e350c95f92a9785aacef5d2c4 (diff) | |
download | nextcloud-server-5a4854079fbf9c6b359c1c9afdaeb5c6e19609e8.tar.gz nextcloud-server-5a4854079fbf9c6b359c1c9afdaeb5c6e19609e8.zip |
implement getHome in OC_User
Diffstat (limited to 'lib/user/interface.php')
-rw-r--r-- | lib/user/interface.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/user/interface.php b/lib/user/interface.php index a4903898fb1..5e5efe0010a 100644 --- a/lib/user/interface.php +++ b/lib/user/interface.php @@ -57,4 +57,11 @@ interface OC_User_Interface { */ public function userExists($uid); + /** + * @brief get the user's home directory + * @param string $uid the username + * @return boolean + */ + public function getHome($uid); + }
\ No newline at end of file |