• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/channel/voximplanttracker.php
  • Класс: Bitrix\Crm\Integration\Channel\VoxImplantTracker
  • Вызов: VoxImplantTracker::prepareCaption
public function prepareCaption(array $params = null)
{
	$caption = Loc::getMessage("VOXIMPLANT_UNKNOWN_NUMBER");
	$items = \CVoxImplantConfig::GetPortalNumbers(true, true);
	if (isset($params["ORIGIN_ID"]) && in_array($params["ORIGIN_ID"], $items))
	{
		$caption = $items[$params["ORIGIN_ID"]];
	}
	return $caption;
}