• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/document/onlyoffice/models/documentinfo.php
  • Класс: BitrixDiskDocumentOnlyOfficeModelsDocumentInfo
  • Вызов: DocumentInfo::isSaving
public function isSaving(): bool
{
	if ($this->getUserCount() !== 0)
	{
		return false;
	}

	if ($this->getContentStatus() === self::CONTENT_STATUS_EDITING)
	{
		return true;
	}

	return false;
}