FilterTestCacheMerge.php
Same filename in other branches
Namespace
Drupal\filter_test\Plugin\FilterFile
-
core/
modules/ filter/ tests/ filter_test/ src/ Plugin/ Filter/ FilterTestCacheMerge.php
View source
<?php
declare (strict_types=1);
namespace Drupal\filter_test\Plugin\Filter;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\filter\Attribute\Filter;
use Drupal\filter\FilterProcessResult;
use Drupal\filter\Plugin\FilterBase;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\filter\Plugin\FilterInterface;
/**
* Provides a test filter to merge with CacheableMetadata.
*/
class FilterTestCacheMerge extends FilterBase {
/**
* {@inheritdoc}
*/
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;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FilterTestCacheMerge | Provides a test filter to merge with CacheableMetadata. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.