FilterUrl.php

Same filename and directory in other branches
  1. 9 core/modules/filter/src/Plugin/Filter/FilterUrl.php
  2. 8.9.x core/modules/filter/src/Plugin/Filter/FilterUrl.php
  3. 10 core/modules/filter/src/Plugin/Filter/FilterUrl.php

Namespace

Drupal\filter\Plugin\Filter

File

core/modules/filter/src/Plugin/Filter/FilterUrl.php

View source
<?php

namespace Drupal\filter\Plugin\Filter;

use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\filter\Attribute\Filter;
use Drupal\filter\FilterProcessResult;
use Drupal\filter\Plugin\FilterBase;
use Drupal\filter\Plugin\FilterInterface;

/**
 * Provides a filter to convert URLs into links.
 */
class FilterUrl extends FilterBase {
    
    /**
     * {@inheritdoc}
     */
    public function settingsForm(array $form, FormStateInterface $form_state) {
        $form['filter_url_length'] = [
            '#type' => 'number',
            '#title' => $this->t('Maximum link text length'),
            '#default_value' => $this->settings['filter_url_length'],
            '#min' => 1,
            '#field_suffix' => $this->t('characters'),
            '#description' => $this->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;
    }
    
    /**
     * {@inheritdoc}
     */
    public function process($text, $langcode) {
        return new FilterProcessResult(_filter_url($text, $this));
    }
    
    /**
     * {@inheritdoc}
     */
    public function tips($long = FALSE) {
        return $this->t('Web page addresses and email addresses turn into links automatically.');
    }

}

Classes

Title Deprecated Summary
FilterUrl Provides a filter to convert URLs into links.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.