1
0
espelhamento de https://github.com/nextcloud/server.git sincronizado 2024-07-25 22:04:58 +02:00
nextcloud/lib/public/iavatarmanager.php

24 linhas
423 B
PHP
Original Visão 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
}