Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ONLYOFFICE/onlyoffice-nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Linnik <sergey.linnik@onlyoffice.com>2019-12-05 14:54:40 +0300
committerSergey Linnik <sergey.linnik@onlyoffice.com>2019-12-17 13:51:40 +0300
commit3a6ffbcd04e6b8f960f959b082ec342bfb04bf8b (patch)
treeb7ff068cfee51fa90c9db127acbdcd015ff92b8c /lib/directeditor.php
parent370110ae1c70274f31b7133c9ab820180843f7eb (diff)
creation different formats
Diffstat (limited to 'lib/directeditor.php')
-rw-r--r--lib/directeditor.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/directeditor.php b/lib/directeditor.php
index 3a1f0c7..342909e 100644
--- a/lib/directeditor.php
+++ b/lib/directeditor.php
@@ -175,7 +175,9 @@ class DirectEditor implements IEditor {
*/
public function getCreators(): array {
return [
- new FileCreator($this->appName, $this->trans, $this->logger)
+ new FileCreator($this->appName, $this->trans, $this->logger, "docx"),
+ new FileCreator($this->appName, $this->trans, $this->logger, "xlsx"),
+ new FileCreator($this->appName, $this->trans, $this->logger, "pptx")
];
}