avatarmanager.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * @author Arthur Schiwon <blizzz@owncloud.com>
  4. * @author Morris Jobke <hey@morrisjobke.de>
  5. * @author Robin McCorkell <rmccorkell@karoshi.org.uk>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. *
  8. * @copyright Copyright (c) 2015, ownCloud, Inc.
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OC;
  25. use OCP\IAvatarManager;
  26. use OC\Avatar;
  27. /**
  28. * This class implements methods to access Avatar functionality
  29. */
  30. class AvatarManager implements IAvatarManager {
  31. /**
  32. * return a user specific instance of \OCP\IAvatar
  33. * @see \OCP\IAvatar
  34. * @param string $user the ownCloud user id
  35. * @return \OCP\IAvatar
  36. * @throws \Exception In case the username is potentially dangerous
  37. */
  38. public function getAvatar($user) {
  39. return new Avatar($user);
  40. }
  41. }