iuserbackend.php 626 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright (c) 2014 Morris Jobke <hey@morrisjobke.de>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. /**
  9. * Public interface of ownCloud for apps to use.
  10. * User Interface version 2
  11. *
  12. */
  13. // use OCP namespace for all classes that are considered public.
  14. // This means that they should be used by apps instead of the internal ownCloud classes
  15. namespace OCP;
  16. interface IUserBackend {
  17. /**
  18. * Backend name to be shown in user management
  19. * @return string the name of the backend to be shown
  20. */
  21. public function getBackendName();
  22. }