• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/document/onlyoffice/models/documentsessioncontext.php
  • Класс: BitrixDiskDocumentOnlyOfficeModelsDocumentSessionContext
  • Вызов: DocumentSessionContext::buildFromJson
static function buildFromJson(string $json): ?self
{
	$decoded = Json::decode($json);
	if (!$decoded)
	{
		return null;
	}

	return new self(
		$decoded['objectId'],
		$decoded['attachedObjectId'] ?? null,
		$decoded['externalLinkId'] ?? null
	);
}