diff options
author | Joda Stößer <services+github@simjo.st> | 2023-06-19 02:28:01 +0200 |
---|---|---|
committer | Joda Stößer <stoesser@yay-digital.de> | 2023-06-19 13:32:03 +0200 |
commit | a4a7971f114b66e3e89096a4dfde654398a745b6 (patch) | |
tree | bd17ff5cd0363d23bc0e2859a4b871bd2a321bb3 /config | |
parent | 7250b987910b5679e342dd7e938d00a3b69d87cc (diff) | |
download | nextcloud-server-a4a7971f114b66e3e89096a4dfde654398a745b6.tar.gz nextcloud-server-a4a7971f114b66e3e89096a4dfde654398a745b6.zip |
style(config): alphabetise preview providers
Signed-off-by: Joda Stößer <git@simjo.st>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index c87e1cad9fa..5301a2bf811 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1243,8 +1243,9 @@ $CONFIG = [ * The following providers are disabled by default due to performance or privacy * concerns: * - * - ``OC\Preview\Illustrator`` + * - ``OC\Preview\Font`` * - ``OC\Preview\HEIC`` + * - ``OC\Preview\Illustrator`` * - ``OC\Preview\Movie`` * - ``OC\Preview\MSOffice2003`` * - ``OC\Preview\MSOffice2007`` @@ -1255,7 +1256,6 @@ $CONFIG = [ * - ``OC\Preview\StarOffice`` * - ``OC\Preview\SVG`` * - ``OC\Preview\TIFF`` - * - ``OC\Preview\Font`` * * * Defaults to the following providers: @@ -1263,25 +1263,25 @@ $CONFIG = [ * - ``OC\Preview\BMP`` * - ``OC\Preview\GIF`` * - ``OC\Preview\JPEG`` + * - ``OC\Preview\Krita`` * - ``OC\Preview\MarkDown`` * - ``OC\Preview\MP3`` + * - ``OC\Preview\OpenDocument`` * - ``OC\Preview\PNG`` * - ``OC\Preview\TXT`` * - ``OC\Preview\XBitmap`` - * - ``OC\Preview\OpenDocument`` - * - ``OC\Preview\Krita`` */ 'enabledPreviewProviders' => [ - 'OC\Preview\PNG', - 'OC\Preview\JPEG', - 'OC\Preview\GIF', 'OC\Preview\BMP', - 'OC\Preview\XBitmap', - 'OC\Preview\MP3', - 'OC\Preview\TXT', + 'OC\Preview\GIF', + 'OC\Preview\JPEG', + 'OC\Preview\Krita', 'OC\Preview\MarkDown', + 'OC\Preview\MP3', 'OC\Preview\OpenDocument', - 'OC\Preview\Krita', + 'OC\Preview\PNG', + 'OC\Preview\TXT', + 'OC\Preview\XBitmap', ], /** |