• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message.php
  • Класс: BitrixImV2Message
  • Вызов: Message::checkEmoji
public function checkEmoji(): self
{
	if ($this->getMessage())
	{
		if (Text::isOnlyEmoji($this->getMessage()))
		{
			$this->getParams()->get(Params::LARGE_FONT)->setValue(true);
		}
	}

	return $this;
}