• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/addressbookhandler.php
  • Класс: CDavAddressbookHandler
  • Вызов: CDavAddressbookHandler::GetAddressbookProperties
public function GetAddressbookProperties(CDavResource $resource, $siteId, $account = null, $arPath = null, $options = 0)
{
	if ($this->IsMacAgent())
	{
		$collectionId = $this->GetCollectionId($siteId, $account, $arPath);
		$this->GetDefaultResourceProvider()->GetAddressbookProperties($resource, $collectionId, $account, $arPath, $options);

	}
	else
	{
		$resource->AddProperty('resourcetype',
			array(
				array('collection', ''),
			)
		);
	}

}