function _filter_url_settings

7.x filter.module _filter_url_settings($form, &$form_state, $filter, $format, $defaults)
6.x filter.module _filter_url_settings($format)

Settings for URL filter.

Related topics

1 call to _filter_url_settings()
filter_filter in drupal-6.x/modules/filter/filter.module
Implementation of hook_filter().

File

drupal-6.x/modules/filter/filter.module, line 731
Framework for handling filtering of content.

Code

function _filter_url_settings($format) {
  $form['filter_urlfilter'] = array(
    '#type' => 'fieldset',
    '#title' => t('URL filter'),
    '#collapsible' => TRUE,
  );
  $form['filter_urlfilter']['filter_url_length_' . $format] = array(
    '#type' => 'textfield',
    '#title' => t('Maximum link text length'),
    '#default_value' => variable_get('filter_url_length_' . $format, 72),
    '#maxlength' => 4,
    '#description' => t('URLs longer than this number of characters will be truncated to prevent long strings that break formatting. The link itself will be retained; just the text portion of the link will be truncated.'),
  );
  return $form;
}