FilterSparkles.php
Same filename and directory in other branches
Namespace
Drupal\filter_test_plugin\Plugin\FilterFile
-
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
Title | Deprecated | Summary |
---|---|---|
FilterSparkles | Provides a filter to limit allowed HTML tags. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.