-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.inc.php
executable file
·33 lines (29 loc) · 1.31 KB
/
config.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php #
if (IN_serendipity !== true) {
die ("Don't hack!");
}
@serendipity_plugin_api::load_language(dirname(__FILE__));
$template_config = array(
array(
'var' => 'style',
'name' => 'Style',
'type' => 'select',
'default' => 'aqua',
'select_values' => array('aqua' => 'Aqua style', 'oldskool' => 'Old school')
),
array(
'var' => 'fonts',
'name' => 'Fonts',
'type' => 'select',
'default' => 'arial',
'select_values' => array('times' => 'Times New Roman, Times, serif', 'bitstream_vera_sans' => 'Bitstream Vera Sans, Verdana, sans serif', 'bitstream_vera_serif' => 'Bitstream Vera Serif, Georgia, serif', 'georgia' => 'Georgia, Bitstream Vera Serif, serif', 'trebuchet' => 'Trebuchet MS, Verdana, sans serif', 'courier' => 'Courier New, Courier, Fixed', 'verdana' => 'Verdana, Bitstream Vera Sans, Sans Serif', 'arial' => 'Arial, Sans Serif', 'tahoma' => 'Tahoma, Verdana, Bitstream Vera Sans, Sans Serif', 'helvetica' => 'Helvetica, Verdana, Bitstream Vera Sans, Sans Serif')
),
array(
'var' => 'sidebars',
'name' => 'Sidebars',
'type' => 'string',
'default' => 'left,hide,right'
)
);
$template_config_groups = NULL;
?>