You are here

FilterSparkles.php in Drupal 10

File

core/modules/filter/tests/filter_test_plugin/src/Plugin/Filter/FilterSparkles.php
View source
<?php

namespace Drupal\filter_test_plugin\Plugin\Filter;

use Drupal\filter\FilterProcessResult;
use Drupal\filter\Plugin\FilterBase;

/**
 * Provides a filter to limit allowed HTML tags.
 *
 * This filter does not do anything, but enabling of its module is done in a
 * test.
 *
 * @see \Drupal\Tests\filter\Functional\FilterFormTest::testFilterForm()
 *
 * @Filter(
 *   id = "filter_sparkles",
 *   title = @Translation("Sparkles filter"),
 *   type = Drupal\filter\Plugin\FilterInterface::TYPE_HTML_RESTRICTOR,
 *   settings = {},
 *   weight = -10
 * )
 */
class FilterSparkles extends FilterBase {

  /**
   * {@inheritdoc}
   */
  public function process($text, $langcode) {
    return new FilterProcessResult($text);
  }

}

Classes

Namesort descending Description
FilterSparkles Provides a filter to limit allowed HTML tags.