• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/slider/path/templatepathmaker.php
  • Класс: BitrixTasksSliderPathTemplatePathMaker
  • Вызов: TemplatePathMaker::makeEntityPath
public function makeEntityPath(): string
{
	$path = str_replace(
		['#user_id#', '#action#', '#template_id#'],
		[$this->ownerId, $this->action, $this->entityId],
		RouteDictionary::PATH_TO_USER_TEMPLATE
	);

	return $path . $this->queryParams;
}