. * */ namespace OCA\Contacts\CardDAV; /** * This class overrides \Sabre\CardDAV\AddressBookRoot::getChildForPrincipal() * to instantiate OC_Connector_CardDAV_UserAddressBooks. */ class AddressBookRoot extends \Sabre\CardDAV\AddressBookRoot { /** * 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 * @return \Sabre\DAV\INode */ public function getChildForPrincipal(array $principal) { return new UserAddressBooks($this->carddavBackend, $principal['uri']); } }