Welcome to mirror list, hosted at ThFree Co, Russian Federation.

avatarmanager.php « private « lib - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6abe87c4f410f81d52fc425591f2c33dedb2d6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OC;

use OCP\IAvatarManager;

/*
 * This class implements methods to access Avatar functionality
 */
class AvatarManager implements IAvatarManager {

	/**
	 * return a user specific instance of \OCP\IAvatar
	 * @see \OCP\IAvatar
	 * @param string $user the ownCloud user id
	 * @return \OCP\IAvatar
	 */
	function getAvatar($user) {
		return new \OC_Avatar($user);
	}
}