• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/resource.php
  • Класс: CDavResource
  • Вызов: CDavResource::ExtractFromLock
public function ExtractFromLock($path, $arLock)
{
	$this->path = CDav::CheckIfRightSlashAdded($path);
	$this->arProperties = array(
		self::MakeProp("displayname", $path),
		self::MakeProp("creationdate", $arLock['CREATED']),
		self::MakeProp("getlastmodified", $arLock['MODIFIED']),
		self::MakeProp("resourcetype", ""),
		self::MakeProp("getcontenttype", ""),
		self::MakeProp("getcontentlength", 0)
	);
}