source: extensions/Media_Icon/install/config_default.inc.php @ 19631

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

improve update and add include folder

  • Property svn:eol-style set to LF
File size: 1.8 KB
Line 
1<?php
2$config_default_general = array(
3        'styles' => array(
4                'logo' => 'Logo',
5                'page' => 'Page',
6                'folder' => 'Folder',
7                'foldercolor' => 'Folder color',
8                'folderpicture' => 'Folder picture',
9        ),
10        'style' => 'logo',
11        'support' => array(
12                'youtube' => array(
13                        'name' => 'Youtube videos',
14                        'infos' => 'Videos added with Embedded Videos',
15                ),
16                'vimeo' => array(
17                        'name' => 'Vimeo videos',
18                        'infos' => 'Videos added with Embedded Videos',
19                ),
20                'dailymotion' => array(
21                        'name' => 'Dailymotion videos',
22                        'infos' => 'Videos added with Embedded Videos',
23                ),
24                'wideo' => array(
25                        'name' => 'Wideo videos',
26                        'infos' => 'Videos added with Embedded Videos',
27                ),
28                'wat' => array(
29                        'name' => 'Wat videos',
30                        'infos' => 'Videos added with Embedded Videos',
31                ),
32                'video' => array(
33                        'name' => 'Videos',
34                        'infos' => 'Files supported: webm, webmv, ogv, m4v, flv, mp4',
35                ),
36                'music' => array(
37                        'name' => 'Musics',
38                        'infos' => 'Files supported: mp3, ogg, oga, m4a, webma, fla, wav',
39                ),
40                'pdf' => array(
41                        'name' => 'pdf files',
42                        'infos' => 'Files supported: pdf',
43                ),
44                'document' => array(
45                        'name' => 'Documents',
46                        'infos' => 'Files supported: doc, docx and odt',
47                ),
48                'spreadsheet' => array(
49                        'name' => 'Spreadsheets',
50                        'infos' => 'Files supported: xls, xlsx and ods',
51                ),
52                'presentation' => array(
53                        'name' => 'Presentations',
54                        'infos' => 'Files supported: ppt, pptx and odp',
55                ),
56        ),
57        'active' => array(
58                'youtube' => 1,
59                'vimeo' => 1,
60                'dailymotion' => 1,
61                'wideo' => 1,
62                'wat' => 1,
63                'video' => 1,
64                'music' => 1,
65                'pdf' => 1,
66                'document' => 1,
67                'spreadsheet' => 1,
68                'presentation' => 1,
69        ),
70);
71$config_default_advanced = array(
72        'position' => 'bottomright',
73        'xposition' => 'right: 5px',
74        'yposition' => 'bottom: 5px',
75        'opacity' => 100,
76);
77
78?>
Note: See TracBrowser for help on using the repository browser.