• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/notification/notificationservice.php
  • Класс: BitrixCalendarSharingNotificationNotificationService
  • Вызов: NotificationService::getTemplateCode
protected function getTemplateCode(array $owner): string
{
	$templateCode = self::TEMPLATE_Q;

	if ($owner['STATUS'] === 'Y')
	{
		$templateCode = self::TEMPLATE_Y;
	}

	if ($owner['STATUS'] === 'N')
	{
		$templateCode = self::TEMPLATE_N;
	}

	return $templateCode;
}