27 lines
515 B
PHP
27 lines
515 B
PHP
<?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);
|
|
}
|
|
}
|