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

RootCollection.php « Avatars « lib « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7c7ff4e9fb87d158d85ce54704d62d85d7414ac (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
26
27
28
29
<?php

namespace OCA\DAV\Avatars;

use Sabre\DAVACL\AbstractPrincipalCollection;


class RootCollection extends AbstractPrincipalCollection {

	/**
	 * This method returns a node for a principal.
	 *
	 * The passed array contains principal information, and is guaranteed to
	 * at least contain a uri item. Other properties may or may not be
	 * supplied by the authentication backend.
	 *
	 * @param array $principalInfo
	 * @return AvatarHome
	 */
	public function getChildForPrincipal(array $principalInfo) {
		$avatarManager = \OC::$server->getAvatarManager();
		return new AvatarHome($principalInfo, $avatarManager);
	}

	public function getName() {
		return 'avatars';
	}

}