diff options
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/iuserbackend.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/public/iuserbackend.php b/lib/public/iuserbackend.php new file mode 100644 index 00000000000..79b5740ee93 --- /dev/null +++ b/lib/public/iuserbackend.php @@ -0,0 +1,27 @@ +<?php +/** + * Copyright (c) 2014 Morris Jobke <hey@morrisjobke.de> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Public interface of ownCloud for apps to use. + * User Interface version 2 + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP; + +interface IUserBackend { + + /** + * Backend name to be shown in user management + * @return string the name of the backend to be shown + */ + public function getBackendName(); + +} |