• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/salescenter/base.php
  • Класс: BitrixImOpenLinesSalesCenterBase
  • Вызов: Base::normalizeChatId
static function normalizeChatId($chatId = 0)
{
	if (mb_strpos($chatId, 'chat') === 0)
	{
		$chatId = (int)mb_substr($chatId, 4);
	}

	return $chatId;
}