xref: /plugin/mediathumbnails/conf/default.php (revision a99f150968d94c1d45e20e5e1fcfb35c280afe95)
1<?php
2/**
3 * Default settings for the mediathumbnails plugin
4 *
5 * @author Thomas Schäfer <thomas.schaefer@itschert.net>
6 */
7
8$conf['thumb_max_dimension']      = '100';
9$conf['thumb_paths']              = array('Thumbnails/thumbnail.png','docProps/thumbnail.jpeg'); // first entry: odt file, second entry: MS Office file
10$conf['link_to_media_file']       = true;
11$conf['show_missing_thumb_error'] = true;
12$conf['no_thumb_error_message']   = "No thumbnail in "; // media path appended here
13$conf['no_media_error_message']   = "No source media in "; // media path appended here
14
15