1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-07-25 13:54:59 +02:00
nextcloud/lib/public/iavatarmanager.php

24 Zeilen
423 B
PHP

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
}