You are here

function _filter_url_settings in Drupal 5

Same name and namespace in other branches
  1. 6 modules/filter/filter.module \_filter_url_settings()
  2. 7 modules/filter/filter.module \_filter_url_settings()

Settings for URL filter.

1 call to _filter_url_settings()
filter_filter in modules/filter/filter.module
Implementation of hook_filter(). Contains a basic set of essential filters.

File

modules/filter/filter.module, line 1108
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;
}