source: extensions/Media_Icon/config_default.inc.php @ 19571

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

foreach pour service

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