• Модуль: imbot
  • Путь к файлу: ~/bitrix/modules/imbot/lib/bot/propertiesua.php
  • Класс: BitrixImBotBotPropertiesUa
  • Вызов: PropertiesUa::onChatStart
static function onChatStart($dialogId, $joinFields)
{
	if ($joinFields['CHAT_TYPE'] == IM_MESSAGE_PRIVATE)
	{
		$message = Loc::getMessage('IMBOT_PROPERTIESUA_WELCOME_MESSAGE');
	}
	else
	{
		$message = Loc::getMessage('IMBOT_PROPERTIESUA_WELCOME_MESSAGE_CHAT');
	}

	if ($message)
	{
		self::sendAnswer(0, Array(
			'DIALOG_ID' => $dialogId,
			'ANSWER' => $message
		));
	}

	return true;
}