• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/iblock.php
  • Класс: CWebDavIblock
  • Вызов: CWebDavIblock::GetPath
function GetPath($options = array())
{
	$result = '';

	$elm = $this->GetObject($options);

	if (!$elm['not_found'])
	{
		$result = $this->base_url_full;
		$result .= "/".implode("/", $this->GetNavChain($options, true));
	}

	if ($elm['is_file'])
	{
		$result .= $elm['element_name'];
	}

	return $result;
}