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

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

bug fix for non supported files

  • Property svn:eol-style set to LF
File size: 764 bytes
Line 
1<?php
2        $file_uploader_galleries_dir = PHPWG_ROOT_PATH.'galleries/';
3       
4        $file_uploader_allowed_thumbnail_extension = array('jpg', 'jpeg', 'gif', 'png');
5       
6        $file_uploader_destination_folder = array(
7                'pdf' => 'pdf',
8                'doc' => 'documents',
9                'docx' => 'documents',
10                'odt' => 'documents',
11                'xls' => 'spreadsheets',
12                'xlsx' => 'spreadsheets',
13                'ods' => 'spreadsheets',
14                'ppt' => 'presentations',
15                'pptx' => 'presentations',
16                'odp' => 'presentations',
17                'webm' => 'videos',
18                'webmv' => 'videos',
19                'ogv' => 'videos',
20                'm4v' => 'videos',
21                'mp4' => 'videos',
22                'flv' => 'videos',
23                'mp3' => 'musics',
24                'ogg' => 'musics',
25                'oga' => 'musics',
26                'm4a' => 'musics',
27                'webma' => 'musics',
28                'fla' => 'musics',
29                'wav' => 'musics',
30                'others' => 'others',
31        );
32?>
Note: See TracBrowser for help on using the repository browser.