• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat.php
  • Класс: BitrixImV2Chat
  • Вызов: Chat::getDefaultType
protected function getDefaultType(): string;

protected function beforeSaveType(): Result
{
	$check = new Result;

	if (!in_array($this->type, self::IM_TYPES, true))
	{
		$check->addError(new ChatError(ChatError::WRONG_TYPE,'Wrong chat type'));
	}

	return $check;
}