1 |
85ad3d82
|
Assos Assos
|
<?php
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
|
|
function garland_form_system_theme_settings_alter(&$form, &$form_state) {
|
17 |
|
|
|
18 |
|
|
$form['garland_width'] = array(
|
19 |
|
|
'#type' => 'radios',
|
20 |
|
|
'#title' => t('Content width'),
|
21 |
|
|
'#options' => array(
|
22 |
|
|
'fluid' => t('Fluid width'),
|
23 |
|
|
'fixed' => t('Fixed width'),
|
24 |
|
|
),
|
25 |
|
|
'#default_value' => theme_get_setting('garland_width'),
|
26 |
|
|
'#description' => t('Specify whether the content will wrap to a fixed width or will fluidly expand to the width of the browser window.'),
|
27 |
|
|
|
28 |
|
|
'#weight' => -2,
|
29 |
|
|
);
|
30 |
|
|
} |