You are here

function _text_resize_admin_settings in Text Resize 7

Same name and namespace in other branches
  1. 6 text_resize.module \_text_resize_admin_settings()

Builder function for admin settings form.

1 string reference to '_text_resize_admin_settings'
text_resize_menu in ./text_resize.module
Implements hook_menu().

File

./text_resize.module, line 27
Creates a small block with jQuery links that resize text within the BODY tag.

Code

function _text_resize_admin_settings() {
  $form = array();
  $form['text_resize_scope'] = array(
    '#type' => 'textfield',
    '#title' => t('Text Resize Scope'),
    '#default_value' => variable_get('text_resize_scope', 'main'),
    '#description' => t('Which portion of the body would you like to be resized by the Text Resize block? You may enter either the CSS class attribute, the CSS id attribute, or an HTML tag.<br />For example, if you want all text within &lt;div id="my-container"&gt; to be resized, enter the ID <strong>my-container</strong>.<br />If, on the other hand, you would like all text within the BODY tag to be resized, enter <strong>body</strong>.'),
    '#required' => TRUE,
  );
  $form['text_resize_minimum'] = array(
    '#type' => 'textfield',
    '#title' => t('Default/Minimum Text Size'),
    '#maxlength' => 2,
    '#default_value' => variable_get('text_resize_minimum', '12'),
    '#description' => t('What is the smallest font size (in pixels) that your text can be resized to by users?'),
    '#required' => TRUE,
  );
  $form['text_resize_maximum'] = array(
    '#type' => 'textfield',
    '#title' => t('Maximum Text Size'),
    '#maxlength' => 2,
    '#default_value' => variable_get('text_resize_maximum', '25'),
    '#description' => t('What is the largest font size (in pixels) that your text can be resized to by users?'),
    '#required' => TRUE,
  );
  $form['text_resize_reset_button'] = array(
    '#type' => 'checkbox',
    '#title' => t('Add Reset Button'),
    '#default_value' => variable_get('text_resize_reset_button', FALSE),
    '#description' => t('Do you want to add an extra button to the block to allow the font size to be reset to the default/minimum size set above?'),
  );
  $form['text_resize_line_height_allow'] = array(
    '#type' => 'checkbox',
    '#title' => t('Allow Line-Height Adjustment'),
    '#default_value' => variable_get('text_resize_line_height_allow', FALSE),
    '#description' => t('Do you want to allow Text Resize to change the spacing between the lines of text?'),
  );
  $form['text_resize_line_height_min'] = array(
    '#type' => 'textfield',
    '#title' => t('Minimum Line-Height'),
    '#maxlength' => 2,
    '#default_value' => variable_get('text_resize_line_height_min', 16),
    '#description' => t('What is the smallest line-height (in pixels) that your text can be resized to by users?'),
  );
  $form['text_resize_line_height_max'] = array(
    '#type' => 'textfield',
    '#title' => t('Maximum Line-Height'),
    '#maxlength' => 2,
    '#default_value' => variable_get('text_resize_line_height_max', 36),
    '#description' => t('What is the largest line-height (in pixels) that your text can be resized to by users?'),
  );
  $form = system_settings_form($form);

  // Rebuild the menu after updating the settings.
  $form['#submit'][] = 'menu_rebuild';
  return $form;
}