aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/files/rootcollection.php
blob: bbe3c784a53eadc363735511e8e008f06431b6f1 (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
<?php

namespace OCA\DAV\Files;

use Sabre\DAVACL\AbstractPrincipalCollection;
use Sabre\DAVACL\IPrincipal;

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 IPrincipal
	 */
	function getChildForPrincipal(array $principalInfo) {
		return new FilesHome($principalInfo);
	}

	function getName() {
		return 'files';
	}

}