nextcloud/lib/public/iavatarmanager.php

24 líneas
423 B
PHP
Original Vista normal Histórico

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