Browse Source
group display name support (service level + ldap)
group display name support (service level + ldap)
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>pull/15704/head
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
10 changed files with 129 additions and 3 deletions
-
2apps/files_external/ajax/applicable.php
-
7apps/user_ldap/lib/Access.php
-
1apps/user_ldap/lib/Connection.php
-
28apps/user_ldap/lib/Group_LDAP.php
-
7apps/user_ldap/lib/Group_Proxy.php
-
39apps/user_ldap/tests/Group_LDAPTest.php
-
1lib/composer/composer/autoload_classmap.php
-
1lib/composer/composer/autoload_static.php
-
10lib/private/Group/Group.php
-
36lib/public/Group/Backend/IGetDisplayNameBackend.php
@ -0,0 +1,36 @@ |
|||
<?php |
|||
declare(strict_types=1); |
|||
/** |
|||
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de> |
|||
* |
|||
* @author Arthur Schiwon <blizzz@arthur-schiwon.de> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
|
|||
namespace OCP\Group\Backend; |
|||
|
|||
/** |
|||
* @since 17.0.0 |
|||
*/ |
|||
interface IGetDisplayNameBackend { |
|||
/** |
|||
* @since 17.0.0 |
|||
*/ |
|||
public function getDisplayName(string $gid): string; |
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue