diff options
Diffstat (limited to 'lib/private/Preview/EMF.php')
-rw-r--r-- | lib/private/Preview/EMF.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/private/Preview/EMF.php b/lib/private/Preview/EMF.php new file mode 100644 index 00000000000..a3c48e7d8aa --- /dev/null +++ b/lib/private/Preview/EMF.php @@ -0,0 +1,16 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OC\Preview; + +class EMF extends Office { + public function getMimeType(): string { + return '/image\/emf/'; + } +} |