• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/integration/voximplant/service.php
  • Класс: Bitrix\Sender\Integration\VoxImplant\Service
  • Вызов: Service::getFormattedOutputNumber
static function getFormattedOutputNumber($value)
{
	static $lines;
	if (null === $lines)
	{
		if (static::canUse())
		{
			$lines = \CVoxImplantConfig::GetPortalNumbers(false);
		}
		else
		{
			$lines = [];
		}
	}

	return $lines[$value] ?: $value;
}