Output::updateMessage

  1. Bitrix24 API (v. 23.675.0)
  2. imconnector
  3. Output
  4. updateMessage
  • Модуль: imconnector
  • Путь к файлу: ~/bitrix/modules/imconnector/lib/provider/base/output.php
  • Класс: Bitrix\ImConnector\Provider\Base\Output
  • Вызов: Output::updateMessage
protected function updateMessage(array $data): Result
{
	$result = clone $this->result;

	if ($result->isSuccess())
	{
		$data = $this->updateMessagesProcessing($data);

		$event = new Event(Library::MODULE_ID, Library::EVENT_UPDATE_MESSAGE_CUSTOM_CONNECTOR, ['CONNECTOR' => $this->connector, 'LINE' => $this->line,'DATA' => $data]);
		$event->send();
	}

	return $result;
}

Добавить комментарий