Adjust user interface to additions around displayName Handling

This commit is contained in:
Arthur Schiwon 2013-01-29 20:09:41 +01:00
parent 4b7b092008
commit 59bb9931df
1 changed files with 15 additions and 0 deletions

View File

@ -57,4 +57,19 @@ interface OC_User_Interface {
*/
public function userExists($uid);
/**
* @brief get display name of the user
* @param $uid user ID of the user
* @return display name
*/
public function getDisplayName($uid);
/**
* @brief Get a list of all display names
* @returns array with all displayNames (value) and the correspondig uids (key)
*
* Get a list of all display names and user ids.
*/
public function getDisplayNames($search = '', $limit = null, $offset = null);
}