nextcloud/lib/public/iavatarmanager.php

24 lines
416 B
PHP
Raw Normal View History

2013-09-20 05:46:11 -04:00
<?php
/**
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCP;
/**
* This class provides avatar functionality
*/
interface IAvatarManager {
/**
* return a user specific instance of \OCP\IAvatar
2013-11-21 17:40:25 -05:00
* @see \OCP\IAvatar
* @param string $user the ownCloud user id
2013-11-21 17:40:25 -05:00
* @return \OCP\IAvatar
2013-09-20 05:46:11 -04:00
*/
2013-11-21 17:40:25 -05:00
function getAvatar($user);
2013-09-20 05:46:11 -04:00
}