• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/template.php
  • Класс: BitrixDocumentGeneratorTemplate
  • Вызов: Template::getDownloadUrl
public function getDownloadUrl(bool $absolute = false): Uri
{
	$link = UrlManager::getInstance()->create('documentgenerator.api.template.download', ['id' => $this->ID, 'ts' => $this->getModificationTime()]);
	if($absolute)
	{
		$link = new ContentUri(UrlManager::getInstance()->getHostUrl().$link->getLocator());
	}

	return $link;
}