Welcome to mirror list, hosted at ThFree Co, Russian Federation.

groupmapping.php « mapping « lib « user_ldap « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af8a4bb4623a1ee4ebe24a78e2e2fe3141c7b99a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* Copyright (c) 2014 Arthur Schiwon <blizzz@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/

namespace OCA\User_LDAP\Mapping;

/**
* Class UserMapping
* @package OCA\User_LDAP\Mapping
*/
class GroupMapping extends AbstractMapping {

	/**
	* returns the DB table name which holds the mappings
	* @return string
	*/
	protected function getTableName() {
		return '*PREFIX*ldap_group_mapping';
	}

}