You are here

public function ActivityProfileArgument::getCacheContexts in Open Social 8

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  2. 8.2 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  3. 8.3 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  4. 8.4 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  5. 8.5 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  6. 8.6 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  7. 8.7 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  8. 8.8 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  9. 10.3.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  10. 10.0.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  11. 10.1.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
  12. 10.2.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::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 ArgumentPluginBase::getCacheContexts

See also

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

File

modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php, line 49

Class

ActivityProfileArgument
Default implementation of the base argument plugin.

Namespace

Drupal\activity_viewer\Plugin\views\argument

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;
}