• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/activity/mail/message.php
  • Класс: Bitrix\Crm\Activity\Mail\Message
  • Вызов: Message::convertTypeToFormatForBinding
static function convertTypeToFormatForBinding($type)
{
	if (is_numeric($type))
	{
		$type = \CCrmOwnerType::ResolveName($type);
	}

	if(self::typesForBinding[$type])
	{
		return self::typesForBinding[$type];
	}
	else
	{
		return self::typesForBinding[\CCrmOwnerType::ContactName];
	}
}