function FilterTestCacheMerge::process

Same name in other branches
  1. 8.9.x core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestCacheMerge.php \Drupal\filter_test\Plugin\Filter\FilterTestCacheMerge::process()
  2. 10 core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestCacheMerge.php \Drupal\filter_test\Plugin\Filter\FilterTestCacheMerge::process()
  3. 11.x core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestCacheMerge.php \Drupal\filter_test\Plugin\Filter\FilterTestCacheMerge::process()

Overrides FilterInterface::process

File

core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestCacheMerge.php, line 24

Class

FilterTestCacheMerge
Provides a test filter to merge with CacheableMetadata.

Namespace

Drupal\filter_test\Plugin\Filter

Code

public function process($text, $langcode) {
    $result = new FilterProcessResult($text);
    $metadata = new CacheableMetadata();
    $metadata->addCacheTags([
        'merge:tag',
    ]);
    $metadata->addCacheContexts([
        'user.permissions',
    ]);
    $result = $result->merge($metadata);
    return $result;
}

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