18 lines
384 B
PHP
18 lines
384 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCA\Richdocuments\Preview;
|
|
|
|
class OOXML extends Office {
|
|
public const MIMETYPE_REGEX = '/application\/vnd.openxmlformats-officedocument.*/';
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getMimeType(): string {
|
|
return self::MIMETYPE_REGEX;
|
|
}
|
|
}
|