diff options
author | Robin Appelman <robin@icewind.nl> | 2019-06-04 15:25:25 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-06-17 14:09:09 +0200 |
commit | 615061437422499025e038483504d4ef2004c8e1 (patch) | |
tree | bd8752decea5d8c10fea43bdcdd92c38c26ebf30 /lib/private/PreviewManager.php | |
parent | f6ad353c7c1176bcaa167051c9f3e118e69f7a20 (diff) | |
download | nextcloud-server-615061437422499025e038483504d4ef2004c8e1.tar.gz nextcloud-server-615061437422499025e038483504d4ef2004c8e1.zip |
Add new Provider interface for preview providers
the main difference is passing the `File` object to the provider
instead of a `View` + path
Old providers will still continue to work as before
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/PreviewManager.php')
-rw-r--r-- | lib/private/PreviewManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/PreviewManager.php b/lib/private/PreviewManager.php index 931b0035c4f..6635d919fb7 100644 --- a/lib/private/PreviewManager.php +++ b/lib/private/PreviewManager.php @@ -97,7 +97,7 @@ class PreviewManager implements IPreview { * In order to improve lazy loading a closure can be registered which will be * called in case preview providers are actually requested * - * $callable has to return an instance of \OCP\Preview\IProvider + * $callable has to return an instance of \OCP\Preview\IProvider or \OCP\Preview\IProviderV2 * * @param string $mimeTypeRegex Regex with the mime types that are supported by this provider * @param \Closure $callable |