diff options
author | Olivier Paroz <github@oparoz.com> | 2015-04-02 10:31:24 +0200 |
---|---|---|
committer | Olivier Paroz <github@oparoz.com> | 2015-04-02 10:31:24 +0200 |
commit | 8ec6dfdbf8e68966b1110b8e7b16019518e20bdf (patch) | |
tree | bd3eef6befa5a3fd943c758cbe2d9c647ca7c9f1 /config/config.sample.php | |
parent | 691c353eeda077be0fcca1e3839265815a650a90 (diff) | |
download | nextcloud-server-8ec6dfdbf8e68966b1110b8e7b16019518e20bdf.tar.gz nextcloud-server-8ec6dfdbf8e68966b1110b8e7b16019518e20bdf.zip |
Split image provider in one sub-class per media type
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 672203153c6..60932ab7d9b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -661,7 +661,11 @@ $CONFIG = array( * * The following providers are enabled by default: * - * - OC\Preview\Image + * - OC\Preview\PNG + * - OC\Preview\JPEG + * - OC\Preview\GIF + * - OC\Preview\BMP + * - OC\Preview\XBitmap * - OC\Preview\MarkDown * - OC\Preview\MP3 * - OC\Preview\TXT @@ -697,7 +701,11 @@ $CONFIG = array( * - OC\Preview\StarOffice */ 'enabledPreviewProviders' => array( - 'OC\Preview\Image', + 'OC\Preview\PNG', + 'OC\Preview\JPEG', + 'OC\Preview\GIF', + 'OC\Preview\BMP', + 'OC\Preview\XBitmap', 'OC\Preview\MP3', 'OC\Preview\TXT', 'OC\Preview\MarkDown' |