• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/controller/onlyoffice.php
  • Класс: BitrixDiskControllerOnlyOffice
  • Вызов: OnlyOffice::sendEventToParticipants
protected function sendEventToParticipants(string $documentSessionHash, string $event): void
{
	foreach ($this->getDocumentSessionsByKey($documentSessionHash) as $session)
	{
		Driver::getInstance()->sendEvent($session->getUserId(), 'onlyoffice', [
			'object' => [
				'id' => $session->getObjectId(),
			],
			'documentSession' => [
				'hash' => $documentSessionHash,
			],
			'event' => $event,
		]);
	}
}