12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- declare(strict_types=1);
- namespace OCP\DirectEditing;
- use OCP\AppFramework\Http\Response;
- use OCP\Files\NotPermittedException;
- use RuntimeException;
- interface IManager {
-
- public function registerDirectEditor(IEditor $directEditor): void;
-
- public function edit(string $token): Response;
-
- public function create(string $path, string $editorId, string $creatorId, $templateId = null): string;
-
- public function getToken(string $token): IToken;
-
- public function cleanup(): int;
-
- public function isEnabled(): bool;
-
- public function getEditors(): array;
- }
|