You are here

public function PostGroupStream::getCacheContexts in Open Social 8.9

Same name and namespace in other branches
  1. 8 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  2. 8.2 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  3. 8.3 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  4. 8.4 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  5. 8.5 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  6. 8.6 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  7. 8.7 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  8. 8.8 modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  9. 10.3.x modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  10. 10.0.x modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  11. 10.1.x modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()
  12. 10.2.x modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php \Drupal\social_post\Plugin\views\filter\PostGroupStream::getCacheContexts()

The cache contexts associated with this object.

These identify a specific variation/representation of the object.

Cache contexts are tokens: placeholders that are converted to cache keys by the @cache_contexts_manager service. The replacement value depends on the request context (the current URL, language, and so on). They're converted before storing an object in cache.

Return value

string[] An array of cache context tokens, used to generate a cache ID.

Overrides FilterPluginBase::getCacheContexts

See also

\Drupal\Core\Cache\Context\CacheContextsManager::convertTokensToKeys()

File

modules/social_features/social_post/src/Plugin/views/filter/PostGroupStream.php, line 62

Class

PostGroupStream
Filters post on a group stream.

Namespace

Drupal\social_post\Plugin\views\filter

Code

public function getCacheContexts() {
  $cache_contexts = parent::getCacheContexts();

  // Since the Stream is different per url.
  if (!in_array('url', $cache_contexts)) {
    $cache_contexts[] = 'url';
  }
  return $cache_contexts;
}