VoxImplantTracker::prepareCaption

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. VoxImplantTracker
  4. prepareCaption
  • Модуль: 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;
}

Добавить комментарий