Blame view
sources/lib/private/avatarmanager.php
522 Bytes
|
31b7f2792
|
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 {
/**
* @brief return a user specific instance of \OCP\IAvatar
* @see \OCP\IAvatar
* @param $user string the ownCloud user id
* @return \OCP\IAvatar
*/
function getAvatar($user) {
return new \OC_Avatar($user);
}
}
|