nextcloud/lib/public/iavatarmanager.php

24 lines
423 B
PHP
Raw Normal View History

2013-09-20 13: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 {
/**
2013-11-22 02:40:25 +04:00
* @brief return a user specific instance of \OCP\IAvatar
* @see \OCP\IAvatar
* @param string $user the ownCloud user id
2013-11-22 02:40:25 +04:00
* @return \OCP\IAvatar
2013-09-20 13:46:11 +04:00
*/
2013-11-22 02:40:25 +04:00
function getAvatar($user);
2013-09-20 13:46:11 +04:00
}