1<?php
2/**
3 * Default settings for the file2dw plugin
4 *
5 * @author José Torrecilla <qky669@gmail.com>
6 */
7
8$conf['debugShowInfo']            = 0;
9// debug show info messages: 0: no; 1: yes; -- Error messages are always shown
10
11$conf['logFile']                  = '/var/log/file2dw.log';
12// log file where $this->_msg write
13
14$conf['logLevel']                 = '0';
15// log level: what $this->_msg write to the log file
16
17
18$conf['formDisplayRule']          = 'file2dw';
19// which action will display the file2dw upload form
20
21$conf['formIntroMessage']         = 'default';
22// personalized message - if "default", display the language default message
23
24$conf['formMaxFileSize']          = 4194304;
25// maxsize for userFile upload
26
27
28$conf['parserLinkToOriginalFile'] = 0;
29// display a link to the original userFile 0=no link; 1=link
30
31$conf['parserUploadDir']          = '';
32// system path where the file will be moved after upload but before parse.
33// If empty, system's default temp dir is used.
34
35$conf['parserMimeTypeSOffice']    = 'application/msword';
36// mimetypes that need SOffice conversion
37