• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Router.php
  • Класс: Bitrix\Crm\Service\Router
  • Вызов: Router::getFullPath
protected function getFullPath(string $folder = '', ?int $entityTypeId = null): string
{
	$root = $this->getRoot();
	if ($entityTypeId > 0 && isset($this->customRoots[$entityTypeId]))
	{
		$root = $this->customRoots[$entityTypeId];
	}
	return Path::combine($this->getSiteFolder(), $root, $folder) . '/';
}