Blame view

sources/lib/public/iavatarmanager.php 416 Bytes
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?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 {
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
17
  	 * return a user specific instance of \OCP\IAvatar
31b7f2792   Kload   Upgrade to ownclo...
18
  	 * @see \OCP\IAvatar
6d9380f96   Cédric Dupont   Update sources OC...
19
  	 * @param string $user the ownCloud user id
31b7f2792   Kload   Upgrade to ownclo...
20
21
22
23
  	 * @return \OCP\IAvatar
  	 */
  	function getAvatar($user);
  }