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

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

fix update of config when click on submit (admin advanced)

  • Property svn:eol-style set to LF
File size: 976 bytes
Line 
1<?php
2
3$config_default_general = array(
4        'styles' => array(
5                'logo' => 'logo',
6                'page' => 'page',
7                'folder' => 'folder',
8                'foldercolor' => 'foldercolor',
9                'folderpicture' => 'folderpicture',
10                'cracked' => 'cracked',
11        ),
12        'style' => 'logo',
13        'support' => array(
14                'youtube' => 'Youtube videos',
15                'vimeo' => 'Vimeo videos',
16                'dailymotion' => 'Dailymotion videos',
17                'wideo' => 'Wideo videos',
18                'wat' => 'Wat videos',
19                'video' => 'Videos',
20                'music' => 'Musics',
21                'pdf' => 'pdf documents',
22                'document' => 'Documents',
23                'spreadsheet' => 'Spreadsheets',
24                'presentation' => 'Presentations',
25        ),
26        'active' => array(
27                'youtube' => 1,
28                'vimeo' => 1,
29                'dailymotion' => 1,
30                'wideo' => 1,
31                'wat' => 1,
32                'video' => 1,
33                'music' => 1,
34                'pdf' => 1,
35                'document' => 1,
36                'spreadsheet' => 1,
37                'presentation' => 1,
38        ),
39);
40$config_default_advanced = array(
41        'position' => 'bottomright',
42        'xposition' => 'right: 5px',
43        'yposition' => 'bottom: 5px',
44        'opacity' => 100,
45);
46
47?>
Note: See TracBrowser for help on using the repository browser.