• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/integration/bizproc/message/collection.php
  • Класс: BitrixImIntegrationBizprocMessageCollection
  • Вызов: Collection::makeTemplate
static function makeTemplate(string $type): Template
{
	return match ($type)
	{
		static::TEMPLATE_NEWS => new NewsTemplate(),
		static::TEMPLATE_NOTIFY => new NotifyTemplate(),
		static::TEMPLATE_IMPORTANT => new ImportantTemplate(),
		static::TEMPLATE_ALERT => new AlertTemplate(),
		default => new PlainTemplate(),
	};
}