1 |
6c38d829
|
Assos Assos
|
<?php
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
|
|
function rubik_form_system_theme_settings_alter(&$form, $form_state, $form_id = NULL) {
|
11 |
|
|
|
12 |
|
|
if (isset($form_id)) {
|
13 |
|
|
return;
|
14 |
|
|
}
|
15 |
|
|
|
16 |
|
|
$form['rubik'] = array(
|
17 |
|
|
'#type' => 'fieldset',
|
18 |
|
|
'#title' => t('Rubik'),
|
19 |
|
|
);
|
20 |
|
|
$form['rubik']['rubik_inline_field_descriptions'] = array(
|
21 |
|
|
'#type' => 'checkbox',
|
22 |
|
|
'#title' => t('Display form field descriptions inline.'),
|
23 |
|
|
'#description' => t("By default, each field's description is displayed in a pop-up, which is only visible when hovering over that field. Select this option to make all field descriptions visible at all times."),
|
24 |
|
|
'#default_value' => theme_get_setting('rubik_inline_field_descriptions', 'rubik'),
|
25 |
|
|
);
|
26 |
|
|
} |