You are here

function quote_settings_form in Quote 6.2

Same name and namespace in other branches
  1. 5 quote.module \quote_settings_form()
  2. 6 quote.admin.inc \quote_settings_form()
  3. 7 quote.admin.inc \quote_settings_form()

Menu callback: quote module settings form.

1 string reference to 'quote_settings_form'
quote_menu in ./quote.module
Implementation of hook_menu().

File

./quote.admin.inc, line 26
Admin page callbacks for the quote module.

Code

function quote_settings_form() {
  $form = array();
  $form['quote'] = array(
    '#type' => 'fieldset',
    '#title' => t('Quote module settings'),
    '#tree' => TRUE,
  );
  $form['quote']['node_types'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Node associations'),
    '#description' => t('Select the node types to associate with the quote filter.'),
    '#options' => _quote_get_node_types(),
    '#default_value' => _quote_variable_get('node_types'),
  );
  $form['quote']['node_link_display'] = array(
    '#type' => 'checkbox',
    '#title' => t('Display the quote link for nodes'),
    '#description' => t('While the quote link is always displayed for comments, it can also be displayed for nodes.'),
    '#default_value' => _quote_variable_get('node_link_display'),
  );
  $form['quote']['subject_required'] = array(
    '#type' => 'checkbox',
    '#title' => t('Make the comment subject field a required field'),
    '#description' => t('Making the comment subject field a required field will ensure that unsightly [quote] tags are not displayed.'),
    '#default_value' => _quote_variable_get('subject_required'),
  );

  // List all formats regardless of permission issues.
  $formats = filter_formats();
  $options = array(
    '0' => t('None'),
  );
  foreach ($formats as $format) {
    $options[$format->format] = $format->name;
  }
  $form['quote']['format'] = array(
    '#type' => 'select',
    '#title' => t('Text format'),
    '#description' => t('Select the text format that the quote should be filtered through prior to display in a text field. This is useful in situations where the raw quote might potentially contain sensitive content/code.'),
    '#options' => $options,
    '#default_value' => _quote_variable_get('format'),
  );
  $form['quote']['nest'] = array(
    '#type' => 'select',
    '#title' => t('Level of nesting'),
    '#description' => t('Recursively nested quotes can lead to unsightly pages. This can be minimised by limiting the
    order of nesting. 0 will display all levels. The default and recommended value is 2.'),
    '#options' => range(0, 10),
    '#default_value' => _quote_variable_get('nest'),
  );
  return system_settings_form($form);
}