public function FilterHtmlCorrector::process

Performs the filter processing.

Parameters

string $text: The text string to be filtered.

string $langcode: The language code of the text to be filtered.

bool $cache: A Boolean indicating whether the filtered text is going to be cached in {cache_filter}.

string $cache_id: The ID of the filtered text in {cache_filter}, if $cache is TRUE.

Return value

string The filtered text.

Overrides FilterInterface::process

File

drupal/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlCorrector.php, line 30
Contains \Drupal\filter\Plugin\Filter\FilterHtmlCorrector.

Class

FilterHtmlCorrector
Provides a filter to correct faulty and chopped off HTML.

Namespace

Drupal\filter\Plugin\Filter

Code

public function process($text, $langcode, $cache, $cache_id) {
  return _filter_htmlcorrector($text);
}