You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

iavatarmanager.php 423B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * This file is licensed under the Affero General Public License version 3 or
  4. * later.
  5. * See the COPYING-README file.
  6. */
  7. namespace OCP;
  8. /**
  9. * This class provides avatar functionality
  10. */
  11. interface IAvatarManager {
  12. /**
  13. * @brief return a user specific instance of \OCP\IAvatar
  14. * @see \OCP\IAvatar
  15. * @param $user string the ownCloud user id
  16. * @return \OCP\IAvatar
  17. */
  18. function getAvatar($user);
  19. }