Blame view

sources/apps/contacts/lib/carddav/addressbookroot.php 1.44 KB
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
  <?php
  /**
   * ownCloud - Addressbook
   *
   * @author Thomas Tanghus
6d9380f96   Cédric Dupont   Update sources OC...
6
   * @copyright 2012-2014 Thomas Tanghus (thomas@tanghus.net)
d1bafeea1   Kload   [fix] Upgrade to ...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library 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 library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  namespace OCA\Contacts\CardDAV;
  
  /**
6d9380f96   Cédric Dupont   Update sources OC...
26
   * This class overrides \Sabre\CardDAV\AddressBookRoot::getChildForPrincipal()
d1bafeea1   Kload   [fix] Upgrade to ...
27
28
   * to instantiate OC_Connector_CardDAV_UserAddressBooks.
  */
6d9380f96   Cédric Dupont   Update sources OC...
29
  class AddressBookRoot extends \Sabre\CardDAV\AddressBookRoot {
d1bafeea1   Kload   [fix] Upgrade to ...
30
31
32
33
34
35
36
37
38
  
  	/**
  	* 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 $principal
6d9380f96   Cédric Dupont   Update sources OC...
39
  	* @return \Sabre\DAV\INode
d1bafeea1   Kload   [fix] Upgrade to ...
40
41
42
43
44
45
  	*/
  	public function getChildForPrincipal(array $principal) {
  
  		return new UserAddressBooks($this->carddavBackend, $principal['uri']);
  
  	}
6d9380f96   Cédric Dupont   Update sources OC...
46
  }