• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/format/templatecollection.php
  • Класс: BitrixLocationEntityFormatTemplateCollection
  • Вызов: TemplateCollection::getTemplate
public function getTemplate(string $type): ?Template
{
	foreach ($this->items as $template)
	{
		if($template->getType() === $type)
		{
			return $template;
		}
	}

	return null;
}