source: extensions/File_Uploader/admin/static.inc.php @ 19472

Last change on this file since 19472 was 19472, checked in by julien1311, 11 years ago

first version

  • Property svn:eol-style set to LF
File size: 583 bytes
Line 
1<?php
2        $file_uploader_galleries_dir = PHPWG_ROOT_PATH.'galleries/';
3       
4        $file_uploader_allowed_file_extension = array('pdf', 'doc', 'docx', 'odt', 'xls', 'xlsx', 'ods', 'ppt', 'pptx', 'odp');
5        $file_uploader_allowed_thumbnail_extension = array('jpg', 'jpeg', 'gif', 'png');
6       
7        $file_uploader_destination_folder = array(
8                'pdf' => 'pdf',
9                'doc' => 'documents',
10                'docx' => 'documents',
11                'odt' => 'documents',
12                'xls' => 'spreadsheets',
13                'xlsx' => 'spreadsheets',
14                'ods' => 'spreadsheets',
15                'ppt' => 'presentations',
16                'pptx' => 'presentations',
17                'odp' => 'presentations',
18        );
19?>
Note: See TracBrowser for help on using the repository browser.