123456789101112131415161718192021222324252627282930 |
- <?php
- function garland_form_system_theme_settings_alter(&$form, &$form_state) {
- $form['garland_width'] = array(
- '#type' => 'radios',
- '#title' => t('Content width'),
- '#options' => array(
- 'fluid' => t('Fluid width'),
- 'fixed' => t('Fixed width'),
- ),
- '#default_value' => theme_get_setting('garland_width'),
- '#description' => t('Specify whether the content will wrap to a fixed width or will fluidly expand to the width of the browser window.'),
-
- '#weight' => -2,
- );
- }
|